@font-face {
  font-family: league_spartan;
  src: url(../fonts/league-spartan-master/fonts/web/woff/LeagueSpartan-Regular.woff);
}
*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Spectral", serif;
}

ul {
  list-style-type: none;
}

.section_top_padding {
  padding-top: 150px;
}

.follow_button {
  border: 1px solid rgba(51, 59, 64, 0.1);
  border-radius: 4px;
  background: none;
  color: #333b40;
  outline: 0;
  text-decoration: none !important;
}
.follow_button:focus {
  box-shadow: none !important;
}
.follow_button:active {
  border-color: rgba(51, 59, 64, 0.5) !important;
  background-color: rgba(51, 59, 64, 0.5) !important;
}
.follow_button:hover {
  background: none;
  color: #333b40 !important;
  border: 1px solid rgba(51, 59, 64, 0.1);
}

.following {
  background-color: rgba(51, 59, 64, 0.5);
  color: #ffffff;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-image: url("../images/preloader.gif");
  background-repeat: no-repeat;
  background-color: #FFF;
  background-position: center;
}

header {
  font-family: "Nunito Sans", sans-serif !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 1px 6px 1px rgba(51, 59, 64, 0.1);
  z-index: 999;
}
header .nav_top {
  border-bottom: 1px solid rgba(51, 59, 64, 0.1);
  background: url(../images/header_bg.png);
  background-size: cover;
}
header .nav_top .container .glass_efect {
  border-radius: 0;
  overflow: initial;
}
header .nav_top .container .glass_efect::before {
  z-index: -1;
}
header .nav_top .nav_top_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 50px;
}
header .nav_top .nav_top_content .brand {
  max-width: 150px;
  width: 100%;
}
header .nav_top .nav_top_content .brand img {
  width: 100%;
}
header .nav_top .nav_top_content ul {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
header .nav_top .nav_top_content ul li .nav_link {
  margin: 0 8px;
  display: block;
  color: #333b40;
  text-decoration: none;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0;
}
header .nav_top .nav_top_content ul li .nav_link img {
  display: none;
  width: 30px;
}
header .nav_top .nav_top_content ul li .nav_link .notification {
  display: block !important;
}
header .nav_top .nav_top_content ul li .nav_link .user_image {
  width: 40px;
  height: 40px;
}
header .nav_top .nav_top_content ul li .nav_link .user_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
header .nav_top .nav_top_content ul li .dropdown-menu.show {
  top: -1px !important;
}
header .nav_top .nav_top_content ul .nav-link {
  font-size: 16px;
  margin: 0 8px;
  color: #333b40;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
header .nav_top .nav_top_content ul .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  width: 0;
  background: rgba(51, 59, 64, 0.2);
  transition: all 0.3s;
}
header .nav_top .nav_top_content ul .nav-link:hover::before {
  width: 100%;
}
header .nav_top .nav_top_content .dropdown-toggle:after {
  content: none;
}
header .nav_top_hide {
  height: 0;
}
header .nav_bottom {
  background: #ffffff;
}
header .nav_bottom .navbar-toggler {
  color: #333b40;
  outline: 0;
}
header .nav_bottom .navbar-brand {
  height: 60px;
}
header .nav_bottom .navbar-brand img {
  height: 100%;
  object-fit: contain;
}
header .nav_bottom .navbar-nav {
  position: relative;
}
header .nav_bottom .nav-link {
  margin: 0 8px;
  color: #333b40;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
header .nav_bottom .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: rgba(51, 59, 64, 0.2);
  transition: all 0.3s;
}
header .nav_bottom .nav-link:hover::before {
  width: 100%;
}
header .nav_bottom .subscribe {
  position: absolute;
  right: 0;
  top: 0;
}

.notification_dropdown .dropdown-menu {
  padding: 0;
  width: 300px;
}
.notification_dropdown .dropdown-item {
  border-bottom: 1px solid #ccc;
  display: flex;
  padding: 20px 20px 20px 10px;
}
.notification_dropdown .dropdown-item .icon img {
  width: 20px;
  margin-right: 10px;
}
.notification_dropdown .dropdown-item .content {
  width: 100%;
}
.notification_dropdown .dropdown-item .content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notification_dropdown .dropdown-item .content .top span {
  display: block;
}
.notification_dropdown .dropdown-item .content .top .title {
  font-size: 20px;
  color: #00A86B;
}
.notification_dropdown .dropdown-item .content .top .time {
  color: #00A86B;
  font-size: 12px;
}
.notification_dropdown .dropdown-item .content p {
  color: #333b40;
  white-space: normal;
  margin: 0;
  font-size: 12px;
}

@media screen and (max-width: 1200px) {
  header .nav_top .glass_efect {
    border: none;
  }
  header .nav_top .glass_efect .nav_top_content {
    padding: 10px 0;
  }
}
@media screen and (max-width: 576px) {
  .nav_top_content .brand {
    max-width: 100px !important;
  }
  .nav_top_content .nav_link {
    font-size: 20px !important;
    margin: 0 3px !important;
  }
  .nav_top_content .nav_link img {
    width: 20px !important;
  }
  .nav_top_content .nav_link .user_image {
    height: 30px !important;
    width: 30px !important;
  }
  .nav_top_content .nav_link .user_image img {
    width: 100% !important;
  }
  .nav_top_content .nav-link {
    font-size: 11px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 992px) {
  header .nav_top .nav_top_content ul li .nav_link .badge {
    display: none !important;
  }

  .nav_top_content .nav_link img {
    display: block !important;
  }
  .nav_top_content .nav_link span {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .nav_top .container {
    max-width: 1240px;
  }
}
/* header end */
/* signup_login Modal start */
#signup_loginModal .modal-body {
  padding: 60px 15px;
  border-radius: 2px;
  position: relative;
}
#signup_loginModal .modal-body .close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #eee;
  width: 40px;
  height: 40px;
  line-height: 43px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}
#signup_loginModal .modal-body h2 {
  text-align: center;
  font-weight: 700;
  display: none;
}
#signup_loginModal .modal-body .description {
  text-align: center;
  margin-bottom: 41px;
  display: none;
}
#signup_loginModal .modal-body .signup_area {
  display: none;
}
#signup_loginModal .modal-body .signup_area .third_party {
  display: block;
  width: 230px;
  margin: 15px auto;
  border: 2px solid rgba(51, 59, 64, 0.2);
  border-radius: 5px;
  font-size: 16px;
  padding: 5px 0 5px 20px;
  color: #333b40;
  text-decoration: none;
  transition: all 0.2s;
}
#signup_loginModal .modal-body .signup_area .third_party:hover {
  box-shadow: 1px 1px 6px 1px rgba(51, 59, 64, 0.1);
}
#signup_loginModal .modal-body .signup_area .third_party img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
#signup_loginModal .modal-body .signup_area .signup_form_trigger {
  display: block;
  width: 160px;
  background: #00A86B;
  color: #ffffff;
  margin: 20px auto;
  border-radius: 5px;
  text-align: center;
  padding: 2px 0;
  text-decoration: none;
}
#signup_loginModal .modal-body .signup_form, #signup_loginModal .modal-body .signin_form {
  display: none;
}
#signup_loginModal .modal-body .signup_form .warning_text, #signup_loginModal .modal-body .signin_form .warning_text {
  width: 300px;
  margin: 0 auto;
  text-align: center;
}
#signup_loginModal .modal-body .signup_form .warning_text p, #signup_loginModal .modal-body .signin_form .warning_text p {
  color: tomato;
  font-size: 12px;
  line-height: 15px;
  margin: 0;
}
#signup_loginModal .modal-body .signup_form input, #signup_loginModal .modal-body .signin_form input {
  margin: 15px auto;
  display: block;
  width: 230px;
  border: 2px solid rgba(51, 59, 64, 0.2);
  border-radius: 5px;
  padding: 5px 15px;
  outline: 0;
  font-size: 16px;
}
#signup_loginModal .modal-body .signup_form .submit_btn, #signup_loginModal .modal-body .signin_form .submit_btn {
  display: block;
  width: 100px;
  background: #00A86B;
  color: #ffffff;
  margin: 20px auto;
  border-radius: 5px;
  text-align: center;
  padding: 2px 0;
  border: 0;
  outline: 0;
  cursor: pointer;
}
#signup_loginModal .modal-body .signin_form .third_party {
  display: block;
  width: 230px;
  margin: 15px auto;
  border: 2px solid rgba(51, 59, 64, 0.2);
  border-radius: 5px;
  font-size: 16px;
  padding: 5px 0 5px 20px;
  color: #333b40;
  text-decoration: none;
  transition: all 0.2s;
}
#signup_loginModal .modal-body .signin_form .third_party:hover {
  box-shadow: 1px 1px 6px 1px rgba(51, 59, 64, 0.1);
}
#signup_loginModal .modal-body .signin_form .third_party img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
#signup_loginModal .modal-body .signin_trigger_area {
  display: none;
  text-align: center;
  font-size: 17px;
}
#signup_loginModal .modal-body .signin_trigger_area .signin_trigger {
  color: #00A86B;
  font-weight: 700;
}
#signup_loginModal .modal-body .signup_trigger_area {
  display: none;
  text-align: center;
  font-size: 17px;
}
#signup_loginModal .modal-body .signup_trigger_area .signup_trigger {
  color: #00A86B;
  font-weight: 700;
}
#signup_loginModal .modal-body .active {
  display: block;
}

@media (min-width: 992px) {
  #signup_loginModal .modal-lg {
    max-width: 920px;
  }
  #signup_loginModal .modal-body {
    background: url(../images/signup_modal_bg.jpg);
  }
}
@media (max-width: 576px) {
  #signup_loginModal .modal-body .description br {
    display: none;
  }
}
/* signup_login Modal end */
/* footer style start */
footer {
  background: #ffffff;
  padding: 60px 0 0;
  border-top: 1px solid #cccccc;
  /* form starting stylings ------------------------------- */
  /* LABEL ======================================= */
  /* active state */
  /* BOTTOM BARS ================================= */
  /* active state */
  /* active state */
  /* ANIMATIONS ================ */
  /* form style end */
}
footer h4 {
  font-weight: bold;
  font-size: 21px;
}
footer a {
  color: #333b40;
  transition: all 0.7s;
  font-size: 14px;
}
footer a:hover {
  color: #00A86B;
}
footer ul {
  list-style-type: none;
}
footer ul li {
  margin-bottom: 3px;
}
footer ul li a {
  display: inline-block;
  color: #333b40;
  transition: all 0.7s;
  font-size: 14px;
}
footer ul li a:hover {
  color: #00A86B;
}
footer p {
  line-height: 28px;
  font-size: 14px;
  margin-bottom: 0;
}
footer p a {
  display: inline-block;
  margin-bottom: 0;
}
footer button {
  outline: 0 !important;
  padding: 10px 50px;
  border: none;
  border-radius: 30px;
  background: #00A86B;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 12px 12px 24px rgba(0, 168, 107, 0.22);
}
footer .footer_bottom {
  background: #F3F3F3;
  text-align: center;
  padding: 10px 0;
  margin-top: 50px;
}
footer .footer_bottom p {
  margin: 0;
  font-size: 12px;
}
footer .group {
  position: relative;
  margin-bottom: 30px;
}
footer input, footer textarea {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  background: none;
  color: #333b40;
  border-bottom: 1px solid #788994;
}
footer input:focus, footer textarea:focus {
  outline: none;
}
footer label {
  color: #95a2aa;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
footer input:focus ~ label, footer input:valid ~ label, footer textarea:focus ~ label, footer textarea:valid ~ label {
  top: -20px;
  font-size: 14px;
}
footer .bar {
  position: relative;
  display: block;
  width: 100%;
}
footer .bar:before, footer .bar:after {
  content: "";
  height: 1px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #fff;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
footer .bar:before {
  left: 50%;
}
footer .bar:after {
  right: 50%;
}
footer input:focus ~ .bar:before, footer input:focus ~ .bar:after, footer textarea:focus ~ .bar:before, footer textarea:focus ~ .bar:after {
  width: 50%;
}
footer input:focus ~ .highlight, footer textarea:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}
@-webkit-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-moz-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}

/* footer style end */
/* cookie_popup style start */
.cookie_popup {
  background: #333b40;
  position: fixed;
  right: 15px;
  bottom: 15px;
  max-width: 290px;
  width: 100%;
  padding: 20px 0;
  color: #ffffff;
  transition: all 1.5s;
  z-index: 99;
}
.cookie_popup p {
  font-size: 14px;
  margin-bottom: 16px;
}
.cookie_popup p a {
  color: #fff;
  text-decoration: underline;
}
.cookie_popup .button {
  background: #00A86B;
  color: #ffffff;
  text-decoration: none;
  padding: 0 5px;
  display: inline-block;
  transition: all 0.2s;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.cookie_popup .button:hover {
  box-shadow: 0 1px 12px 1px rgba(51, 59, 64, 0.3);
}

.cookie_hide {
  right: -100%;
}

/* cookie_popup style end */
/* twitter_trigger_section start */
.twitter_trigger_section {
  background: #566DFE;
  padding: 16px 0;
}
.twitter_trigger_section .content {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.twitter_trigger_section .content h3 {
  color: #fff;
  font-weight: 300;
  margin: 0;
}
.twitter_trigger_section .content .twitter_link {
  display: inline-block;
  height: 80px;
  line-height: 87px;
  width: 80px;
  border-radius: 50%;
  background: #fff;
  color: #566DFE;
  text-align: center;
  font-size: 50px;
  text-decoration: none;
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  header .nav_top_content .howitworks {
    display: none;
  }
  .twitter_trigger_section .content h3 {
    margin-bottom: 16px;
  }

  .twitter_trigger_section .content .twitter_link {
    margin-left: 0;
  }
}
/* twitter_trigger_section end */
.border-transparent {
  border-color: transparent !important;
}
.glass_efect {
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.glass_efect:before {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  /*backdrop-filter: blur(12px) saturate(100%) contrast(70%) brightness(120%);
  -webkit-backdrop-filter: blur(12px) saturate(100%) contrast(70%) brightness(120%);*/
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}

/*# sourceMappingURL=master.css.map */
