/* Fonts */

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

/*============================================================
# General
==============================================================*/

:root {
  --color-default: #364d59;
  --color-primary: #fc9032;
  --color-secondary: #52565e;
  scroll-behavior: smooth;
}

body {
  color: var(--color-default);
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

/*==============================================================
# Sections & Section Header
================================================================*/

section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 45px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
  font-size: 18px;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*==============================================================
# Header
================================================================*/

.header {
  z-index: 997;
  position: absolute;
  padding: 30px 0;
  top: 0;
  left: 0;
  right: 0;
}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

/*==============================================================
# Desktop Navigation
================================================================*/

.navbar .dropdown ul {
  left: -289px !important;
  border-radius: 10px;
  width: 400px;
  padding: 20px !important;
}

.navbar .dropdown ul a {
  padding: 0 !important;
}

.navbar .dropdown ul li {
  padding: 5px 0px;
}

i.bi.bi-bell {
  font-size: 21px;
}

ul.main_profile {
  margin-left: 50% !important;
}

li.dropdown.nav_profile_drop a {
  display: initial;
}

ul.nav_profile_drop_ul {
  display: initial !important;
}

.nav_profile {
  border-radius: 50%;
  width: 40%;
}

.nav_profile_drop {
  width: 20%;
}

.after_register .navbar a,
.navbar a:focus {
  color: #fc9032;
}

.after_register .navbar a:hover,
.after_register .navbar .active,
.after_register .navbar .active:focus,
.after_register .navbar li:hover>a {
  color: #fc9032;
}

.after_register {
  padding: 10px 0;
  /* border-bottom: 3px solid #fc9032; */
}

.after_register {
  padding: 10px 0;
}

.after_register .navbar a:hover,
.navbar a:focus {
  color: orange;
}

.after_register .navbar a::before {
  content: none;
}

@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 15px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*==============================================================
# Mobile Navigation
================================================================*/

@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*==============================================================
# Get Started Section
================================================================*/

img.jambu_maharishi {
  width: 22%;
  height: 22%;
}

.maharishi_img_content_text_content {
  margin-left: 30px;
}

.maharishi_img_content {
  margin-bottom: 30px;
}

.maharishi_img_content h3 {
  margin-left: 30px;
}

.row.view_profile {
  border: 1px solid #ddd;
  padding: 0 10px 20px;
}

.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  letter-spacing: 1px;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}

.php-email-form {
  background: #fff;
  padding: 50px;
  height: auto;
  box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}

@media (max-width: 575px) {
  .php-email-form {
    padding: 20px;
  }
}

.php-email-form h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: #fc9032;
  margin-bottom: 20px;
  line-height: 1.5;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.php-email-form input,
.php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
  padding: 12px 15px;
}

.php-email-form input:focus,
.php-email-form select:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}

.php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.php-email-form button[type="button"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.php-email-form button[type="search"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.php-email-form button[type="submit"]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.content.main_first h3:after {
  width: 100%;
  height: 1px;
}

/*==============================================================
# register form
================================================================*/

.register {
  width: 80%;
  margin: auto;
  padding: 8% 0 0;
}

.reg_img_sec {
  padding: 26% 0px;
  background: #edeff0;
}

.reg_img_sec h4 {
  font-weight: 400;
  /* color: #fc9032; */
}

/*==============================================================
# Breadcrumbs
================================================================*/

.breadcrumbs {
  padding: 140px 0 100px 0;
  min-height: 45vh;
  position: relative;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*==============================================================
# Constructions Section
================================================================*/

.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*============================================================
# Recent Blog Posts Section
==============================================================*/

.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*==============================================================
# Hero Section
================================================================*/

.row.justify-content-center.matri {
  position: absolute;
  left: 0;
  right: 0;
  top: 15%;
}

.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 70vh;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px;
  }
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: 300;
  position: relative;
  line-height: 1.5;
  letter-spacing: 1px;
}

.hero .info h2 span {
  font-weight: 500;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 25px;
  letter-spacing: 0.2px;
  line-height: 1.8;
}

.hero .info p span {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 2px;
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*============================================================
# Stats Counter Section
==============================================================*/

.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

.stats-counter .stats-item button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  float: right;
  margin-left: 20%;
}

.stats-counter .stats-item .contact_buttons button[type="button"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  float: right;
  margin-left: 20%;
}

.fullprofile.d-flex.align-items-center {
  border: 1px solid #ddd;
  padding: 10px;
  width: 60%;
  border-radius: 10px;
}

.fullprofile p {
  margin-bottom: 0;
  margin-right: 3%;
}

.fullprofile a {
  margin-left: 20%;
}

/*==============================================================
# Footer
================================================================*/

.footer {
  color: #fff;
  background: url("../images/footer-bg.png") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgb(0 0 0 / 91%);
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}

/* =all matches page= */

.match_option ul {
  list-style: none;
  padding: 0;
}

.match_option ul li {
  display: inline;
  padding: 0 35px;
  border-right: 1px solid;
}

.match_option ul li:last-child {
  border-right: none;
}

.match_option ul li:first-child {
  padding-left: 0;
}

.match_option ul li a {
  color: #fc9032;
}

.match_view_profile .carousel-indicators [data-bs-target] {
  width: 50px;
  height: 50px;
}

.match_view_profile .carousel-indicators button {
  border: none;
  margin: 0 10px;
}

.match_view_profile ul li {
  padding-bottom: 10px;
  list-style: none;
}

.match_view_profile ul {
  padding: 0;
}

.fullprofile.d-flex.align-items-center.contact_buttons {
  width: 90%;
}
.fullprofile.d-flex.align-items-center.contact_buttonsdetail {
  width: 90%;
}


.contact_buttons a {
  margin-left: 11%;
}

.contact_buttons button {
  margin-left: 0 !important;
}

.info ul li {
  list-style: none;
  padding-bottom: 15px;
}

.info ul {
  padding: 0;
}

.info ul li i {
  color: #fc9032;
}

.info h4 {
  padding-bottom: 10px;
}

/* =radio button= */

.radio-box-border {
  border: 1px solid #cccccc;
  padding: 15px 16px 10px;
  width: 320px;
  border-radius: 8px;
  text-align: center;
  margin: 0 auto 30px;
}

.radion-box-text2 {
  color: #00a03a;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.42px;
  line-height: 17px;
  margin-bottom: 14px;
  margin-top: 14px;
  height: 17px;
}

.radion-box-greytext {
  color: #777777;
  letter-spacing: 0.36px;
  font-weight: normal;
  display: block;
  margin-bottom: 7px;
  margin-top: 9px;
  height: 17px;
}

/* =my home page= */

.my_profile {
  border: 1px solid #ddd;
  border-radius: 15px;
  background: #fff;
  margin-bottom: 30px;
}

.my_profile img {
  width: 35%;
  border-radius: 50%;
}

.form-check-input {
  padding: 6px !important;
  margin-right: 5px;
}

.main_profile_block {
  background-image: linear-gradient(147deg, #5cbb67 3%, #1999a7 98%);
  padding: 20px;
  text-align: center;
  border-radius: 15px;
}

.profile_photo {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
}

.profile_photo h5 {
  margin-top: 10px;
}

.profile_photo h5 {
  margin-top: 10px;
}

label.form-check-label {
  font-size: 14px;
}

button.usc {
  border: none;
  background: #fc9032;
  color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
}

.edit_profile {
  padding: 15px;
}

.edit_profile a {
  color: #000;
}

.edit_profile i {
  color: #fc9032;
}

.inputerror {
  border: 1px solid #f70000;
}

span.error,
span.error p {
  color: #ee0303;
  font-size: 12px;
}

/*=============================================================
matri band section
===============================================================*/

section.matri-band {
  padding: 15px 0;
  text-align: center;
  background-color: #1f2b49;
}

section.matri-band h1 {
  font-size: 18px;
  color: #fff;
  margin: 0;
}

/*=============================================================
my profile section
===============================================================*/

.my_profile_sec {
  background: #f8f8f8;
}

.profile_info {
  box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
  background: #fff;
  padding: 20px;
}

.basic_de {
  clear: both;
}

.basic_de span {
  float: right;
  width: 41%;
}

.info_text_header {
  border-bottom: 1px solid #ddd;
  min-height: 38px;
  margin-bottom: 20px;
}

/*=============================================================
Partner Preferences
===============================================================*/

.partner_preferences_main p {
  margin-bottom: 10px;
}

section.partner_preferences {
  padding: 40px 0;
}

.partner_pre_side_nav {
  background: #fc9032;
  padding: 35px;
  color: #fff;
  min-height: 500px;
}

.partner_pre_side_nav ul li a {
  color: #fff;
  padding: 20px;
}

.partner_pre_side_nav ul li {
  list-style: none;
  margin-bottom: 15px;
}

.partner_pre_side_nav>h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.partner_preferences_main {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 30px;
}

.pre_info_text {
  float: left;
}

.pre_info .edit {
  float: right;
}

.main_header {
  margin-top: 30px;
}

.sub_header {
  margin: 15px 0 40px;
  color: #323688;
}

.pre_info {
  min-height: 54px;
}

.modal-content {
  padding: 10px;
}

label {
  margin-bottom: 5px;
}

/*=============================================================
              add photo page
===============================================================*/

.add_photo_main {
  padding: 50px;
  border: 1px solid #ddd;
  background: #f7f7f7;
}

/* ===========================================================
about sangha page
============================================================= */

section.abt_sanga img {
  box-shadow: #999 0px 0px 8px;
  border: 0px !important;
  padding: 10px 10px;
}

section.abt_sanga .row_second {
  margin-top: 40px;
  margin-bottom: 40px;
}

section.abt_sanga .row_second p {
  padding-left: 0;
}

section.abt_sanga p {
  font-size: 18px;
  padding: 20px;
  text-align: justify;
}

section.abt_sanga .pop {
  cursor: pointer;
}

.modal-dialog.abt_sangha {
  max-width: 800px;
}

/* ----- Custom */
input#regsubmit {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

/* pagination */
ul.pagination.ng-table-pagination.pull-right {
  margin: 0px 0px 5px;
}

li.ng-scope span {
  background: #202c48 !important;
  color: #fff !important;
}

li.ng-scope a,
li.ng-scope span {
  padding: 5px 12px;
  border: 1px solid #ccc;
}

li.ng-scope a {
  color: #1e2b49;
}

.row.scroll {
  /* background-color:#00FFFF; */
  height: 200px;
  overflow-x: scroll;
  white-space: nowrap;
}

/* Custom */
.navbar>ul>li {
  color: #fc9032;
}

.col-md-4.ms-idstyl {
  padding-left: 153px;
}

span.mem-reg {

  padding: 10px 66px;
  margin-top: 37px;
  color: #3b3d3e;
}


/* ======contact section=== */
section.contact_section{
  background-image: url(../images/msk_slider2.png);
  padding: 0px 0px;

}
.sectioncont_bg {
  background: #000000c2;
  padding: 80px 0px;
}
.conright_block {
  color: #fc9032;;
  /* line-height: 1.8; */
text-align: center;
}
h3.conleft_head {
  color: #ffffff;
  font-size: 40px;
  border-bottom: 1px solid #fc9032;
  margin-top: 15px;
}
p.conleft_address {
  font-size: 20px;
  color: silver;
  line-height: 1.8;
  margin: 50px 0px;
}
.cls_cont_phone {
  background: white;
  padding: 10px 0px;
}
p.conright_phone {
  font-size: 20px;
  color: black;
}

.conpage_header h4 {
  margin: 0 0;
  padding: 8px 6px;
  color: #fc9032;
  border-bottom: 1px solid white;
  text-align: center;
}
.content-inner.detail_page {
  text-align: center;
  border-radius: 5px;
  border: none;
  box-shadow: -1px 0px 5px 1px #ffffff;
  height: auto;
  padding: 25px 30px;
  /* margin: 1px 0px 50px; */
  width: 75%;
  margin: auto;
}
ul.con_pageullist li {
  list-style: none;
  margin: 20px 0px;
}

ul.con_pageullist .form-control {
 background-color: #ffffff8a; 
}
.contact_pagebtn input#submit-btn {
  background: #fc9032;
  border: none;
}
p.conleft_address span.span1 {
  font-size: 30px;
  color: #f68f32;
  font-weight: 600;
}
p.conleft_address span.span2 {
  font-size: 24px;
  color: wheat;
  font-weight: 800;
}

/* ====feedback page style== */
section.feedback_section{
  background-image: url(../images/msk_slider2.png);
  padding: 0px 0px;

}
.sectionfeedbk_bg {
  background: #000000c2;
  padding: 75px 0px;
}

.feedback_head h5 {
    padding-bottom: 5px;
    color: white;
    font-size: 24px;
    border-bottom: 1px solid;
    font-weight: 300;
}

.feedbackpage_header h4 {
    margin: 0 0;
    padding: 8px 6px;
    color: #fc9032;
    border-bottom: 1px solid #fc9032;
    text-align: center;
    font-family: cursive;
    margin-bottom: 40px;
    font-size: 28px;
}
.feedback_field {
    text-align: left;
    margin: 20px 0px;
}
.feedback_field label {
    color: wheat;
    font-size: 20px;
}

.feedback_field .form-control {
    background: #ffffff1f;
    color: white;
}
.feedback-inner.fbdetail_page {
  text-align: center;
  border-radius: 5px;
  border: none;
  box-shadow: -1px 0px 5px 1px #ffffff;
  height: auto;
  padding: 25px 30px;
  /* margin: 1px 0px 50px; */
  width: 75%;
  margin: auto;
  background: #ffffff45;
}
ul.fb_pageullist li {
  list-style: none;
  margin: 20px 0px;
}
select.form-control option {
    color: black;
}
ul.fb_pageullist .form-control {
 background-color: #ffffff8a; 
}
.feedback_pagebtn input#submit-btn {
  background: #fc9032;
  border: none;
}
