/* @import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap'); */

@import url('https://pro.fontawesome.com/releases/v5.10.0/css/all.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300&display=swap');
@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.otf') format('opentype'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype'), url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.otf') format('opentype'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype'), url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

* {
    outline: 0;
}

body {
    /* font-family: 'Poppins-Regular'; */
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: 'Poppins-SemiBold'; */
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 10px 0;
    box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 5px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
    height: 35px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-wrap {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: relative;
}

.navigation-wrap.scroll-on {
    position: fixed;
}

.dropdown-item {
    padding: 2px 1.5rem;
    font-size: 14px;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #212121 !important;
}

.nav-item:hover .nav-link {
    color: #dc3545 !important;
}

.bg-light {
    transition: all 200ms linear;
}

.section {
    position: relative;
    width: 100%;
    display: block;
}

.full-height {
    height: 100vh;
}

.over-hide {
    overflow: hidden;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: 40px;
    transform: translateY(-50%);
    z-index: 20;
}

#switch,
#circle {
    cursor: pointer;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

#switch {
    width: 60px;
    height: 8px;
    border: 2px solid #8167a9;
    border-radius: 27px;
    background: #000;
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1900ms;
}

body.hero-anime #switch {
    opacity: 0;
    transform: translateY(40px);
    transition-delay: 1900ms;
}

#circle {
    position: absolute;
    top: -11px;
    left: -13px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #000;
}

.switched {
    border-color: #000 !important;
    background: #8167a9 !important;
}

.switched #circle {
    left: 43px;
    box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
    background: #fff;
}

body.dark .navbar-light .navbar-toggler-icon {
    border-bottom: 1px solid #fff;
}

body.dark .navbar-light .navbar-toggler-icon:after,
body.dark .navbar-light .navbar-toggler-icon:before {
    background-color: #fff;
}

body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.home .carousel-inner {
    background-color: #000;
}

.home .carousel-control-next,
.home .carousel-control-prev {
    font-size: 30px;
}

.home.carousel {
    padding-top: 70px;
}

.home .carousel-caption {
    bottom: 50%;
    right: 20%;
    left: 20%;
    transform: translateY(50%);
    /* background-color: rgba(0, 0, 0, 0.4); */
    border-radius: 10px;
    padding: 25px;
    /* box-shadow: 0 0 25px 0px rgba(255, 255, 255, 0.5); */
}

.home .carousel-item img {
    height: 450px;
}

.form-section {
    margin-top: -90px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    position: relative;
    padding: 20px 50px;
    border-radius: 20px;
    color: #fff;
}

.why-choose svg {
    color: #28a745;
    top: -1px;
    position: relative;
}

.why-choose li {
    padding-left: 0;
    margin-bottom: 8px;
}

.why-choose span {
    padding-left: 10px;
}

.form-section {
    background: linear-gradient(to right, #C33764, #1D2671)
}

.form-section .form-control {
    padding: .375rem 1.3rem;
    font-size: 14px;
}

.form-section label {
    margin-bottom: 0;
    font-size: 16px;
}

.btn {
    text-transform: uppercase;
    line-height: normal;
    /* border-radius: 30px; */
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 13px;
    border-radius: 0;
}

.list-inline-item {
    background-color: rgba(255, 255, 255, 0.5);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    padding: 5px 0px;
    text-align: center;
}

.list-inline-item a {
    opacity: 1;
}

.icon-space {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    color: #fff;
    font-size: 30px;
}

footer {
    background-color: #2e4154;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 100;
    opacity: 0.5;
}

footer a:hover {
    opacity: 1;
    color: #fff;
    text-decoration: none;
}


/*  */

.card {
    border-radius: 10px;
    overflow: auto;
}

.font-14 {
    font-size: 14px !important;
}

.font-12 {
    font-size: 12px !important;
}

.feather {
    width: 16px;
    height: 16px;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #999;
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.fetured-bride a:hover {
    text-decoration: none;
}

.testimonial .social,
.contact-social .social {
    margin-top: 20px;
}

.testimonial .social a,
.contact-social .social a {
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: inline-block;
    padding: 7px 0;
    text-align: center;
    color: #fff;
}

.facebook {
    background-color: #4b69b0;
}

.twitter {
    background-color: #37b1e1;
}

.google {
    background-color: #e83f3a;
}

.linkedin {
    background-color: #0678b6;
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background-color: #C13584;
}

.owl-nav button {
    font-size: 60px !important;
    position: absolute;
    top: 50%;
    margin-top: -60px;
    outline: 0;
    box-shadow: none;
}

.owl-nav button span {
    line-height: 0;
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next {
    right: 0;
}

.id-profile span {
    padding: 0 10px;
    border-left: 1px solid #ccc;
    line-height: normal;
}

.verified-premium a {
    padding: 0 10px;
    text-transform: capitalize;
}

.verified-premium a:hover {
    text-decoration: none;
}

.id-profile span:first-child,
.verified-premium a:first-child {
    padding-left: 0;
    border-left: 0;
}

.progress {
    height: 10px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.progress-bar {
    background-color: #28a745;
}

.page-item:last-child .page-link {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-item:first-child .page-link {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.custom-control-label::before,
.custom-control-label::after {
    top: 5px;
}

.custom-control {
    cursor: pointer;
}

.profile-list img,
.awaiting img,
.new-matches img {
    width: 100%;
}

.profile-list .card:hover {
    background-color: rgba(195, 195, 195, 0.1);
}

.profile-list .profile-content h3 a:hover {
    text-decoration: none;
}

.awaiting label {
    font-weight: bold;
}


/*  */

.top-banner-img {
    opacity: 0.8;
    -webkit-filter: blur(0.5px);
    filter: blur(5px);
}

.contact-info ul .nav-item:hover .nav-link {
    color: #00f5ff !important;
}

.contact-info a {
    padding: 10px 15px;
    color: #fff !important;
    font-size: 18px;
    line-height: normal;
    margin: 5px 0;
}

.contact-info {
    padding-top: 15px;
    padding-bottom: 15px;
}

.profile .nav-tabs .nav-item {
    margin-bottom: 0;
    width: calc(100% / 4);
}

.profile .nav-tabs .nav-item .nav-link {
    height: 100%;
}

.profile .nav-tabs,
.profile .tab-content {
    width: 100%;
}

.profile .nav-tabs .nav-link.active {
    border-color: #dee2e6 #dee2e6 #dc3545;
    border-width: 0px 0 2px 0;
    color: #dc3545 !important;
}

.profile .nav-tabs .nav-link:hover {
    border: 0;
}

.profile .nav-tabs {
    border-bottom: 1px solid #dc3545;
}


/* Profile sidebar */

.profile-sidebar {
    padding: 20px 0 10px 0;
    background: rgb(34, 193, 195);
    background: linear-gradient(0deg, #28a745 0%, #22c1c3 100%);
}

.profile-userpic img {
    float: none;
    margin: 0 auto;
    /* width: 50%;
    height: 50%; */
    width: 150px;
    height: 150px;
    object-fit: cover;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
}

.profile-usertitle {
    text-align: center;
    margin-top: 20px;
}

.profile-userbuttons {
    text-align: center;
    margin-top: 10px;
}

.profile-userbuttons .btn {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 15px;
    margin-right: 5px;
}

.profile-list .list-group-item {
    background: none;
}

.profile-list a {
    display: block;
    color: #fff;
}

.profile-list a:hover {
    text-decoration: none;
    color: #dc3545;
}

.profile-list .icon-list {
    width: 35px;
    display: inline-block;
}


/* Profile Content */

.profile-content {
    padding: 20px;
    background: #fff;
    /* min-height: 460px; */
}

.other-list li {
    margin-bottom: 15px;
    padding: 0 30px;
    position: relative;
}

.other-list li .list-icon {
    color: #dc3545;
    position: absolute;
    top: 3px;
}

.other-list.left li .fa-chevron-right {
    margin-right: 15px;
    left: 0;
}

.other-list.right li .fa-check {
    right: 0;
}

.other-list.right li {
    padding-left: 0;
}

.other-list li div {
    display: inline-block;
    width: calc(100% - 160px);
}

.other-list li div:first-child {
    width: 120px;
    vertical-align: top;
    color: rgba(0, 0, 0, .5)!important;
}


/*  */

#registrationModal .modal-dialog .modal-content {
    max-width: 100%;
}


/*  */

.pricing ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    font-size: 14px;
}


/* Manjeet Css */

li.nav-item.dropdown.show .dropdown-menu {
    display: block;
}

.clear {
    clear: both;
    width: 100%;
    display: block;
}

#myCarousel {}

.owl-nav button {
    font-size: 40px !important;
    margin-top: -20px;
    width: 25px;
    height: 25px;
    background: #fff!important;
    padding: 20px!important;
    border-radius: 50%;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
    border: 1px solid #dfdfdf!important;
}

.fetured-bride.owl-carousel .owl-nav button {
    padding: 20px!important;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -20px;
}

.owl-nav button span {
    line-height: 0;
    margin: -3px -6px;
    padding: 0px;
    display: block;
}

.navbar-nav .nav-item {
    margin-left: 8px!important;
}

.nav-item .nav-link.nav-pill.user-avatar img {
    width: 35px;
    height: 35px;
    margin: 0;
    border: 0;
    border-radius: 50%;
}

body {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

.fetured-bride {}

.fetured-bride .card-body h4 {
    font-size: 16px;
    color: #383838;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.fetured-bride .card-body:hover h4 {
    color: #dc3545;
}

.fetured-bride .card-body p.card-text {
    color: #424242;
}

.fetured-bride .owl-stage-outer {
    padding-bottom: 15px;
}

.fetured-bride .owl-stage-outer .card.shadow-sm {
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
    border-radius: 0;
}

.fetured-bride .owl-stage-outer .card.shadow-sm {}

.process_section h2 {
    font-size: 20px;
    font-weight: 600!important;
    margin-top: 0!important;
}

.process_section .col-md-4 .rounded-circle.bg-custome {
    width: 55px;
    float: left;
    background: #dc3545;
    height: 55px;
    line-height: 55px;
    color: #fff;
}

.process_section .col-md-4 .rounded-circle.bg-custome .svg-inline--fa {
    font-size: 25px;
    height: 20px;
}

.process_section .col-md-4 .process_text_section {
    float: right;
    text-align: left;
    width: calc(100% - 71px);
}

.testimonial {}

.testimonial .card-body h4 {
    color: #000!important;
    font-size: 18px;
    font-weight: 800!important;
    line-height: 25px;
}

.testimonial .social a,
.contact-social .social a {
    height: 25px;
    width: 25px;
    padding: 0px 0;
    font-size: 12px;
    cursor: pointer;
}

.contact-social .social span {
    height: 35px;
    width: 35px;
    padding: 5px 0;
    font-size: 16px;
    cursor: pointer;
}

.testimonial.owl-carousel .owl-nav button,
.success-story-slider.owl-carousel .owl-nav button {
    padding: 20px!important;
}

footer {
    background-color: #252525;
}

footer .social-section .list-inline-item {
    padding: 2px 0px;
}

#ac-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .6);
    z-index: 1001;
}

#popup {
    width: 555px;
    height: 375px;
    background: #FFFFFF;
    border: 5px solid #000;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    box-shadow: #64686e 0px 0px 3px 3px;
    -moz-box-shadow: #64686e 0px 0px 3px 3px;
    -webkit-box-shadow: #64686e 0px 0px 3px 3px;
    position: relative;
    top: 150px;
    left: 375px;
}

#myCarousel .svg-inline--fa {
    height: 35px;
    width: 35px!important;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    color: #ce0122;
}

.top-bar-nav li {
    margin: 0!important;
}

.top-header {
    background: #dc3545;
    color: #fff;
    margin-bottom: 10px;
    margin-top: -10px;
}

.top-header ul {
    list-style: none;
    margin: 0px;
}

.top-header ul li {}

.top-bar-nav {
    padding: 0;
    list-style: none;
    margin: 0;
    text-align: right;
}

.top-bar-nav .nav-link {
    color: #fff!important;
}

.top-bar-nav .nav-item:hover .nav-link {
    color: #fff!important;
}


/* 
.top-header ul .dropdown-menu {
    right: 0;
    left: inherit;
} */

.top-bar-nav .nav-link img {
    margin-right: 8px;
    margin-top: -5px;
}

.top-header ul .dropdown-menu li .dropdown-item {
    display: inline-grid;
}

.top-header ul .dropdown-menu li span {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 12px;
}

.top-header ul .dropdown-menu li span b {
    color: #dc3545;
}

.top-header ul .dropdown-menu li .dropdown-item.button {
    display: block;
    background: #28a745;
    margin-bottom: -8px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.registration_section {
    padding: 45px 0px;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.alert {
    border-radius: 0;
}

.text-info {
    color: #dc3545 !important;
}

.inner-banner img {
    height: 220px;
    object-fit: cover;
}

.custom-radio tr {
    display: inline-block;
    margin-right: 10px;
}

.custom-radio tr label {
    margin-left: 5px;
}

.thumb-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.help-inline {
    color: red;
    font-size: 11px;
}

.form-control {
    border-radius: 0;
}

.modal-dialog .modal-body {
    padding-top: 40px;
}

.img-crop {
    height: 350px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.marketing {
    background: -webkit-linear-gradient(to left, #b20a2c, #fffbd5);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #b20a2c, #fffbd5);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-size: 16px;
    box-shadow: 2px 2px 0 0 #ffffff75;
}

.marketing ul {
    list-style-type: disclosure-closed;
}

.accordion .card-header {
    background: none;
    border-bottom: 0;
}

.accordion .card {
    border-radius: 0;
}

.accordion .btn-link {
    color: red;
}

.accordion .btn-link:hover,
.accordion .btn-link:focus {
    text-decoration: none;
    color: red;
}

.accordion .btn-link::after {
    content: '';
    background-image: url(../images/arrow_top.png);
    height: 20px;
    width: 20px;
    position: absolute;
    right: 10px;
    top: 20px;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
}

.accordion .btn-link.collapsed {
    color: #333;
}

.accordion .btn-link.collapsed:hover,
.accordion .btn-link.collapsed:focus {
    color: #333;
    text-decoration: none;
}

.accordion .btn-link.collapsed::after {
    content: '';
    background-image: url(../images/arrow_down.png);
    height: 20px;
    width: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
}

.accordion .collapse .card-body,
.accordion .collapsing .card-body {
    padding-top: 0;
}

.success-story img {
    height: 300px;
    width: 300px;
    max-width: 100%;
    object-fit: cover;
    object-position: top;
}

.about_right {
    font-size: 16px;
}

.about_right h1,
.about_right strong {
    color: #dc3545 !important;
    line-height: normal;
}

.about_right h1 {
    font-size: 30px;
    font-weight: 400;
    margin: 30px 0;
}

.about_right h2 {
    font-size: 24px;
    font-weight: 400;
    color: #dc3545 !important;
    margin: 30px 0px;
}

.about_right ul li {
    list-style-type: circle;
}

.about_right ul li {
    list-style-type: disclosure-closed;
}

.agileits_services {
    background: url(../images/couple4.jpg) no-repeat 0px 0px;
    padding: 70px 0 0 0;
    border-top: 4px solid #dc3545;
    background-size: cover;
    min-height: 430px;
}

.agileits_services h2 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 50px;
}

.agileits_services h2 span {
    font-weight: 600;
}

.w3ls_services-grids {
    /* padding: 1em 3em;
    width: 47%;
    margin-right: 34px; */
}

ul.w3_servicesgrid_info {
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 20px;
}

ul.w3_servicesgrid_info li {
    margin: 10px 0;
}

li.tick {
    background: url(../images/tick.png)no-repeat 0px 5px;
    padding: 0px 0 0 28px;
}

.wthree_services-bottom {
    background: #bd3764;
    padding: 1em 0;
}

.wthree_services-bottom p {
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 200;
}

.wthree_services-bottom span {
    font-weight: 600;
    margin: 7px;
}

.tabs-marker {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border: none;
}

.tabs-marker .nav-link {
    border: none;
    border-radius: 0;
    transition: color .2s ease-out;
    padding: 15px 20px;
}

.tabs-marker .nav-link {
    color: #fff !important;
}

.tabs-marker .nav-item .nav-link.active {
    color: #dc3545 !important;
    font-weight: bold;
}

.tabs-marker .nav-link {
    position: relative;
}

.tabs-marker .nav-link.active .marker {
    height: 30px;
    width: 30px;
    left: 50%;
    bottom: -30px;
    transform: translatex(-50%);
    position: absolute;
    overflow: hidden;
}

.tabs-marker .nav-link.active .marker:after {
    content: "";
    height: 15px;
    width: 15px;
    top: -8px;
    left: 50%;
    transform: rotate(45deg) translatex(-50%);
    transform-origin: left;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
}

.from-to-spacing .form-inline {
    text-transform: capitalize;
}

.from-to-spacing .form-inline .form-control {
    width: calc(93% / 2);
    margin: 0 2%;
}

.from-to-spacing .form-inline .form-control:first-child {
    margin-left: 0;
}

.from-to-spacing .form-inline .form-control:last-child {
    margin-right: 0;
}

.from-to-spacing .form-control {
    height: calc(1.5em + 0.75rem + 10px);
}

.from-to-spacing .form-group label {
    font-weight: bold;
}

.from-to-spacing .checkbox label input {
    margin-right: 5px;
}

#about .text-black-50,
#about .text-black-50~p,
#Religious .text-black-50,
#Religious .text-black-50~p,
#Location .text-black-50,
#Location .text-black-50~p,
#education .text-black-50,
#education .text-black-50~p,
#family .text-black-50,
#family .text-black-50~p,
#desired .text-black-50,
#desired .text-black-50~p {
    vertical-align: top;
    display: inline-block;
}

#about .text-black-50,
#about .text-black-50~p,
#Religious .text-black-50,
#Religious .text-black-50~p,
#Location .text-black-50,
#Location .text-black-50~p,
#education .text-black-50,
#education .text-black-50~p,
#family .text-black-50,
#family .text-black-50~p,
#desired .text-black-50,
#desired .text-black-50~p {
    width: 180px;
}

#about .text-black-50,
#about .text-black-50~p,
#Religious .text-black-50,
#Religious .text-black-50~p,
#Location .text-black-50,
#Location .text-black-50~p,
#education .text-black-50,
#education .text-black-50~p,
#family .text-black-50,
#family .text-black-50~p,
#desired .text-black-50,
#desired .text-black-50~p {
    width: 170px;
}

#education .text-black-50~p,
#family .text-black-50~p,
#desired .text-black-50~p {
    width: calc(100% - 180px);
}

.similer-profile a {
    color: #555;
    text-decoration: none;
}

.similer-profile a h5 {
    font-size: 13px;
    margin: 0 0 5px 0;
}

.similer-profile a p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

.similer-profile-photo {
    height: 80px;
    width: 80px;
    object-fit: cover;
    object-position: top;
}

.profile-slider-img .carousel-inner .carousel-item {
    height: 500px;
    text-align: center;
}

.profile-slider-img .carousel-inner .carousel-item img {
    height: 100%;
    margin: auto;
    max-width: 400px;
    width: 100%;
    object-fit: cover;
}

.pull-right {
    float: right;
}

.addpost .form-group {
    margin-bottom: 5px;
}

.addpost .form-control {
    height: auto;
}

.success-story .card .card-body p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

#successStoryModal .modal-dialog.modal-lg .modal-content img {
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.fs-14 {
    font-size: 14px;
}

.blockquote {
    padding: 10px 20px;
    margin: 30px 0;
    border-left: 5px solid #eee;
}


/* .offices {
    background: linear-gradient(to right, #C33764, #1D2671);
    color: #fff;
} */

.office dl {
    margin-bottom: 5px;
}

.office dl dt,
.office dl dd {
    display: inline-block;
    vertical-align: top;
}

.office dl dt {
    width: 70px;
}

.office dl dd {}

.contact svg {
    font-size: 30px;
}

.contact-map {
    width: 100%;
    height: 510px;
    border: 0;
}

.search-profile-text {
    border: 0;
    border-bottom: 1px solid #ced4da !important;
}

.border-bottom {
    border-bottom: 1px solid #000 !important;
}

.img-wrap {
    max-height: 300px;
    overflow: hidden;
}

.img-wrap img {
    min-height: 300px;
    overflow: hidden;
}

.featured {
    /* border-top: 3px solid #dc3545; */
}

.featured .featured-section {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #dd3848;
    color: #fff;
    padding: 3px 15px;
    z-index: 9;
    border-bottom-left-radius: 10px;
}

.featured::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0px;
    background: #dc3545;
    width: 100%;
    left: 0;
    height: 3px;
}

.none {
    display: none;
}

.featured .none {
    display: block;
}

.ribbon {
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#F70505 0%, #8F0808 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    left: -21px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #8F0808;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F0808;
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #8F0808;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F0808;
}

.ribbon.Silver span {
    background: linear-gradient(#D3D3D3 0%, #A9A9A9 100%);
}

.ribbon.Silver span::before {
    border-left: 3px solid #D3D3D3;
    border-top: 3px solid #D3D3D3;
}

.ribbon.Silver span::after {
    border-right: 3px solid #D3D3D3;
    border-top: 3px solid #D3D3D3;
}

.ribbon.Golden span {
    background: linear-gradient(#FFD700 0%, #DAA520 100%);
}

.ribbon.Golden span::before {
    border-left: 3px solid #FFD700;
    border-top: 3px solid #FFD700;
}

.ribbon.Golden span::after {
    border-right: 3px solid #FFD700;
    border-top: 3px solid #FFD700;
}

.ribbon.Diamond span {
    background: linear-gradient(#cbe3f0 0%, #9ac5db 100%);
}

.ribbon.Diamond span::before {
    border-left: 3px solid #cbe3f0;
    border-top: 3px solid #cbe3f0;
}

.ribbon.Diamond span::after {
    border-right: 3px solid #cbe3f0;
    border-top: 3px solid #cbe3f0;
}

.ribbon.Platinum span {
    background: linear-gradient(#b5b1ad 0%, #c1beba 100%);
}

.ribbon.Platinum span::before {
    border-left: 3px solid #b5b1ad;
    border-top: 3px solid #b5b1ad;
}

.ribbon.Platinum span::after {
    border-right: 3px solid #b5b1ad;
    border-top: 3px solid #b5b1ad;
}


/* #socialShare {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  } */

#socialGallery a,
#socialShare>.socialBox {
    position: relative;
    float: none;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    padding: 0px;
    background-color: transparent;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

#socialShare>*>span {
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15);
    display: block;
    color: #fff;
    font-size: 16px;
    padding: 8px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

#socialShare>*>span:hover,
#socialShare>.open>span {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    transform: scale(1.25);
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

#socialGallery {
    left: 140px;
    margin: 0 auto 0;
    position: absolute;
    top: 6px;
    transform: translate(-50%, 0);
    visibility: hidden;
    width: 200px;
}

#socialGallery a {
    visibility: hidden;
    opacity: 0;
    margin: 0px;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
    top: 10px;
    /* background-color: rgba(0, 0, 0, 0.2); */
}

#socialGallery a>span {
    position: relative;
    top: 4px;
    left: 4px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.socialToolBox {
    cursor: default;
}

.pointer {
    cursor: pointer
}

.facebook:hover {
    background: #3b5998 !important
}

.google:hover {
    background: #dd4b39 !important
}

.instagram:hover {
    background: #C13584 !important
}

.tumblr:hover {
    background: #32506d !important
}

.twitter:hover {
    background: #00aced !important
}

.youtube:hover {
    background: #bb0000 !important
}

.whatsapp:hover {
    background: #25D366 !important
}

.hide-text a {
    font-size: 0px;
}

.hide-text a svg {
    font-size: 18px;
}

.small-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: top;
}

#paidMemberModal .modal-content {
    border-image: linear-gradient( to left, red, rgb(125 33 33)) 1 100%;
    border-style: solid;
    border-width: 10px;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-image-slice: 1;
}

.modal-backdrop.show {
    opacity: 0.9;
}

button.close {
    opacity: 1;
    z-index: 99;
}

.wthree-mobilaapp.main-grid-border {
    background: #efefef;
}

.app {
    padding: 70px 0px 0 0;
}

.app-image img {
    width: 80%;
}

.mobile_app-left h3 {
    font-size: 26px;
    line-height: 38px;
    margin: 70px 0 0px 0;
    color: #ec3434;
    letter-spacing: 1px;
}

.mobile_app-left p {
    margin: 20px 0 0px 0;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 1px;
}

.agileits_app-devices {
    width: 75%;
    margin: 30px 0 0 0;
}

.agileits_app-devices a {
    float: left;
    width: 46%;
    margin-right: 4%;
}

.agileits_app-devices a img {
    width: 100%;
}

.agileits_app-devices h5 {
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-size: 20px;
    color: #00c4da;
}

.notification-photo {
    height: 40px;
    width: 40px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.notification-list ul {
    padding: 10px;
    width: 250px;
    height: 240px;
    overflow: auto;
}

#notification a {
    color: #dc3545 !important;
}

.notification-list h5 {
    font-size: 10px;
}

.notification-list p {
    font-size: 10px;
    line-height: normal;
}
.fs-11 {
    font-size: 11px;
}
.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-20 {
    font-size: 20px;
}

.blog-list img {
    width: 200px;
    height: 250px;
    object-fit: cover;
}

.blog-recent ul li img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.blog-recent ul li .media-body p:first-child {
    line-height: normal;
}

.blog-tags .h1,
.blog-tags .h2,
.blog-tags .h3,
.blog-tags .h4,
.blog-tags .h5,
.blog-tags .h6 {
    font-weight: normal;
    padding: 0px 6px;
    display: inline-block;
}

.blog-tags .h1:hover,
.blog-tags .h2:hover,
.blog-tags .h3:hover,
.blog-tags .h4:hover,
.blog-tags .h5:hover,
.blog-tags .h6:hover {
    background-color: #c82333;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}

.line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* #Media
================================================== */

@media (min-width: 576px) {
    .modal-dialog .modal-content {
        max-width: 400px;
        padding: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    .modal-dialog.modal-lg .modal-content {
        max-width: 500px;
        width: 500px;
    }
    #successStoryModal .modal-dialog.modal-lg .modal-content {
        width: 800px;
        max-width: 800px;
    }
    #memberShipModal .modal-dialog.modal-lg .modal-content {
        max-width: 650px;
        width: 650px;
    }
}


/* 
.modal-header .close {
    margin-top: -1.5rem;
} */

.form-title {
    margin: -2rem 0rem 2rem;
}

.delimiter {
    padding: 1rem;
}

.social-buttons .btn {
    margin: 0 0.5rem;
    padding: 10px 10px;
    line-height: 10px;
    height: 40px;
    width: 40px;
}

.signup-section {
    padding: 0.3rem 0rem;
}

.faq-section {
    background: #fdfdfd;
    min-height: 100vh;
    padding: 10vh 0 0;
}

.faq-title h2 {
    position: relative;
    margin-bottom: 45px;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
}

.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #E91E63;
    bottom: -25px;
    margin-left: -30px;
}

.faq-title p {
    padding: 0 190px;
    margin-bottom: 10px;
}

.faq {
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.faq .card {
    border: none;
    background: none;
    border-bottom: 1px dashed #CEE1F8;
    border-radius: 0;
}

.faq .card .card-header {
    padding: 0px;
    border: none;
    background: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
    padding-left: 10px;
}

.faq .card .card-header .faq-title {
    text-align: left;
    padding: 20px;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

.faq .card .card-header .faq-title .badge {
    display: inline-flex;
    width: 22px;
    height: 22px;
    line-height: 14px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    text-align: center;
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    margin-right: 20px;
    align-items: center;
    justify-content: center;
}

.faq .card .card-body {
    padding-left: 65px;
    border-top: 1px solid #F3F8FF;
}

.faq .card .card-body p {
    margin-bottom: 14px;
    text-align: left;
    line-height: 1.6;
}

.profile-slider .carousel a svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#staticBackdrop .modal-dialog .modal-content {
    max-width: 100%;
    padding: 0;
}

#staticBackdrop .modal-dialog .modal-body {
    padding: 0;
}

#staticBackdrop .modal-dialog .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    line-height: 15px;
    z-index: 9;
}

#exampleModal .modal-dialog .modal-content {
    max-width: 600px;
}

.modal {
    z-index: 10000;
}

.modal-backdrop {
    z-index: 9999;
}

.btn-social>:first-child {
    font-size: 30px !important;
    padding: 5px;
}

@media (max-width: 1200px) {
    .awaiting .btn {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 991px) {
    .faq {
        margin-bottom: 30px;
    }
    .faq .card .card-header .faq-title {
        line-height: 26px;
        margin-top: 10px;
    }
    .carousel-caption {
        right: 15%;
        left: 15%;
    }
    .request {
        padding: 20px 10px;
    }
    .profile-list .profile-content {
        padding: 0 !important;
    }
    .verified-premium {
        margin-top: 20px;
    }
    .awaiting .btn {
        padding-left: 10px;
        padding-right: 10px;
    }
    .other-list li div {
        display: inline-block;
        width: 100%;
    }
    .custom-radio tr {
        display: block;
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        right: 10%;
        left: 10%;
        padding: 15px;
    }
    .carousel-caption h1 {
        font-size: 22px;
    }
    .form-section {
        margin-top: 0;
        padding: 20px 15px;
        border-radius: 0;
    }
    /* .owl-nav {
        display: none;
    } */
    .intrest-shorlist .btn {
        width: 100%;
        margin: 0 0 10px 0 !important;
    }
    /* .intrest-shorlist .btn:first-child {
        margin-bottom: 15px !important;
    } */
    .intrest-shorlist .btn:last-child {
        margin-bottom: 0px !important;
    }
    .new-matches .col-12.col-sm-6.col-md-6.col-lg-4.col-xl-3,
    .awaiting .col-12.col-sm-6.col-md-6.col-lg-4 {
        margin-bottom: 20px;
    }
    .profile .p-5,
    .profile .card .pt-5 {
        padding: 20px !important;
    }
    .profile .pr-0 {
        padding-right: 15px !important;
    }
    li.nav-item.dropdown.show .dropdown-menu {
        border: 0;
        border-radius: 0;
        padding: 0;
    }
    /* li.nav-item.dropdown.show .dropdown-menu .dropdown-item {
        padding: 0;
    } */
    .content-one-bye-one .text-black-50,
    .content-one-bye-one .text-black-50~p {
        display: inline-block;
        font-size: 16px;
    }
    .content-one-bye-one .text-black-50 {
        width: 48%;
    }
    .content-one-bye-one .text-black-50~p {
        margin-bottom: 0 !important;
        width: 50%;
    }
    .content-one-bye-one .pt-5.pl-5.pr-5 {
        padding-bottom: 0 !important;
    }
    .content-one-bye-one .pt-5.pl-5.pr-5:last-child {
        padding-bottom: 20px !important;
    }
    #navbarSupportedContent {
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
        background: -webkit-linear-gradient(to left, #b20a2c, #fffbd5);
        background: linear-gradient(to left, #b20a2c, #fffbd5);
        height: 100vh;
        overflow: auto;
        z-index: 999;
    }
    .mobile-profile-nav a img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
    }
    #navbarSupportedContent .navbar-nav {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #navbarSupportedContent .navbar-nav .nav-item:first-child {
        border-top: 1px solid #fff;
    }
    #navbarSupportedContent .navbar-nav .nav-item {
        margin: 0 !important;
        padding: 0px 20px !important;
        border-bottom: 1px solid #e0e0e0;
    }
    #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu {
        margin-left: 0px;
        margin-right: -20px;
    }
    #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu li {
        border-bottom: 1px solid #000;
        padding: 0px 20px !important;
    }
    #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu li:first-child {
        border-top: 1px solid #000;
    }
    #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu li:last-child {
        border-bottom: 0;
    }
    #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    .modal-header .close {
        margin: 0 0 0 -15px;
    }
    .filter {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 99;
        background-color: #dc3545;
        font-size: 30px;
        color: #fff;
        height: 60px;
        width: 60px;
        padding: 20px 0px;
        text-align: center;
        border-radius: 50%;
    }
    #sidebarMenu,
    .sidebarMenu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 9999;
        height: 100%;
        overflow: auto;
        background-color: #fff;
    }
    .sidebarMenu {
        position: relative;
        z-index: 99;
    }
    #sidebarMenu .card {
        border-radius: 0;
    }
    .marketing {
        padding: 20px;
    }
    .agileits_services {
        margin: 0;
        padding: 70px 0 70px 0;
    }
    .w3ls_services-grids {
        margin-bottom: 15px;
    }
    .search_left,
    .from-to-spacing {
        padding: 0;
    }
    .from-to-spacing .form-inline .form-control {
        width: calc(91% / 2);
    }
    .add,
    .remove {
        font-size: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .add svg,
    .remove svg {
        font-size: 15px;
    }
    .from-to-spacing .form-group label {
        margin-bottom: 0;
    }
    .form-group {
        margin-bottom: 5px;
    }
    .radio-inline,
    .checkbox-inline {
        font-weight: normal !important;
    }
    .from-to-spacing .form-control {
        height: calc(1.5em + 0.75rem + 0px);
    }
    .profile_search1 {
        text-align: center;
    }
    .profile_search1 input.btn {
        width: 200px;
    }
    .inner-banner {
        display: none;
    }
    .profile .profile-photo {
        height: 400px !important;
        max-height: 400px !important;
    }
    .profile .profile-photo img {
        max-width: 100%;
        height: auto !important;
    }
    .profile .pr-0 {
        padding: 0 !important;
    }
    .profile>.row.mt-remove {
        margin-top: -50px !important;
    }
    #about .text-black-50,
    #about .text-black-50~p,
    #Religious .text-black-50,
    #Religious .text-black-50~p,
    #Location .text-black-50,
    #Location .text-black-50~p,
    #education .text-black-50,
    #education .text-black-50~p,
    #family .text-black-50,
    #family .text-black-50~p,
    #desired .text-black-50,
    #desired .text-black-50~p {
        width: calc(100% - 190px);
    }
    .content-one-bye-one {
        border-radius: 0;
    }
    .similer-profile {
        border-radius: 0;
    }
    /* #staticBackdrop .modal-dialog { */
    .modal-dialog {
        margin: 0;
    }
    .profile-slider-img .carousel-inner .carousel-item img {
        max-width: 100%;
    }
    .mobile-spacing {
        padding-left: 15px;
        padding-right: 15px;
    }
    .close-pos,
    .edit-pos {
        position: absolute;
        right: 15px;
        top: 20px;
    }
    .edit-pos {
        position: absolute;
        right: 15px;
        top: 95px;
    }
    .profile-arrow {
        position: relative;
        top: 250px;
        font-size: 25px;
        left: 0;
        right: 0;
    }
    .profile-left,
    .profile-right {
        /* background-color: #fff;
        height: 80px;
        padding: 5px 19px;
        border-radius: 50%;
        width: 95px; */
        position: absolute;
        display: flex;
        align-items: center;
    }
    .profile-right {
        right: 0px;
        justify-content: flex-start;
    }
    .profile-left {
        left: 0px;
        justify-content: flex-end;
    }
    .success-story .card {
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .success-story .card .card-body .row {
        margin-left: -20px;
        margin-right: -20px;
    }
    .success-story .card .card-body h3 {
        font-size: 20px;
    }
    .success-story .card .card-body .col-12.col-md-6:first-child {
        padding-left: 0;
        padding-right: 0;
    }
    .success-story .card .card-body .col-12.col-md-6:first-child img {
        width: 100%;
        margin-bottom: 15px;
    }
    .successStoryHeading h4 {
        font-size: 20px;
    }
    #successStoryModal .modal-dialog.modal-lg .modal-content img {
        margin-bottom: 15px;
    }
    .tabs-marker.nav-tabs .nav-item {
        width: 50%;
    }
    .owl-carousel .owl-nav button.owl-prev {
        margin-left: -10px;
    }
    .owl-carousel .owl-nav button.owl-next {
        margin-right: -10px;
    }
    .img-wrap {
        max-height: 420px;
    }
    .owl-dots {
        display: none;
    }
    .featured .featured-section {
        padding: 0px 15px;
        font-size: 12px;
    }
    #socialShare .socialToolBox a {
        font-size: 16px;
        padding: 2px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    .contact-info ul {
        padding-bottom: 30px;
    }
    #loginModal .modal-content,
    #loading .modal-content,
    #memberShipModal .modal-content,
    #paidMemberModal .modal-content {
        position: absolute;
        top: 0;
        bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        height: 100vh;
        overflow: auto;
        border-radius: 0;
    }
    .fs-12-mobile {
        font-size: 11px;
    }
    #loading .modal-content {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #e74358;
    }
    .btn-mobile {
        padding-left: 12px;
        padding-right: 12px;
    }
    #btnLogin {
        margin-top: 20px;
    }
    .remove-margin-mobile {
        margin-top: 15px !important;
    }
    .faq .card .card-body {
        padding-left: 25px;
    }
    .faq .card .card-header .faq-title {
        padding: 12px;
        margin: 0;
    }
    .faq .card .card-header .faq-title .badge {
        margin-right: 5px;
    }
    .faq .card .card-header:hover {
        padding-left: 0px;
    }
    .faq .card .card-body p {
        margin-bottom: 0;
    }
    .agileits_app-devices {
        width: 100%;
        margin: 30px 0 15px 0;
    }
    .app-image {
        text-align: center;
    }
    .w3layouts-banner {
        min-height: 370px;
    }
    header {
        padding: 0px 0;
    }
    .agileits-register {
        width: 80%;
        right: 10%;
        bottom: -170%;
    }
    .logo a {
        font-size: 34px;
    }
    .agile-overlay ul li span {
        width: 106px;
    }
    .mobile_app-left h3 {
        font-size: 20px;
        margin: 10px 0 0px 0;
        line-height: 26px;
    }
    .agileits_app-devices {
        width: 100%;
        margin: 25px 0 0 0;
    }
    .agileits_app-devices h5 {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .app {
        padding: 40px 0px 0 0;
    }
    .col-md-offset-1.col-md-5.app-image {
        width: 85%;
        margin-top: 15%;
    }
    .register-find {
        font-size: 26px;
    }
    .blog-list img {
        width: 100%;
        height: 250px;
    }
    .blog-recent ul li img {
        margin-bottom: 10px;
    }
    .notification-list ul {
        width: 100%;
        height: auto;
    }
    #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu.notification-list li.media {
        padding-top: 20px !important;
    }
    #navbarSupportedContent .navbar-nav .nav-item.dropdown .dropdown-menu.notification-list li.media:first-child {
        border-top: 0 !important;
    }
}

@media (max-width: 575px) {
    .profile>.row {
        margin-top: 0 !important;
    }
    .contact-info {
        background: none !important;
    }
    .contact-info .nav.flex-column {
        background-color: #17a2b8!important;
    }
    .free {
        width: 100px;
    }
    .success-story-slider .owl-nav {
        display: block;
    }
    .success-story-slider .owl-nav button {
        top: 35%;
    }
    .success-story-slider .owl-nav button span {
        margin: -4px -5px;
    }
    .from-to-spacing .form-inline .form-control {
        width: calc(90% / 2);
    }
}

@media (max-width: 425px) {
    #about .text-black-50,
    #about .text-black-50~p,
    #Religious .text-black-50,
    #Religious .text-black-50~p,
    #Location .text-black-50,
    #Location .text-black-50~p,
    #education .text-black-50,
    #education .text-black-50~p,
    #family .text-black-50,
    #family .text-black-50~p,
    #desired .text-black-50,
    #desired .text-black-50~p {
        width: calc(100% - 210px);
    }
}

@media (max-width: 415px) {
    .logo-marketing {
        width: 185px;
    }
    .free {
        width: 90px;
    }
}

@media (max-width: 340px) {
    .free {
        width: 70px;
    }
    .logo-marketing {
        width: 150px;
    }
}