@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
  outline: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #000;
}

a:focus {
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button {
  border: none;
  background: none;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
}

select {
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.hidden,
[hidden] {
  display: none !important;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/*rasi*/
table th,
table td {
  border: 2px solid red;
  border-collapse: collapse;
  padding: 6px;
  text-align: center;
}

.rasi-table table,
.rasi-table th,
.rasi-table td {
  border: 5px solid #ff6600;
  border-collapse: collapse;
  padding: 6px;
  text-align: center;
}

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

body {
  font-family: "Lato", sans-serif;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

input,
select {
  -webkit-appearance: none;
  border-radius: 0;
}

select {
  cursor: pointer;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .4s ease;
  transition: .4s ease;
  background: #fff url(./../img/preloader.gif) no-repeat center/150px;
}

.preloader.loading {
  z-index: 9999999999999;
  opacity: 1;
}

@-webkit-keyframes loaderAnim {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1.5);
            transform: rotate(180deg) scale(1.5);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}

@keyframes loaderAnim {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1.5);
            transform: rotate(180deg) scale(1.5);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}

.bm-list-style-none {
  list-style: none !important;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.truncate-txt {
  text-overflow: ellipsis;
  overflow: hidden;
}

.d-block {
  display: block;
}

.d-in-block-imp {
  display: inline-block !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  -webkit-box-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
          align-items: center !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.clr-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.cursor-pointer {
  cursor: pointer;
}

button {
  cursor: pointer;
}

.breadcrumb li {
  font-size: 14px;
}

.breadcrumb li a {
  font-weight: bold;
}

.breadcrumb li:not(:last-child) {
  margin-right: 8px;
}

.link-clr {
  color: #0274cb;
}

.view-clr {
  color: #ff6004;
}

.primary-clr {
  color: #ff6004;
}

.more-btn {
  margin-bottom: 20px;
}

.more-btn a {
  color: #ff6004;
  font-weight: bold;
}

.section-heading {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 50px;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: none;
}

.overlay.active {
  z-index: 1;
  display: block;
}

.bm-card {
  -webkit-box-shadow: 0px 1px 9px 0px #ddd;
          box-shadow: 0px 1px 9px 0px #ddd;
  background: white;
  padding: 12px 20px;
}

.bm-dropdown > span {
  cursor: pointer;
}

.bm-dropdown .bm-dropdown-box {
  position: absolute;
  -webkit-box-shadow: 1px 1px 4px 5px #00000008;
          box-shadow: 1px 1px 4px 5px #00000008;
  margin-top: 10px;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  display: none;
}

.bm-dropdown .bm-dropdown-box.active {
  display: inherit;
  opacity: 1;
  z-index: 2;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.data-tab {
  cursor: pointer;
}

.tab-content-section .tab-content {
  display: none;
}

.tab-content-section .tab-content.active {
  display: block;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-underline {
  text-decoration: underline;
}

.p-rel {
  position: relative;
}

.p-abs {
  position: absolute;
}

.p-fix {
  position: fixed;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.min-width-auto {
  min-width: auto !important;
}

.width-auto {
  width: auto !important;
}

.width-90 {
  width: 90%;
}

.width-100 {
  width: 100%;
}

.width-100-imp {
  width: 100% !important;
}

.width-10 {
  width: 10% !important;
}

.width-15 {
  width: 15% !important;
}

.width-20 {
  width: 20% !important;
}

.width-30 {
  width: 30% !important;
}

.width-32 {
  width: 32%;
}

.width-40 {
  width: 40% !important;
}

.width-50 {
  width: 50% !important;
}

.width-70 {
  width: 70% !important;
}

.width-78 {
  width: 78%;
}

.width-120 {
  width: 120px !important;
}

.height-100 {
  height: 100%;
}

.m-auto {
  margin: auto;
}

.m-0 {
  margin: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mt-6 {
  margin-top: 6px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-90 {
  margin-top: 90px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-26 {
  margin-bottom: 26px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-5 {
  margin-left: 5.5px;
}

.ml-10 {
  margin-left: 10px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-9 {
  margin-bottom: 9px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15-imp {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-20-imp {
  margin-bottom: 20px !important;
}

.mb-56 {
  margin-bottom: 56px;
}

.mb-17 {
  margin-bottom: 17px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-47 {
  margin-bottom: 47px;
}

.mar-32 {
  margin: 32px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-2 {
  margin-left: 2px;
}

.pt-10 {
  padding-top: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-zero {
  padding-left: 0 !important;
}

.p-tb-20 {
  padding: 20px 0 !important;
}

.pb-zero {
  padding-bottom: 0 !important;
}

.pl-10 {
  padding-left: 10px;
}

.bg-blue-3 {
  background: #000b2a;
}

.clr-blue-3 {
  color: #000b2a;
}

.btn {
  font-weight: bold;
  padding: 8px;
  background-color: #ff6004;
  color: white;
  width: 100%;
}

.hgt-100vh {
  height: 100vh;
}

.hgt-80vh {
  height: 80vh;
}

body {
  background-color: #fff;
}

* {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 766px) {
  br {
    display: none;
  }
}

.container {
  width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

@media only screen and (max-width: 1199px) {
  .container {
    width: 1050px;
  }
}

@media only screen and (max-width: 1079px) {
  .container {
    width: 970px;
  }
}

@media only screen and (max-width: 991px) {
  .container {
    width: 100%;
    padding: 0 60px;
  }
}

@media only screen and (max-width: 766px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

.fw-normal {
  font-weight: normal;
}

.f-bold {
  font-weight: bold;
}

.f-10 {
  font-size: 10px;
}

.f-12 {
  font-size: 12px;
}

.f-14 {
  font-size: 14px;
}

.f-16 {
  font-size: 16px;
}

.f-18 {
  font-size: 18px;
}

.f-20 {
  font-size: 20px;
}

.f-22 {
  font-size: 22px;
}

.f-24 {
  font-size: 24px;
}

.f-28 {
  font-size: 28px;
  line-height: 25.79px;
}

@media only screen and (max-width: 766px) {
  .f-28 {
    font-size: 22px;
  }
}

.f-36 {
  font-size: 36px;
}

@media only screen and (max-width: 766px) {
  .f-36 {
    font-size: 30px;
  }
}

.f-42 {
  font-size: 42px;
}

@media only screen and (max-width: 991px) {
  .f-42 {
    font-size: 36px;
  }
}

.f-48 {
  font-size: 48px;
}

@media only screen and (max-width: 766px) {
  .f-48 {
    font-size: 40px;
  }
}

.lh-17 {
  line-height: 17px;
}

.lh-18 {
  line-height: 18px;
}

.lh-19 {
  line-height: 19px;
}

.lh-21 {
  line-height: 21px;
}

.lh-26 {
  line-height: 26px;
}

.lh-31 {
  line-height: 31px;
}

.lh-33 {
  line-height: 33px;
}

.lh-36 {
  line-height: 36px;
}

@media only screen and (max-width: 766px) {
  .lh-36 {
    line-height: 28px;
  }
}

.lh-46 {
  line-height: 46px;
}

.lh-53 {
  line-height: 53px;
}

@media only screen and (max-width: 766px) {
  .lh-53 {
    line-height: 49px;
  }
}

.lh-23 {
  line-height: 23px;
}

.clr-white {
  color: #fff;
}

.show-only-mbl {
  display: none !important;
}

header {
  width: 100%;
  position: fixed;
  z-index: 2;
  padding: 12px 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 4px 4px #00000045;
          box-shadow: 2px 2px 4px 4px #00000045;
}

header ul li {
  margin-right: 26px;
}

header ul li a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  display: inline-block;
  padding-bottom: 8px;
}

header ul li a:hover {
  color: #ff6004;
}

header ul li.active a {
  color: #ff6004;
}

header .active-band {
  width: 22px;
  height: 2px;
  left: 12px;
  bottom: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

header.scrolled-away {
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

header.fixed {
  position: fixed;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mbl-menu-ham b {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #a9a7a7;
}

footer {
  padding: 72px 0 40px;
}

footer .footer-section-one {
  padding-bottom: 32px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-section-two p {
  opacity: 0.6;
  max-width: 670px;
}

footer .footer-section-two ul li:not(:last-child) {
  margin-right: 21px;
}

footer .footer-section-two ul li a {
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: .2s;
}

@media only screen and (min-width: 992px) {
  footer .footer-section-two ul li a:hover {
    opacity: 1;
  }
}

.social-links-list {
  padding: 0 7px 10px 0;
}

.social-links-list li:not(:last-child) {
  margin-right: 30px;
}

.social-links-list li a {
  -webkit-transition: .2s;
  transition: .2s;
}

.social-links-list li a img.hover {
  display: none;
}

@media only screen and (min-width: 992px) {
  .social-links-list li a:hover img.normal {
    display: none;
  }
  .social-links-list li a:hover img.hover {
    display: inline;
  }
}

@media only screen and (min-width: 767px) {
  .animation-element {
    opacity: 0;
    position: relative;
  }
  .animation-element.transition-delay-1 {
    -webkit-transition-delay: 0.1s !important;
    transition-delay: 0.1s !important;
  }
  .animation-element.transition-delay-2 {
    -webkit-transition-delay: 0.2s !important;
    transition-delay: 0.2s !important;
  }
  .animation-element.transition-delay-3 {
    -webkit-transition-delay: 0.3s !important;
    transition-delay: 0.3s !important;
  }
  .animation-element.transition-delay-4 {
    -webkit-transition-delay: 0.4s !important;
    transition-delay: 0.4s !important;
  }
  .animation-element.slide-left {
    -webkit-transform: translate3d(-10px, 0px, 0px);
    transform: translate3d(-10px, 0px, 0px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  .animation-element.slide-left.slide-left-half {
    -webkit-transform: translate3d(-5px, 0px, 0px);
    transform: translate3d(-5px, 0px, 0px);
  }
  .animation-element.slide-left.in-view {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .animation-element.slide-right {
    -webkit-transform: translate3d(10px, 0px, 0px);
    transform: translate3d(10px, 0px, 0px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  .animation-element.slide-right.in-view {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .animation-element.slide-down {
    -webkit-transform: translate3d(0, -10px, 0px);
    transform: translate3d(0, -10px, 0px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  .animation-element.slide-down.in-view {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .animation-element.slide-zoom {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 500ms;
    transition: all 500ms;
  }
  .animation-element.slide-zoom.in-view {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .animation-element.slide-up {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  .animation-element.slide-up.in-view {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.scroll-to-top {
  position: fixed;
  z-index: 6;
  right: 32px;
  bottom: 32px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.scroll-to-top.active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media only screen and (max-width: 991px) {
  .scroll-to-top {
    right: 24px;
    bottom: 24px;
  }
}

@media only screen and (max-width: 766px) {
  .scroll-to-top {
    right: 20px;
    bottom: 20px;
  }
  .scroll-to-top img {
    width: 30px;
  }
}

.mbl-menu-ham {
  width: 21px;
  height: 18px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
}

.mbl-menu-ham b {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.mbl-menu-ham b:nth-child(1) {
  top: 0px;
}

.mbl-menu-ham b:nth-child(2), .mbl-menu-ham b:nth-child(3) {
  top: 7px;
}

.mbl-menu-ham b:nth-child(4) {
  top: 14px;
}

.mbl-menu-ham.open b:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.mbl-menu-ham.open b:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mbl-menu-ham.open b:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mbl-menu-ham.open b:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.mbl-menu-wrap {
  position: fixed;
  top: 0;
  z-index: -2222;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0;
}

.mbl-menu-wrap .social-icons li:not(:last-child) {
  margin-right: 21px;
}

.mbl-menu-wrap.active {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  z-index: 2222;
}

.mbl-menu-wrap.active .first-menu li {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.4s 0.4s;
  transition: all 0.4s 0.4s;
  opacity: 1;
}

.mbl-menu-wrap.active .first-menu li:nth-child(2) {
  -webkit-transition-delay: 0.46s;
  transition-delay: 0.46s;
}

.mbl-menu-wrap.active .first-menu li:nth-child(3) {
  -webkit-transition-delay: 0.52s;
  transition-delay: 0.52s;
}

.mbl-menu-wrap.active .first-menu li:nth-child(4) {
  -webkit-transition-delay: 0.58s;
  transition-delay: 0.58s;
}

.mbl-menu-wrap.active .social-icons li {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.4s 0.7s;
  transition: all 0.4s 0.7s;
  opacity: 1;
}

.mbl-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: none;
  position: fixed;
  z-index: 22;
  width: 100%;
  height: 100%;
  padding: 0 35px;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

.mbl-menu.left-auto {
  left: auto !important;
}

.mbl-menu * {
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

.mbl-menu .home-icon-mbl {
  position: absolute;
  top: 50px;
  margin-left: -10.5px;
  left: 7.5%;
  z-index: 222;
  display: none;
}

.mbl-menu .home-icon-mbl.active {
  display: block;
}

.mbl-menu ul {
  width: 100%;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
  min-width: auto !important;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid #ff6004;
  border-radius: 100%;
  background: transparent;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ff6004;
  position: absolute;
  top: 6px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}

.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  border: 1px solid #ff6004;
  background: transparent;
}

.styled-checkbox:checked + label:before {
  background: #f35429;
}

.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.styled-checkbox:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}

.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
          box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sec-padding {
  padding: 80px 0;
}

.bm-select {
  padding: 8px 12px;
  background: url(../img/down_arrow.svg) no-repeat 95% center/20px;
  border-color: #ff6004;
}

.bm-input,
.bm-textarea {
  padding: 8px 12px;
  border: 1px solid #ff6004;
  background: transparent;
}

.bm-page-btn {
  display: inline-block;
  text-indent: -9999px;
  outline: none;
  border: none;
  width: 30px;
  height: 30px;
  background: #ff6004 url(../img/right_arrow_white.svg) no-repeat center/16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bm-page-btn:hover {
  background: #fff url(../img/right_arrow.svg) no-repeat center/16px;
  -webkit-box-shadow: 0px 0px 4px 4px #00000017;
          box-shadow: 0px 0px 4px 4px #00000017;
}

.bm-page-btn.bm-page-btn-prev {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.bm-page-no-wrap {
  margin: 0 12px;
}

.bm-page-no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border: 1px solid #ff6004;
  color: #ff6004;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bm-page-no:hover, .bm-page-no.bm-page-no-active {
  background-color: #ff6004;
  color: white;
}

.bm-page-no:not(:last-child) {
  margin-right: 8px;
}

.bm-label {
  color: #868282;
  font-weight: bold;
}

.bm-value {
  font-weight: bold;
}

ul.bullets-list {
  padding-left: 40px;
  list-style-type: disc;
}

ul.bullets-list li {
  font-size: 16px;
  line-height: 24px;
}

ul.bullets-list li:not(:last-child) {
  margin-bottom: 8px;
}

/* Select2 Plugin Customize Start */
.select2-container .select2-selection--multiple .select2-selection__rendered {
  padding-left: 0;
}

.select2-container .select2-search--inline .select2-search__field {
  height: 24px;
  font-size: 14px;
}

.select2-container--default .select2-selection--multiple {
  background: transparent;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-color: #ff6004;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  width: auto;
  background-color: transparent;
  padding: 2px 2px 2px 24px;
  color: #ff6004;
  border: 1px solid #ff6004;
  margin: 0;
  margin-left: 10px;
  white-space: nowrap;
  border-radius: 0;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: normal;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  top: 0;
  bottom: 0;
  border-radius: 0;
  color: #fff;
  background: #ff6004;
  border-right-color: #ff6004;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #fff;
  background: #ff6004bd;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #ff6004;
}

/* Select2 Plugin Customize End */
input:invalid {
  -webkit-box-shadow: 0 0 5px 1px red;
          box-shadow: 0 0 5px 1px red;
}

input:invalid:required {
  -webkit-box-shadow: 0 0 5px 1px red;
          box-shadow: 0 0 5px 1px red;
}

input:focus:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.banner-section {
  width: 100%;
}

.banner-section .banner-inner .banner {
  background-color: #e3dacb;
  background-image: url("../img/banner_sample.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 60vh;
  position: relative;
}

.browse-profile-dropdown {
  position: relative;
}

.browse-profile-dropdown .browse-profile-dropdown-box {
  position: absolute;
  background-color: #fff;
  border-radius: 0px;
  padding: 20px 0;
  margin-top: 27px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.browse-profile-dropdown .browse-profile-dropdown-box .options-list {
  border-right: 1px solid #ececec;
}

.browse-profile-dropdown .browse-profile-dropdown-box .options-list li {
  font-size: 16px;
  font-weight: bold;
  padding: 8px 12px 8px 22px;
  margin-right: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.browse-profile-dropdown .browse-profile-dropdown-box .options-list li.active {
  color: #119035;
  background-color: #8080801c;
}

.browse-profile-dropdown .browse-profile-dropdown-box .options-list li:hover {
  background-color: #8080801c;
}

.browse-profile-dropdown .browse-profile-dropdown-box .tab-content-section {
  padding-left: 20px;
}

.browse-profile-dropdown .browse-profile-dropdown-box .tab-content-section .tab-content ul li:not(:last-child) {
  margin-bottom: 18px;
}

.login-btn {
  border: 1px solid #ff6004;
  color: #ff6004;
  padding: 8px 12px;
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.login-btn:hover {
  background-color: #ff6004;
  color: white;
}

.help-dropdown span {
  width: 22px;
  height: 22px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 12px;
}

.tf-call {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
}

.tf-call-heading {
  font-weight: bold;
}

.banner-cont .banner-caption {
  margin-bottom: 42px;
  background-color: #669900;
  padding: 20px;
}

.banner-cont .banner-caption h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  color: #fff;
}

.banner-cont .banner-caption h5 {
  font-size: 18px;
  padding: 12px;
  color: #fff;
}

.banner-cont .quick-search .quick-search-inner {
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 30px 24px #ffffff17;
          box-shadow: 0px 1px 30px 24px #ffffff17;
}

.banner-cont .quick-search .quick-search-inner > ul > li {
  padding: 20px 20px;
  width: 33%;
  position: relative;
}

.banner-cont .quick-search .quick-search-inner > ul > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 12.5%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 1px;
  height: 75%;
  background-color: #80808042;
}

.banner-cont .quick-search .quick-search-inner > ul > li:nth-child(3):after {
  display: none;
}

.banner-cont .quick-search .quick-search-inner > ul > li label {
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
  white-space: nowrap;
}

.banner-cont .quick-search .quick-search-inner > ul > li.reg-btn-wrap {
  padding: 0;
}

.banner-cont .quick-search .quick-search-inner > ul > li.reg-btn-wrap button {
  padding: 20px 20px;
  color: #fff;
  background-color: #ff6004;
  width: 100%;
  height: 100%;
  font-weight: bold;
}

.banner-cont .quick-search .quick-search-inner > ul > li input {
  border: none;
}

.banner-cont .quick-search .quick-search-inner > ul > li .bm-dropdown-box {
  width: 100%;
  left: 0;
}

.banner-cont .quick-search .quick-search-inner > ul > li .bm-dropdown-box ul {
  padding: 6px 0;
}

.banner-cont .quick-search .quick-search-inner > ul > li .bm-dropdown-box ul li {
  padding: 8px 12px;
}

.video-section {
  overflow: hidden;
}

.video-section .video-section-in-wrap {
  padding-top: 60px;
}

.video-section .video-section-in-wrap .video-slider li {
  width: 330px;
  height: 400px;
  background-color: #11903514;
  border-right: 4px solid #a2bdaa;
  overflow: hidden;
  position: relative;
}

.video-section .video-section-in-wrap .video-slider li:nth-child(2n) {
  background-color: #1190352e;
}

.video-section .video-section-in-wrap .video-slider li .vid-in {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  background-image: url("./../img/sample_thumbnail.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}

.video-section .video-section-in-wrap .video-slider li:hover .vid-in {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.video-section .video-section-in-wrap .video-slider li:hover .vid-thumb-btns, .video-section .video-section-in-wrap .video-slider li:hover .vid-large-btns {
  bottom: 10px;
}

.video-slider .slick-prev,
.video-slider .slick-next,
.large-vid-slider .slick-prev,
.large-vid-slider .slick-next,
.dash-slider-1 .slick-prev,
.dash-slider-1 .slick-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -20px;
  text-indent: -9999px;
  outline: none;
  border: none;
  width: 40px;
  height: 40px;
  background: #fff url("../img/right_arrow.svg") no-repeat center/16px;
  -webkit-box-shadow: 0px 0px 4px 4px #00000017;
          box-shadow: 0px 0px 4px 4px #00000017;
  -webkit-transition: .3s;
  transition: .3s;
}

.video-slider .slick-prev,
.large-vid-slider .slick-prev,
.dash-slider-1 .slick-prev {
  left: 0;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.video-slider .slick-prev:hover,
.large-vid-slider .slick-prev:hover,
.dash-slider-1 .slick-prev:hover {
  -webkit-transform: rotate(-180deg) scale(1.1);
  transform: rotate(-180deg) scale(1.1);
}

.video-slider .slick-next,
.large-vid-slider .slick-next,
.dash-slider-1 .slick-next {
  right: 0;
}

.video-slider .slick-next:hover,
.large-vid-slider .slick-next:hover,
.dash-slider-1 .slick-next:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.video-slider li,
.large-vid-slider li,
.dash-slider-1 li {
  cursor: pointer;
}

.large-vid-slider .slick-prev {
  left: -40px;
}

.large-vid-slider .slick-next {
  right: -40px;
}

.large-vid-slider .slick-list,
.large-vid-slider .slick-track {
  height: 100%;
}

.video-popup-overlay, .login-popup-overlay, .bm-popup-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  background-color: #000000b5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.video-popup-overlay.active, .active.login-popup-overlay, .active.bm-popup-overlay {
  z-index: 2;
  opacity: 1;
}

.video-popup {
  position: fixed;
  top: 12.5vh;
  left: 12.5%;
  width: 75%;
  height: 75vh;
  z-index: -1;
  background-color: #fff;
  -webkit-transform: scale(.7);
  transform: scale(.7);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}

.video-popup.active {
  opacity: 1;
  z-index: 2;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.video-popup .video-popup-in-wrap {
  height: 100%;
}

.video-popup .video-popup-in-wrap .close {
  position: absolute;
  z-index: 1;
  top: -40px;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: #fff url("../img/close_arrow.svg") no-repeat center/40px;
  -webkit-box-shadow: 0px 0px 6px 6px #ffffff17;
          box-shadow: 0px 0px 6px 6px #ffffff17;
  cursor: pointer;
}

.video-popup .video-popup-in-wrap .close:hover {
  opacity: 0.9;
}

.video-popup .video-popup-in-wrap > div {
  height: 100%;
}

.video-popup .video-popup-in-wrap video {
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  -o-object-fit: cover;
     object-fit: cover;
}

footer.top-border-footer {
  border-top: 1px solid #8080807a;
}

footer .foot-section-list {
  margin-bottom: 20px;
}

footer .foot-section-list > li {
  width: 25%;
  position: relative;
  margin-right: 40px;
  padding-bottom: 40px;
}

footer .foot-section-list > li:last-child {
  margin-right: 0;
}

footer .foot-section-list > li:last-child:after {
  display: none;
}

footer .foot-section-list > li:after {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #8080807a;
}

footer .foot-section-list > li h6 {
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 16px;
}

footer .foot-section-list > li .foot-links-list > li:not(:last-child) {
  margin-bottom: 12px;
}

footer .foot-section-list > li .foot-links-list > li a {
  white-space: nowrap;
  color: #868282;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

footer .foot-section-list > li .foot-links-list > li a:hover {
  color: #ff6004;
}

footer .foot-sec-list {
  padding: 40px 0 0;
  border-top: 1px solid #8080807a;
}

footer .foot-sec-list li.copyright {
  color: #868282;
  line-height: 20px;
  font-size: 14px;
}

footer .foot-sec-list li h5 {
  color: #868282;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}

footer .foot-sec-list li .social-media-list li:not(:last-child) {
  margin-right: 12px;
}

footer .foot-sec-list li .social-media-list li a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer .foot-sec-list li .social-media-list li a:hover {
  opacity: 0.8;
}

.complete-search-section {
  padding: 80px 0 100px;
  background: #f5faf8;
}

.complete-search-section h4 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 56px;
}

.inp-number {
  padding: 8px 12px;
  border: 1px solid #ff6004;
  background: transparent;
}

.elaborate-search .elaborate-search-in-wrap input {
  padding: 8px 12px;
  border: 1px solid #ff6004;
  background: transparent;
}

.elaborate-search .elaborate-search-in-wrap input[type="number"] {
  min-width: 80px;
  width: 80px;
}

.elaborate-search .elaborate-search-in-wrap ul > li {
  margin-right: 20px;
}

.elaborate-search .elaborate-search-in-wrap ul > li > div label {
  display: block;
  font-weight: bold;
  margin-bottom: 12px;
}

.elaborate-search .elaborate-search-in-wrap ul > li > div select {
  width: 100%;
  padding: 8px 12px;
  background: url("../img/down_arrow.svg") no-repeat 95% center/20px;
  border-color: #ff6004;
}

.elaborate-search .elaborate-search-in-wrap ul > li > div .looking-for {
  min-width: 150px;
}

.elaborate-search .elaborate-search-in-wrap ul > li > div .age span {
  display: block;
  margin: 0 12px;
  color: gray;
}

.elaborate-search .elaborate-search-in-wrap ul > li > div .age select, .elaborate-search .elaborate-search-in-wrap ul > li > div .age input {
  min-width: 80px;
}

.elaborate-search .elaborate-search-in-wrap ul > li > div .religion,
.elaborate-search .elaborate-search-in-wrap ul > li > div .caste {
  min-width: 220px;
}

.elaborate-search .elaborate-search-in-wrap ul > li.lets-begin button {
  font-weight: bold;
  padding: 0 20px;
  background-color: #ff6004;
  color: #fff;
  height: 36px;
  width: 100%;
}

.vid-large {
  height: 100%;
  position: relative;
}

.vid-thumb-btns, .vid-large-btns {
  position: absolute;
  z-index: 1;
  bottom: -100px;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.vid-thumb-btns button, .vid-large-btns button {
  font-weight: bold;
  padding: 8px 20px;
  background-color: #ff6004;
  color: #fff;
}

.vid-thumb-btns button:nth-child(1), .vid-large-btns button:nth-child(1) {
  margin-right: 8px;
}

.vid-thumb-btns button:hover, .vid-large-btns button:hover {
  opacity: 0.7;
}

.vid-large-btns {
  bottom: 16px;
  left: auto;
  right: 16px;
  text-align: right;
}

.login-popup, .bm-popup {
  position: fixed;
  width: 330px;
  top: 50%;
  left: 50%;
  margin-left: -165px;
  z-index: -1;
  background-color: #fff;
  padding: 40px;
  -webkit-transform: scale(.7) translateY(-50%);
  transform: scale(.7) translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}

.login-popup.active, .bm-popup.active {
  opacity: 1;
  z-index: 2;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.login-popup.active, .bm-popup.active {
  -webkit-transform: scale(1) translateY(-50%);
  transform: scale(1) translateY(-50%);
}

.login-popup .close, .bm-popup .close {
  position: absolute;
  z-index: 1;
  top: -40px;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: #fff url(../img/close_arrow.svg) no-repeat center/40px;
  -webkit-box-shadow: 0px 0px 6px 6px #ffffff17;
          box-shadow: 0px 0px 6px 6px #ffffff17;
  cursor: pointer;
}

.login-popup .close:hover, .bm-popup .close:hover {
  opacity: 0.9;
}

.login-popup input, .bm-popup input {
  border: 2px solid #8080804f;
  padding: 8px 12px;
}

.login-popup .login-form-sec, .bm-popup .login-form-sec {
  margin-bottom: 16px;
}

.login-popup .login-form-sec label, .bm-popup .login-form-sec label {
  display: block;
  margin-bottom: 8px;
}

.login-popup .login-btn-wrap, .bm-popup .login-btn-wrap {
  margin-top: 20px;
}

.login-popup .forgot-otp-wrap, .bm-popup .forgot-otp-wrap {
  margin-top: 8px;
}

.login-popup .forgot-otp-wrap ul li, .bm-popup .forgot-otp-wrap ul li {
  color: #c56b37;
  cursor: pointer;
}

.login-popup .forgot-otp-wrap ul li:nth-child(2), .bm-popup .forgot-otp-wrap ul li:nth-child(2) {
  margin: 10px;
}

.login-popup .forgot-otp-wrap ul li:hover, .bm-popup .forgot-otp-wrap ul li:hover {
  opacity: 0.9;
}

.bm-popup {
  width: 65%;
  margin-left: -32.5%;
  overflow: scroll;
}

.dy-cont-preloader {
  display: none !important;
  -webkit-transition: .2s;
  transition: .2s;
}

.dy-cont-preloader.active {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.login-wrap {
  display: none;
}

.login-wrap.active {
  display: block;
}

.popup-heading {
  font-size: 20px;
  margin-bottom: 22px;
}

.profile-for li {
  cursor: pointer;
}

.terms-section {
  padding: 140px 0 80px;
  background: #f6f8fa;
}

.terms-section h1 {
  font-size: 34px;
  margin-bottom: 60px;
}

.terms-section p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}

.terms-section ul {
  padding-left: 40px;
  list-style-type: disc;
}

.terms-section ul li {
  font-size: 16px;
  line-height: 24px;
}

.terms-section ul li:not(:last-child) {
  margin-bottom: 8px;
}

.help-dropdown-box, .noti-dropdown-box {
  right: 0;
  left: auto;
  width: 160px;
  background: #e4e4e4 !important;
}

.help-dropdown-box:before, .noti-dropdown-box:before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  right: 4px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #cfcfcf;
}

.help-dropdown-box ul, .noti-dropdown-box ul {
  padding: 12px 12px;
}

.help-dropdown-box ul li:not(:last-child), .noti-dropdown-box ul li:not(:last-child) {
  margin-bottom: 8px;
}

.help-dropdown-box ul li a, .noti-dropdown-box ul li a {
  padding-bottom: 0;
}

.help-dropdown-box {
  width: auto;
}

.noti-dropdown-box {
  min-width: 160px;
  width: auto;
  right: 11px;
  background: white !important;
}

.noti-dropdown-box:before {
  border-bottom-color: white;
}

.noti-icon {
  position: relative;
}

.noti-icon .noti-count {
  position: absolute;
  right: 7px;
  top: -7px;
  font-size: 10px;
  color: white;
  background: #ff6004;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.bm-list li {
  margin-bottom: 20px !important;
  margin-right: 40px !important;
}

@media (min-width: 768px) {
  .vid-large {
    display: none;
    height: 100%;
  }
  .vid-large.active {
    display: block;
  }
}

.reg-header {
  padding: 12px 20px;
  margin-bottom: 60px;
}

.reg-form-section .form-completion-level {
  margin-bottom: 10px;
  opacity: 0;
}

.reg-form-section .form-completion-level.active {
  opacity: 1;
}

.reg-form-section .form-completion-level .fc-label {
  margin-right: 10px;
  font-weight: bold;
  font-size: 14px;
}

.reg-form-section .form-completion-level .fc-level {
  font-weight: bold;
  font-size: 22px;
}

.reg-form-section .reg-form-in-wrap {
  -webkit-box-shadow: 0px 2px 7px 6px #00000008;
          box-shadow: 0px 2px 7px 6px #00000008;
}

.reg-form-section .reg-form-in-wrap .reg-art {
  width: 35%;
  background-color: #3db495;
  padding: 40px 20px;
}

.reg-form-section .reg-form-in-wrap .reg-art h6 {
  color: #fff;
  font-size: 24px;
  line-height: 35px;
  margin-top: 20px;
}

.reg-form-section .reg-form-in-wrap .reg-art > div {
  display: none;
}

.reg-form-section .reg-form-in-wrap .reg-art > div.active {
  display: block;
}

.reg-form-section .reg-form-in-wrap .reg-form {
  width: 65%;
  padding: 40px;
}

.reg-form-section .reg-form-in-wrap .reg-form .form-sec-1 {
  width: 70%;
  display: none;
}

.reg-form-section .reg-form-in-wrap .reg-form .form-sec-1.active {
  display: block;
}

.reg-form-section .reg-form-in-wrap .reg-form .form-in-heading {
  font-size: 24px;
  margin-bottom: 32px;
}

.form-sec-in {
  margin-bottom: 24px;
  position: relative;
}

.form-sec-in label {
  display: block;
  margin-right: 20px;
  font-weight: bold;
  color: gray;
  min-width: 30%;
  width: 30%;
}

.form-sec-in .form-sec-input-wrap {
  width: 100%;
}

.form-sec-in .form-sec-input-wrap input, .form-sec-in .form-sec-input-wrap select {
  border: none;
  padding: 8px 12px;
  border-bottom: 1px solid #ff6004;
  width: 100%;
}

.form-sec-in .form-sec-input-wrap input::-webkit-input-placeholder, .form-sec-in .form-sec-input-wrap select::-webkit-input-placeholder {
  color: #80808096;
}

.form-sec-in .form-sec-input-wrap input:-ms-input-placeholder, .form-sec-in .form-sec-input-wrap select:-ms-input-placeholder {
  color: #80808096;
}

.form-sec-in .form-sec-input-wrap input::-ms-input-placeholder, .form-sec-in .form-sec-input-wrap select::-ms-input-placeholder {
  color: #80808096;
}

.form-sec-in .form-sec-input-wrap input::placeholder, .form-sec-in .form-sec-input-wrap select::placeholder {
  color: #80808096;
}

.form-sec-in .form-sec-input-wrap select {
  background: url(../img/down_arrow.svg) no-repeat 100% center/20px;
}

.form-sec-in .form-sec-input-wrap .form-continue-btn, .form-sec-in .form-sec-input-wrap .f-orange-btn {
  font-weight: bold;
  padding: 16px 20px;
  background-color: #ff6004;
  color: #fff;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

.form-sec-in .form-sec-input-wrap input[disabled] {
  background-color: Gray;
  text-decoration: none;
}

.reg-copyright {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.checkbox {
  -webkit-appearance: checkbox;
  width: auto !important;
  padding: 0 !important;
  margin-right: 10px;
}

.dosham-btn {
  width: auto;
  background-color: #fff;
  padding: 2px 10px;
  color: #ff6004;
  border: 1px solid #ff6004;
  margin-right: 10px;
  white-space: nowrap;
}

.dosham-btn.active {
  background-color: #ff6004;
  color: white;
}

.optional {
  position: absolute;
  right: -30px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.prsn-mtrl-stus {
  margin-top: 10px;
  color: black;
  font-size: 17px;
}

.person-detail {
  padding: 10px;
  line-height: 20px;
  font-size: 15px;
  color: #222222d6;
  border-color: #ff6004;
}

.type-character {
  font-size: 15px;
  color: #222222d6;
}

.some-write-person {
  font-size: 15px;
  color: #808080;
  position: absolute;
  width: 160px;
  bottom: 20px;
}

.write-words {
  position: absolute;
  font-size: 15px;
  width: 160px;
  line-height: 18px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-15 {
  margin-top: 15px;
}

.search-banner .search-banner-inner {
  height: 400px;
  background: url("../img/search_list_banner.jpg") no-repeat center/cover;
  position: relative;
}

.search-banner .search-banner-inner .search-banner-caption {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.65);
  padding: 24px;
}

.search-banner .search-banner-inner .search-banner-caption .search-banner-heading {
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 24px;
}

.search-banner .search-banner-inner .search-banner-caption button {
  background: #ff6004;
  color: #fff;
  padding: 16px 24px;
  font-weight: bold;
}

.search-list-heading {
  padding: 12px;
  background: #669900;
  font-size: 22px;
  border: 1px solid #0000002e;
  margin-bottom: 20px;
  color: white;
}

.more-search {
  margin-top: 10px;
  font-size: 14px;
}

.search-list-section {
  padding-top: 16px;
  padding-bottom: 40px;
  border-bottom: 1px solid #8080805e;
}

.search-list-section .search-list-inner {
  margin-top: 32px;
}

.search-list-section .search-list-inner .search-list-controls {
  width: 30%;
}

.search-list-section .search-list-inner .search-list-controls .search-list-controls-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.search-list-section .search-list-inner .search-list-controls .search-list-heading {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: bold;
}

.search-list-section .search-list-inner .search-list-controls input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ff6004;
}

.search-list-section .search-list-inner .search-list-controls select {
  width: 100%;
  padding: 8px 12px;
  background: url("../img/down_arrow.svg") no-repeat 95% center/20px;
  border-color: #ff6004;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group {
  padding: 20px;
  border: 1px solid #ff6004;
  border-top: none;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group .view-more-link {
  margin-top: 12px;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group .view-more-link a {
  font-size: 14px;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group ul li {
  font-size: 14px;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group ul li:not(:last-child) {
  margin-bottom: 12px;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group .search-input-item {
  margin-bottom: 16px;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group .search-input-item label {
  display: block;
  margin-bottom: 8px;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group .search-input-item.age span {
  padding: 0 10px;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group .btn {
  background: #ff6004;
  color: #fff;
  padding: 8px 12px;
  font-weight: bold;
  letter-spacing: 0.6px;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group .terms-privacy {
  margin: 10px 0;
  font-size: 14px;
  line-height: 20px;
}

.search-list-section .search-list-inner .search-list-controls .search-controls-group .terms-privacy a {
  color: #0274cb;
}

.search-list-section .search-list-inner .search-list-sec {
  width: 70%;
  padding-left: 30px;
}

.search-list-section .search-list-inner .search-list-sec .search-list li {
  padding: 24px 40px;
  -webkit-box-shadow: 0px 1px 9px 0px #ddd;
          box-shadow: 0px 1px 9px 0px #ddd;
  margin-bottom: 20px;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner figure {
  width: 160px;
  height: 160px;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner figure img {
  width: 100%;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .call-to-action {
  background: #ff6004;
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 40px;
  height: 40px;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .profile-info-wrap {
  padding-left: 60px;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .profile-info {
  margin-bottom: 6px;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .view-profile-info-links {
  color: #ff6004;
  margin-top: 10px;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .status {
  width: 160px;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .status .online,
.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .status .offline {
  font-size: 14px;
  position: relative;
  padding-left: 14px;
  display: inline-block;
  white-space: nowrap;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .status .online:before,
.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .status .offline:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .status .online {
  color: #00a03a;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .status .online:before {
  background-color: #00a03a;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .status .offline {
  color: gray;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .status .offline:before {
  background-color: gray;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .view-full-profile {
  padding: 20px;
  border: 1px solid gray;
  margin-left: 60px;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .view-full-profile span {
  display: block;
  margin-right: 30px;
  font-size: 14px;
  font-weight: bold;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .view-full-profile button {
  background: #ff6004;
  color: #fff;
  padding: 8px 12px;
  font-weight: bold;
}

.search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .search-list-item-inner-1 {
  margin-bottom: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.free-membership-card {
  display: none;
}

.free-membership-card .search-list-heading {
  font-size: 16px;
  margin-bottom: 0;
}

.free-membership-card input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #767676;
}

.free-membership-card select {
  width: 100%;
  padding: 8px 12px;
  background: url("../img/down_arrow.svg") no-repeat 95% center/20px;
}

.free-membership-card .search-controls-group {
  padding: 20px;
  border: 1px solid #0000002e;
  border-top: none;
}

.free-membership-card .search-controls-group .view-more-link {
  margin-top: 12px;
}

.free-membership-card .search-controls-group .view-more-link a {
  font-size: 14px;
}

.free-membership-card .search-controls-group ul li {
  font-size: 14px;
}

.free-membership-card .search-controls-group ul li:not(:last-child) {
  margin-bottom: 12px;
}

.free-membership-card .search-controls-group .search-input-item {
  margin-bottom: 16px;
}

.free-membership-card .search-controls-group .search-input-item label {
  display: block;
  margin-bottom: 8px;
}

.free-membership-card .search-controls-group .search-input-item.age span {
  padding: 0 10px;
}

.free-membership-card .search-controls-group .btn {
  background: #ff6004;
  color: #fff;
  padding: 8px 12px;
  font-weight: bold;
  letter-spacing: 0.6px;
}

.free-membership-card .search-controls-group .terms-privacy {
  margin: 10px 0;
  font-size: 14px;
  line-height: 20px;
}

.free-membership-card .search-controls-group .terms-privacy a {
  color: #0274cb;
}

.reg-form-section {
  padding-bottom: 80px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mr-30 {
  margin-right: 30px;
}

.nav-bar ul li a {
  font-size: 15px;
  cursor: pointer;
}

.nav-bar {
  border-bottom: 1px solid green;
}

.circle {
  width: 50px;
  height: 50;
  height: 50px;
  border: 1px solid #15e9ab;
  border-radius: 50%;
  margin-right: 10px;
  margin-left: 10px;
  overflow: hidden;
}

.circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-img-section {
  width: 250px;
}

.fav-box {
  height: 200px;
  background-color: white;
  -webkit-box-shadow: 1px 0 8px 3px #eee;
          box-shadow: 1px 0 8px 3px #eee;
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 35px 35px;
  overflow: hidden;
}

.fav-box h1 {
  font-size: 20px;
  font-weight: bold;
}

.fav-box span {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
}

.arrow-left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fav-img-gallery {
  overflow: hidden;
}

.fav-img-gallery img {
  width: 20px;
}

.img-list .img-1 {
  width: 60px;
  height: 60px;
  border: 1px solid gray;
}

.img-1 {
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
}

.img-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mt-50 {
  margin-top: 50px;
}

.mt-40 {
  margin-top: 40px;
}

.ml-30 {
  margin-left: 30px;
}

.profile-pic {
  width: 250px;
  height: 250px;
  border: 1px solid gray;
  position: relative;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.matching-process span {
  font-size: 13px;
  font-weight: bold;
  margin-right: 10px;
}

.matching-process div {
  font-size: 17px;
  font-weight: bold;
}

.calc-match-view {
  width: 150px;
  height: 4px;
  background-color: #80808082;
  position: relative;
}

.calc-match-view .calc-match-view-profile {
  width: 81%;
  height: 4px;
  background-color: green;
  position: absolute;
}

.join-process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  position: relative;
}

.profile-detail {
  padding: 0 0 0 20px;
  width: 100%;
}

.profile-name {
  font-size: 20px;
  font-weight: bold;
}

.line {
  height: 16px;
  width: 1px;
  border-left: 1px solid #9e9e9e;
}

.membership-id {
  font-size: 13px;
  color: gray;
}

.circle-1 {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background-color: green;
}

.member-active {
  font-size: 13px;
  color: green;
}

.verify-profile {
  font-size: 13px;
  color: blue;
  position: relative;
  padding-left: 26px;
}

.verify-profile:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -3px;
  left: 0;
  background-image: url("./../img/icons_sprite.png");
  background-repeat: no-repeat;
  background-position: -329px -236px;
}

.review {
  font-size: 13px;
  color: #3f51b5bf;
}

.time-elapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #be4600;
  padding: 16px;
}

.time-show {
  font-size: 28px;
  color: white;
}

.time-show span {
  color: #f7b991;
}

.prof-timer-expired {
  display: none;
  color: white;
  font-size: 22px;
}

.contact-show {
  font-size: 15px;
  color: white;
}

.circle-2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d8d8d8;
}

.profile-size span {
  font-size: 13px;
}

.pl-100 {
  padding-left: 100px;
}

.comment-box {
  padding: 20px;
  border: 1px solid #e2e2e2;
}

.like-member {
  font-size: 15px;
}

.yes-btn {
  width: auto;
  padding: 5px 12px;
  background-color: #ff6004;
  border: 1px solid #ff6004;
  color: white;
}

.short-btn {
  width: 90%;
  padding: 5px 12px;
  border: 1px solid #ff6004;
  color: #ff6004;
}

.short-btn:hover {
  color: white;
  background-color: #ff6004;
}

.daily-recommendation-slider > div, .profile-pics-thumb-slider > div {
  text-align: center;
}

.daily-recommendation-slider .slick-slide.active span, .profile-pics-thumb-slider .slick-slide.active span {
  border: 3px solid green;
  -webkit-box-shadow: 1px 0 13px 0 #5c6888;
          box-shadow: 1px 0 13px 0 #5c6888;
}

.daily-recommendation-slider .slick-prev, .profile-pics-thumb-slider .slick-prev,
.daily-recommendation-slider .slick-next,
.profile-pics-thumb-slider .slick-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -20px;
  text-indent: -9999px;
  outline: none;
  border: none;
  width: 24px;
  height: 40px;
  background: url("../img/right_arrow.svg") no-repeat center/24px;
  -webkit-transition: .3s;
  transition: .3s;
}

.daily-recommendation-slider .slick-prev, .profile-pics-thumb-slider .slick-prev {
  left: 0;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.daily-recommendation-slider .slick-prev:hover, .profile-pics-thumb-slider .slick-prev:hover {
  -webkit-transform: rotate(-180deg) scale(1.1);
  transform: rotate(-180deg) scale(1.1);
}


.daily-recommendation-slider .slick-next,
.profile-pics-thumb-slider .slick-next {
  right: 0;
}

.daily-recommendation-slider .slick-next:hover, .profile-pics-thumb-slider .slick-next:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.profile-pics-thumb-slider .slick-prev,
.profile-pics-thumb-slider .slick-next {
  width: 10px;
}

.profile-pics-thumb-slider .img-1 {
  width: 40px;
  height: 40px;
}

.profile-call-to-action {
  background: #ff6004;
  position: absolute;
  right: -10px;
  top: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.profile-call-to-action img {
  width: 22px;
  height: auto;
}

.skip-link {
  color: #ff6004;
}

.profile-about {
  margin-top: 50px;
}

.profile-about-left {
  width: 75%;
  padding-right: 10px;
}

.profile-about-right {
  position: -webkit-sticky;
  position: sticky;
  top: 8px;
  width: 25%;
  padding-left: 10px;
}

.profile-about-card {
  padding: 30px;
  -webkit-box-shadow: 1px 0 8px 3px #eee;
          box-shadow: 1px 0 8px 3px #eee;
}

.profile-right-pref figure {
  width: 70px;
  height: 70px;
  overflow: hidden;
  display: inline-block;
  border: 1px solid #80808085;
  padding: 14px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.profile-right-pref figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-about-heading {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.profile-about-heading.sec {
  font-size: 18px;
}

.about-desc {
  position: relative;
  padding-left: 35px;
  line-height: 24px;
}

.about-desc:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  background-image: url("./../img/icons_sprite.png");
  background-repeat: no-repeat;
  background-position: -20px -12px;
  width: 20px;
  height: 24px;
}

.prof-info-list li {
  margin-bottom: 18px;
}

.btm-bdr-line:after {
  content: "";
  display: block;
  border-bottom: 1px solid #eee;
  width: 100%;
  margin: 25px 0;
}

.orange-clr {
  color: #ff6004;
}

.grey-clr {
  color: #666;
}

.profile-veri-top-txt {
  font-size: 14px;
}

.profile-veri-btm-txt {
  font-size: 16px;
}

.profile-verify-term {
  padding-left: 50px;
  font-size: 12px;
  line-height: 18px;
  color: #666;
}

.prof-ab-icon {
  position: relative;
  padding-left: 35px;
  line-height: 24px;
}

.prof-ab-icon:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  background-image: url("./../img/icons_sprite.png");
  background-repeat: no-repeat;
  width: 20px;
  height: 24px;
}

.prof-ab-icon.prof-icon:before {
  top: 2px;
  background-position: -40px -18px;
}

.prof-ab-icon.location-icon:before {
  top: 1px;
  background-position: -129px -16px;
}

.prof-ab-icon.ring-icon:before {
  top: 1px;
  background-position: -99px -16px;
}

.prof-ab-icon.smoke-icon:before {
  top: 1px;
  background-position: -277px -44px;
}

.prof-ab-icon.drinks-icon:before {
  top: 1px;
  background-position: -17px -56px;
  height: 29px;
}

.prof-ab-icon.height-icon::before {
  top: 1px;
  background-position: -70px -12px;
}

.prof-ab-icon.smoking-icon::before {
  top: 1px;
  background-position: -70px -12px;
}

.prof-ab-icon.weight-icon::before {
  top: 1px;
  background-position: -336px -95px;
}

.prof-ab-icon.icome-icon::before {
  top: 1px;
  background-position: -238px -58px;
}

.prof-ab-icon.rasi-icon::before {
  top: 1px;
  background-position: -110px -186px;
}

.prof-ab-icon.lagnam-icon::before {
  top: 1px;
  background-position: -106px -97px;
}

.prof-ab-icon.mother-tongue-icon::before {
  top: 1px;
  background-position: -261px -187px;
}

.prof-ab-icon.spoon-icon:before {
  top: 1px;
  background-position: -42px -58px;
  width: 24px;
  height: 26px;
}

.prof-ab-icon.body-type-icon::before {
  top: 1px;
  background-position: -320px -183px;
}

.prof-ab-icon.complexion-icon::before {
  top: 1px;
  background-position: -228px -185px;
}

.prof-ab-icon.physical-icon::before {
  top: 1px;
  background-position: -269px -99px;
}

.prof-ab-icon.age-icon::before {
  top: 1px;
  background-position: -190px -289px;
}

.prof-ab-icon.blood-icon::before {
  top: 1px;
  background-position: -30px -97px;
}

.prof-ab-icon.smoking-icon::before {
  top: 1px;
  background-position: -30px -82px;
}

.prof-ab-icon.flag-icon:before {
  top: 1px;
  background-position: -68px -50px;
}

.prof-ab-icon.sm-call-icon:before {
  top: 4px;
  background-position: -160px -14px;
}

.prof-ab-icon.unlock-icon {
  height: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prof-ab-icon.unlock-icon:before {
  top: 0px;
  background-position: -364px -4px;
  width: 30px;
  height: 75px;
}

.prof-ab-icon.religion-icon:before {
  top: 1px;
  background-position: -150px -185px;
}

.prof-ab-icon.residing-area-icon::before {
  top: 1px;
  background-position: -351px  -183px;
}

.prof-ab-icon.star-icon:before {
  top: 1px;
  background-position: -228px -289px;
}

.prof-ab-icon.caste-icon:before {
  top: 1px;
  background-position: -190px  -187px;
}

.prof-ab-icon.father-occupation-icon::before {
  top: 1px;
  background-position: -106px -235px;
}

.prof-ab-icon.mother-occupation-icon::before {
  top: 1px;
  background-position: -106px -235px;
}

.prof-ab-icon.smoking-icon::before {
  top: 1px;
  background-position: -193px  -237px;
}

.prof-ab-icon.dosh-icon:before {
  top: 1px;
  background-position: -170px -190px;
}

.prof-ab-icon.gothram-icon:before {
  top: 1px;
  background-position: -149px -235px;
}

.prof-ab-icon.horo-icon:before {
  top: 1px;
  background-position: -240px -10px;
}

.prof-ab-icon.study-icon:before {
  top: 1px;
  background-position: -306px -12px;
}

.prof-ab-icon.work-icon:before {
  top: 1px;
  background-position: -106px -235px;
}

.prof-ab-icon.family-icon:before {
  top: 1px;
  background-position: -154px -62px;
}

.prof-ab-icon.sister-icon:before {
  top: 1px;
  background-position: -211px -57px;
}

.prof-ab-icon.brother-icon::before {
  top: 1px;
  background-position: -186px -56px;
}

.prof-ab-icon.ident-badge-icon {
  padding-left: 50px;
}

.prof-ab-icon.ident-badge-icon:before {
  top: 1px;
  background-position: -11px -85px;
  width: 43px;
  height: 44px;
}

.prof-ab-icon.mobile-badge-icon {
  padding-left: 50px;
}

.prof-ab-icon.mobile-badge-icon:before {
  top: 1px;
  background-position: -51px -85px;
  width: 43px;
  height: 44px;
}

.prof-ab-icon.green-tick-icon:before {
  top: 1px;
  background-position: -328px -234px;
  width: 28px;
  height: 23px;
}

.prof-ab-icon.grey-cross-icon:before {
  top: 1px;
  background-position: -303px -245px;
  width: 28px;
  height: 23px;
}

.prof-match figure {
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.prof-match figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prof-match label {
  display: block;
  margin-bottom: 8px;
}

.prof-match-wrap {
  padding: 0 20px;
}

.prof-match-track {
  width: 100%;
  height: 4px;
  background-color: #80808082;
  position: relative;
}

.prof-match-track .prof-match-bar {
  width: 81%;
  height: 4px;
  background-color: green;
  position: absolute;
  left: 0;
}

.tick-label {
  font-size: 14px;
}

.tick-val {
  font-size: 16px;
}

.tick-cross-list .tick-label {
  width: 22%;
}

.tick-cross-list .tick-val {
  width: 78%;
}

.report-block-sec {
  padding: 18px 20px 0;
}

.report-btn, .block-btn {
  position: relative;
  padding-left: 28px;
  line-height: 24px;
  color: #666;
}

.report-btn:before, .block-btn:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url("./../img/icons_sprite.png");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.report-btn:before {
  background-position: -25px -297px;
}

.block-btn:before {
  background-position: -52px -297px;
}

.profile-dropdown-box {
  width: 160px;
  top: 44px;
  right: 0;
  -webkit-box-shadow: 0px 0px 6px 5px #00000008;
          box-shadow: 0px 0px 6px 5px #00000008;
}

.profile-dropdown-box ul {
  padding: 8px 0;
}

.profile-dropdown-box ul li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #000000ad;
}

.profile-dropdown-box ul li a img {
  margin-right: 8px;
}

.profile-dropdown-box ul li a:hover {
  background-color: #80808021;
}

.edit-profile-section {
  padding: 80px 0;
  background: #f6f8fa;
}

.edit-prof > .options-list {
  min-width: 210px;
  background: #ecf0f1;
}

.edit-prof > .options-list li {
  font-size: 16px;
  font-weight: bold;
  padding: 12px 12px 12px 22px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: inline-block;
}

.edit-prof > .options-list li.active {
  color: #119035;
  background-color: #fff;
}

.edit-prof > .tab-content-section {
  width: 100%;
  padding: 40px;
  background: #fff;
}

.ed-large-heading {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 0.2px;
}

.ed-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 40px;
}

.ed-label {
  color: #868282;
  font-weight: bold;
}

.ed-value {
  font-weight: bold;
}

.ed-label-width {
  min-width: 210px;
}

.ed-row {
  margin-bottom: 16px;
}

.edit-section-icon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.ed-inp {
  min-width: 200px;
}

.ed-inp input, .ed-inp select, .ed-inp textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ff6004;
}

.ed-inp select {
  padding: 8px 12px;
  background: url(../img/down_arrow.svg) no-repeat 95% center/20px;
}

.imgareaselect-selection {
  background-color: white;
  opacity: 0.25;
  border: 1px solid white;
}

.dash-left {
  width: 285px;
  min-width: 285px;
  margin-right: 30px;
}

.dash-right {
  width: calc(100% - 315px);
}

.dash-left-main-card {
  background-image: linear-gradient(147deg, #5cbb67 3%, #1999a7 98%);
  padding-bottom: 35px;
  display: inline-block;
  width: 100%;
}

.dash-left-main-inner {
  background: #f5fbf8;
  margin: 20px;
  padding: 20px;
}

.dash-left-main-inner figure {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.dash-left-main-inner figure img {
  width: 100%;
}

.dash-greetings {
  margin-top: 10px;
}

.dash-name {
  margin-top: 10px;
  font-weight: bold;
}

.dash-profile-complete {
  margin-top: 24px;
}

.dash-profile-complete .dash-progress-track {
  width: 40px;
  height: 4px;
  background-color: #80808082;
  position: relative;
}

.dash-profile-complete .dash-progress-track .dash-progress-bar {
  width: 81%;
  height: 4px;
  background-color: green;
  position: absolute;
}

.dash-comp-prof-link {
  color: #ff6004;
}

.dash-main-btm {
  padding: 0 20px;
}

.dash-btm-msg {
  color: #fff;
}

.dash-left-btm-links {
  padding: 20px;
  border: 1px solid #e2e2e2;
}

.dash-link-list li:not(:last-child) {
  margin-bottom: 16px;
}

.dash-link-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}

.dash-link-list li a img {
  width: 16px;
  margin-right: 12px;
}

.dash-card {
  -webkit-box-shadow: 1px 0 8px 3px #eee;
          box-shadow: 1px 0 8px 3px #eee;
  padding: 24px 30px;
  overflow: hidden;
}

.dash-card .truncate-txt {
  max-width: 100px;
}

.dash-grad-card {
  background: linear-gradient(103deg, #5cbb67, #1eb0c0 100%);
}

.dash-tag {
  border: 1px solid #000;
  padding: 4px 6px 3px;
}

.dash-card-heading {
  font-size: 20px;
  letter-spacing: 0.6px;
  font-weight: bold;
}

.dash-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.dash-circle img {
  width: 100%;
}

.dash-circle.more {
  position: relative;
}

.dash-circle.more:before {
  content: "";
  display: block;
  position: absolute;
  background: #363636;
  opacity: 0.8;
  width: 100%;
  height: 100%;
}

.dash-sq {
  width: 140px;
  height: 140px;
  overflow: hidden;
}

.dash-sq.large {
  width: 220px;
  height: 220px;
}

.dash-sq img {
  width: 100%;
}

.sq-large-outer {
  display: block;
  padding: 20px;
  border: 1px solid #e2e2e2;
}

.dash-list li:not(:last-child) {
  margin-right: 20px;
}

.dash-slider-1 .slick-prev,
.dash-slider-1 .slick-next {
  margin-top: -40px;
}

.dash-grad-list li {
  position: relative;
  background: #fff;
  padding: 30px 20px 30px 50px;
}

.dash-grad-list li .dash-grad-tag {
  position: absolute;
  left: 0;
  top: 14px;
}

.dash-grad-tag {
  padding: 4px 6px 3px;
  background-image: linear-gradient(118deg, #5cbb67, #3fb691 44%, #1eb0c0 93%);
}

.dash-grad-slider,
.dash-match-slider {
  padding: 0 40px;
}

.dash-grad-slider .slick-prev,
.dash-grad-slider .slick-next,
.dash-match-slider .slick-prev,
.dash-match-slider .slick-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -12.5px;
  text-indent: -9999px;
  outline: none;
  border: none;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: url("../img/right_arrow_white.svg") no-repeat center/16px;
  -webkit-transition: .3s;
  transition: .3s;
}

.dash-grad-slider .slick-prev,
.dash-match-slider .slick-prev {
  left: 0;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.dash-grad-slider .slick-prev:hover,
.dash-match-slider .slick-prev:hover {
  -webkit-transform: rotate(-180deg) scale(1.1);
  transform: rotate(-180deg) scale(1.1);
}

.dash-grad-slider .slick-next,
.dash-match-slider .slick-next {
  right: 0;
}

.dash-grad-slider .slick-next:hover,
.dash-match-slider .slick-next:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.dash-match-slider {
  padding-right: 20px;
}

.dash-match-slider .slick-prev,
.dash-match-slider .slick-next {
  border-color: #ff6004;
  background: url("../img/right_arrow.svg") no-repeat center/16px;
}

.dash-match-list li {
  background: #f1f1f1;
  height: 240px;
  padding-top: 40px;
  padding-bottom: 35px;
}

.dash-match-card li {
  background: linear-gradient(103deg, #5cbb67, #1eb0c0 100%);
  height: 240px;
  padding-top: 20px;
  padding-bottom: 35px;
}

.dash-match-inner-pics figure {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.dash-match-inner-pics figure img {
  width: 100%;
}

.dash-match-inner-pics figure:not(:last-child) {
  margin-right: 5px;
}

.ovr-y-visible {
  overflow: inherit;
}

.mb-neg-80 {
  margin-bottom: -80px;
}

@media (max-width: 1200px) {
  .daily-rec-outer {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

@media (max-width: 991px) {
  footer .foot-section-list > li {
    margin-right: 20px;
  }
  .elaborate-search .elaborate-search-in-wrap > ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .elaborate-search .elaborate-search-in-wrap > ul > li {
    width: 50%;
  }
  .elaborate-search .elaborate-search-in-wrap > ul > li:not(:last-child) {
    margin-bottom: 20px;
  }
  .elaborate-search .elaborate-search-in-wrap > ul > li.lets-begin {
    margin-top: 10px;
  }
  .banner-section .banner-inner .banner .banner-cont {
    width: 100%;
    padding: 0 20px;
  }
  .banner-cont .quick-search .quick-search-inner > ul > li {
    width: 25%;
  }
  header ul li {
    margin-right: 10px;
  }
  header ul li.member-login span {
    margin-right: 5px;
  }
  header ul li:last-child {
    margin-right: 0;
  }
  .browse-profile-dropdown .browse-profile-dropdown-box {
    width: 320px;
  }
  .reg-form-section .reg-form-in-wrap .reg-art img {
    width: 140px;
  }
  .reg-form-section .reg-form-in-wrap .reg-form .form-sec-1 {
    width: 100%;
  }
  .search-list-section .search-list-inner .search-list-controls {
    width: 35%;
  }
  .search-list-section .search-list-inner .search-list-sec {
    width: 65%;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner figure {
    width: 80px;
    height: 80px;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .view-full-profile {
    padding: 10px;
    margin-left: 20px;
    display: inline-block !important;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .view-full-profile span {
    margin-right: 0;
    margin-bottom: 10px;
    white-space: nowrap;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .view-full-profile button {
    white-space: nowrap;
  }
  .form-sec-in .chk-box-label {
    text-align: left;
    white-space: normal;
  }
  .optional {
    display: none;
  }
  .write-content {
    margin-left: 0;
  }
  .write-content .some-write-person {
    position: static;
    width: auto;
  }
  .person-detail-parent,
  .person-detail {
    width: 100%;
  }
  .nav-bar-links {
    display: none !important;
  }
  .pref-btns button {
    margin-right: 0;
    width: 100%;
  }
  .pref-btns button:first-child {
    margin-bottom: 10px;
  }
  .profile {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .profile .profile-img-section {
    margin-left: auto;
    margin-right: auto;
  }
  .profile .profile-detail {
    padding-left: 0;
  }
  .profile-about {
    margin-top: 30px;
  }
  .comment-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }
  .comment-box > div {
    width: 100%;
  }
  .comment-box > div:nth-child(2) {
    margin-top: 20px;
  }
  .comment-box > div .yes-btn,
  .comment-box > div .short-btn,
  .comment-box > div .skip-link {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .comment-box > div .skip-link {
    margin-bottom: 0;
  }
  .form-radio-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 8px;
  }
  .form-radio-wrap > div {
    width: 100%;
  }
  .form-radio-wrap > div:not(:last-child) {
    margin-bottom: 10px;
  }
  .ed-label-width {
    min-width: 160px;
  }
  .dash-grad-slider {
    padding: 0 30px;
  }
  .tip-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  .tip-wrap .btn {
    width: 100% !important;
  }
  .dash-grad-list li {
    padding: 40px 20px;
  }
  .dash-grad-list li .btn {
    margin-top: 10px;
  }
  .dash-left {
    width: 200px;
    min-width: 200px;
    margin-right: 10px;
  }
  .dash-right {
    width: calc(100% - 210px);
  }
  .logo-img {
    width: 128px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .banner-section .banner-inner .banner {
    height: auto;
    padding: 90px 0 40px;
  }
  .section-heading {
    margin-bottom: 20px;
  }
  footer {
    padding: 42px 0 40px;
  }
  footer .foot-section-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
  }
  footer .foot-section-list > li {
    width: 100%;
    padding-bottom: 20px;
  }
  footer .foot-section-list > li:after {
    display: none;
  }
  footer .foot-sec-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 0 0;
  }
  footer .foot-sec-list li.copyright {
    margin-bottom: 20px;
  }
  footer .foot-sec-list li.copyright p:first-child {
    margin-bottom: 8px;
  }
  .banner-cont .quick-search .quick-search-inner > ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .banner-cont .quick-search .quick-search-inner > ul > li {
    width: 100%;
  }
  .banner-cont .quick-search .quick-search-inner > ul > li:not(:last-child) {
    border-bottom: 1px solid #80808052;
  }
  .elaborate-search .elaborate-search-in-wrap > ul > li {
    width: 100%;
    margin-right: 0;
  }
  .profile-info .d-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .profile-info .mb-6-mbl {
    margin-bottom: 0.5rem !important;
  }
  .profile-info .width-50 {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .search-list-item-inner-1 {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .p-rel {
    margin-bottom: 1.5rem;
  }
  span {
    margin: 15px 0 10px;
  }
  footer {
    padding: 40px 0 80px;
  }
  .video-popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
  .video-popup .video-popup-in-wrap .close {
    top: 0;
  }
  .d-none-mbl {
    display: none !important;
  }
  .show-only-mbl {
    display: block !important;
  }
  .browse-profile-dropdown .browse-profile-dropdown-box {
    width: 320px;
    right: 0;
    padding-left: 20px;
    padding-bottom: 26px;
  }
  .browse-profile-dropdown .browse-profile-dropdown-box > .d-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .browse-profile-dropdown .browse-profile-dropdown-box > .d-flex .options-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    overflow-x: scroll;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    border-right: none;
  }
  .browse-profile-dropdown .browse-profile-dropdown-box > .d-flex .options-list::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }
  .browse-profile-dropdown .browse-profile-dropdown-box > .d-flex .options-list li {
    padding-left: 12px;
  }
  .browse-profile-dropdown .browse-profile-dropdown-box .tab-content-section {
    padding-left: 0;
  }
  header {
    padding-left: 0;
    padding-right: 0;
  }
  header ul li:nth-child(2) {
    margin-right: 0;
  }
  .reg-form-section .reg-form-in-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .reg-form-section .reg-form-in-wrap .reg-art {
    width: 100%;
    padding: 20px 10px;
  }
  .reg-form-section .reg-form-in-wrap .reg-art img {
    width: 80px;
  }
  .reg-form-section .reg-form-in-wrap .reg-form {
    width: 100%;
    padding: 40px 20px;
  }
  .reg-form-section .reg-form-in-wrap .reg-form .form-in-heading {
    text-align: center;
  }
  .reg-form-section .reg-form-in-wrap .form-sec-in {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .reg-form-section .reg-form-in-wrap .form-sec-in label {
    text-align: left;
    min-width: auto;
    width: 100%;
    margin-bottom: 10px;
  }
  .form-sec-in .form-sec-input-wrap input, .form-sec-in .form-sec-input-wrap select {
    padding-left: 0;
  }
  video {
    pointer-events: none;
  }
  .vid-large {
    height: 100vh !important;
  }
  .form-sec-in.d-flex.align-items-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-sec-in label {
    width: 90%;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .search-list-section .search-list-inner .search-list-controls {
    display: none;
  }
  .search-list-section .search-list-inner .search-list-sec {
    width: 100%;
    padding-left: 0;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li {
    padding-left: 20px;
    padding-right: 20px;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .search-list-item-inner-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .search-list-item-inner-2 .status,
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .search-list-item-inner-2 .view-full-profile {
    width: 100%;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .search-list-item-inner-2 .status {
    text-align: left;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .search-list-item-inner-2 .view-full-profile {
    margin-top: 20px;
    margin-left: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .search-list-item-inner-2 .view-full-profile span {
    margin-bottom: 0;
    margin-right: 8px;
    white-space: normal;
    text-align: center;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .profile-info-wrap {
    padding-left: 10px;
  }
  .free-membership-card {
    display: block;
  }
  .annual-income .mr-10 {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .profile-about {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .profile-about .profile-about-left,
  .profile-about .profile-about-right {
    width: 100%;
    padding: 0;
  }
  .profile-about .profile-about-right {
    margin-top: 30px;
  }
  .prof-info-list-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .prof-info-list-wrap .prof-info-list {
    width: 100% !important;
  }
  .tick-cross-list li > div.d-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tick-cross-list .tick-label,
  .tick-cross-list .tick-val {
    width: 100%;
  }
  .prof-ab-icon.green-tick-icon:before, .prof-ab-icon.grey-cross-icon:before {
    top: 2px;
  }
  .report-block-sec {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    text-align: center;
  }
  .report-block-sec .rep-block-btns-wrap {
    margin-top: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .profile-about-heading {
    line-height: 26px;
  }
  .prof-detail-footer {
    padding-bottom: 80px;
  }
  .time-elapse {
    position: fixed;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .time-show {
    font-size: 20px;
  }
  .nav-bar .reg-header a img {
    width: 128px;
    height: auto;
  }
  .profile-about-card {
    padding: 20px 15px;
  }
  .fav-heading {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .fav-heading h1,
  .fav-heading span {
    width: 100%;
  }
  .fav-heading span {
    margin-left: 0;
  }
  .prof-top-info-rgt-wrap {
    padding-left: 20px;
  }
  .fav-box {
    padding: 20px 15px;
  }
  .unlock-number-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: -20px;
  }
  .unlock-number-wrap li {
    width: 100%;
  }
  .unlock-number-wrap li.unlock-icon {
    display: block;
    height: auto;
    line-height: 20px;
    margin-top: 10px;
  }
  .unlock-number-wrap li.unlock-icon:before {
    display: none;
  }
  .login-popup {
    width: 310px;
    margin-left: -155px;
    padding: 20px;
  }
  .bm-popup {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    left: 0;
    top: 0;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
  .bm-popup.active {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
  .bm-popup .close {
    top: 0;
    background-color: #ff60042e;
  }
  .edit-prof > .options-list {
    display: none;
  }
  .edit-prof > .tab-content-section {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }
  .edit-prof > .tab-content-section .tab-content {
    display: block;
    padding: 20px;
    background: #fff;
    margin-bottom: 40px;
  }
  .edit-prof > .tab-content-section .tab-content .edit-section-icon {
    top: 20px;
    right: 20px;
  }
  .edit-prof > .tab-content-section .tab-content .ed-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .edit-prof > .tab-content-section .tab-content .ed-row .ed-label {
    margin-bottom: 8px;
  }
  .edit-prof > .tab-content-section .tab-content .ed-row .ed-label,
  .edit-prof > .tab-content-section .tab-content .ed-row .ed-inp {
    width: 100%;
  }
  .ed-large-heading {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .ed-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .sec-padding {
    padding: 40px 0;
  }
  .dash-outer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dash-outer .dash-left {
    width: 100%;
    min-width: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .dash-outer .dash-right {
    width: 100%;
  }
  .see-all {
    margin-left: 20px;
  }
  .dash-profile-complete .dash-progress-track {
    width: 80px;
  }
  .dash-profile-complete .dash-progress-track {
    width: 80px;
  }
  .mb-60-mbl {
    margin-bottom: 60px;
  }
  .flex-wrap-mbl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex-wrap-mbl > * {
    width: 100% !important;
  }
  .mb-5-mbl {
    margin-bottom: 5px !important;
  }
  .mb-6-mbl {
    margin-bottom: 6px !important;
  }
  .mb-8-mbl {
    margin-bottom: 8px !important;
  }
  .mb-10-mbl {
    margin-bottom: 10px !important;
  }
  .mb-15-mbl {
    margin-bottom: 15px !important;
  }
  .mb-20-mbl {
    margin-bottom: 20px !important;
  }
  .mt-20-mbl {
    margin-top: 20px !important;
  }
  .pl-20-mbl {
    padding-left: 20px !important;
  }
  .bm-page-no-wrap {
    max-width: calc(100% - 84px);
    overflow-x: auto;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }
  .visible-mbl-block {
    display: block !important;
  }
  .visible-mbl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .pr-zero-mbl {
    padding-right: 0;
  }
  .pl-zero-mbl {
    padding-left: 0;
  }
  .col-dir-reverse-mbl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .rasi-table {
    width: 100%;
  }
  /*----------horoscope------------*/
  .horo-profile-create-mbl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .horo-profile-create-mbl .profile-about-card {
    padding: 10px 10px;
  }
  .horos-profile-mbl .profile-about-card.form {
    width: 100% !important;
  }
  .horos-profile-mbl .profile-about-card.horos-table-mbl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .horos-profile-mbl .rasi-table-mbl, .horos-profile-mbl .amsam-table-mbl {
    width: 100% !important;
    font-size: 11px;
    margin-right: 10px;
    margin-bottom: 15px;
  }
  .horos-profile-mbl .width-50 {
    width: 100% !important;
  }
  .horos-profile-mbl .horos-mbl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /*-------------end horoscope-------------*/
  /*-------------preference-------------*/
  .preference-mbl {
    padding-bottom: 0;
  }
  .prefe-tips-mbl {
    margin-top: 0px;
  }
  .form-in-heading {
    font-size: 16px !important;
    font-weight: bold;
  }
  .edit-profile-mbl .d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .edit-profile-mbl .write-words {
    font-size: 12px;
    width: 100%;
    margin-top: 3px;
  }
  .edit-profile-mbl .ed-title {
    font-size: 18px;
    margin-bottom: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .profile-and-status-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .profile-and-status-info > div {
    width: 100%;
  }
  .profile-and-status-info .membership-id {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .profile-and-status-info .line {
    display: none;
  }
  .profile .profile-detail {
    margin-top: 20px;
  }
  .profile .profile-detail .verify-profile {
    margin-left: -6px;
    margin-top: 4px;
  }
  .rasi-table {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .browse-profile-dropdown .browse-profile-dropdown-box {
    width: 280px;
  }
  .search-banner .search-banner-inner .search-banner-caption {
    width: 90%;
  }
  .search-banner .search-banner-inner .search-banner-caption button {
    padding: 10px 20px;
  }
  .search-banner .search-banner-inner .search-banner-caption .search-banner-heading {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 12px;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner figure {
    width: 60px;
    height: 60px;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .call-to-action {
    right: -15px;
    bottom: -15px;
    width: 30px;
    height: 30px;
  }
  .search-list-section .search-list-inner .search-list-sec .search-list li .search-list-item-inner .call-to-action img {
    width: 18px;
  }
  .dash-profile-complete .dash-progress-track {
    width: 40px;
  }
  .rasi-table {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1080px) {
  .elaborate-search .elaborate-search-in-wrap > ul > li.lets-begin {
    margin-top: 20px;
  }
}

@media (max-width: 1080px) {
  .box-btn-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dosham-btn {
    margin-bottom: 10px;
  }
  .reg-form-section .reg-form-in-wrap .reg-form .form-sec-1 {
    width: 100%;
  }
}

@media (max-width: 1440px) {
  .reg-form-section .reg-form-in-wrap .reg-form {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */