  @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
.gr-landscape, .footer::before {
  background-image: linear-gradient(90deg, #5bcae9, #94c83b, #f7b71e);
}

.gr-portrait {
  background-image: linear-gradient(0deg, #5bcae9, #94c83b, #f7b71e);
}

.p-style-1 {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
}

.p-style-2 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.p-style-3 {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-width: 320px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
}

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

a {
  color: #000;
  font-weight: 500;
  transition: all 0.5s ease;
}

a:hover, a:focus {
  color: #404040;
  text-decoration: none;
}

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

.section-page {
  padding-top: 80px;
}

@media (max-width: 767.98px) {
  .section-page {
    padding-top: 50px;
  }
}

@media (max-width: 575.98px) {
  .section-page {
    padding-top: 40px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

h1 {
  font-size: 84px;
  font-size: 5.25rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 56px;
    font-size: 3.5rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 68px;
  font-size: 4.25rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  h2 {
    font-size: 46px;
    font-size: 2.875rem;
  }
}

@media (max-width: 575.98px) {
  h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 58px;
  font-size: 3.625rem;
  line-height: 1.12;
}

@media (max-width: 991.98px) {
  h3 {
    font-size: 38px;
    font-size: 2.375rem;
  }
}

@media (max-width: 575.98px) {
  h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

h4 {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.14;
}

@media (max-width: 991.98px) {
  h4 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  h4 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

h5 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
}

@media (max-width: 991.98px) {
  h5 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media (max-width: 575.98px) {
  h5 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

h6 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.36;
}

@media (max-width: 991.98px) {
  h6 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  h6 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-style-1 {
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.47;
}

.p-style-2 {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.47;
}

.btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 20px;
  background-color: #50dbff;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  overflow: hidden;
  border: 0;
  transition: all .3s ease-in-out;
}

.btn::before {
  content: attr(data-hover);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: inherit;
  text-align: center;
  opacity: 0;
  transform: translate(-100%, 0);
  transition: all .3s ease-in-out;
}

.btn:hover, .btn:focus {
  color: #000;
}

.btn:hover::before, .btn:focus::before {
  opacity: 1;
  transform: translate(0, 0);
}

.btn:hover .btn__text, .btn:focus .btn__text {
  opacity: 0;
  transform: translate(100%, 0);
}

.btn:focus {
  outline: none;
}

.btn__text {
  display: block;
  transition: all .3s ease-in-out;
}

.btn--outline {
  background-color: transparent;
  border: 2px solid #50dbff;
  color: #50dbff;
}

.btn--outline::before {
  color: #000;
}

.btn--outline:hover, .btn--outline:focus {
  background-color: #50dbff;
}

.btn--outline:hover .btn__text, .btn--outline:focus .btn__text {
  color: #50dbff;
}

.btn.active .btn__text {
  opacity: 0;
}

.btn.active .btn-loader {
  opacity: 1;
}

.btn[disabled] {
  background-color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}

.btn[disabled]::before {
  opacity: 0;
}

.btn-close {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: none;
}

.btn-close::before, .btn-close::after {
  content: '';
  position: absolute;
  left: 7px;
  width: 60%;
  height: 2px;
  background-color: #000;
}

.btn-close::before {
  transform: rotate(45deg);
}

.btn-close::after {
  transform: rotate(-45deg);
}

.btn-close:focus {
  outline: none;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #002D5C;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 50em;
  transition: all .25s ease;
  -webkit-animation: loading 1s linear infinite;
          animation: loading 1s linear infinite;
  opacity: 0;
}

@-webkit-keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

.footer {
  position: relative;
  padding: 39px 0 0;
  background-color: #2E2D2C;
}

@media (max-width: 767.98px) {
  .footer {
    padding: 0;
  }
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 39px;
}

@media only screen and (min-width: 1360px) {
  .footer .container {
    max-width: 1378px;
    position: relative;
    padding-bottom: 26px;
  }
  .footer .container:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    left: calc(50% - -3px);
    top: 0;
    background: #434343;
  }
}

.footer .bottom-footer {
  border-top: 1px solid #434343;
  padding: 21px 0;
}

.footer .bottom-footer .container {
  padding-bottom: 0;
}

.footer .bottom-footer .container:before {
  display: none;
}

.footer-subscribe {
  margin-bottom: 37px;
  padding-top: 81px;
}

.footer-subscribe__title {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
}

.footer-subscribe .form-info {
  color: #ffffff;
  font-size: 15px;
}

.footer-subscribe form {
  max-width: 425px;
}

.footer-subscribe form .form-group {
  position: relative;
  display: flex;
}

.footer-subscribe form input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #f7b71e;
  color: #ffffff;
  border-radius: 4px 0 0 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  background: transparent;
  font-weight: 400;
}

.footer-subscribe form input[type="email"]::-moz-placeholder {
  color: #979797;
}

.footer-subscribe form input[type="email"]::placeholder {
  color: #979797;
}

.footer-subscribe form input[type="email"]:focus {
  outline: none;
}

.footer-subscribe form button[type="submit"] {
  flex-shrink: 0;
  background-color: transparent;
  border: 1px solid #f7b71e;
  margin-left: -1px;
  padding: 10px 26px;
  color: #ffffff !important;
  border-radius: 0 4px 4px 0;
  text-transform: uppercase;
}

.footer-subscribe form button[type="submit"]:hover {
  background: #f7b71e;
  color: #111;
}

.footer-subscribe form button[type="submit"] svg {
  width: 26px;
  height: 19px;
}

.footer-socials {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  line-height: 1;
}

.footer-socials__item {
  margin-right: 20px;
}

.footer-socials__item:last-child {
  margin-right: 0;
}

.footer-socials__item a {
  font-size: 23px;
  font-size: 1.4375rem;
  color: #111;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#86c977+0,a9c440+100 */
  background: #86c977;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #86c977 0%, #a9c440 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#86c977', endColorstr='#a9c440',GradientType=1 );
  /* IE6-9 */
}

.footer-socials__item a:hover, .footer-socials__item a:focus {
  color: #ffffff;
}

.footer-socials__item:first-child a {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#64cbdb+0,7bc99c+100 */
  background: #64cbdb;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #64cbdb 0%, #7bc99c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#64cbdb', endColorstr='#7bc99c',GradientType=1 );
  /* IE6-9 */
}

.footer-socials__item:last-child a {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#bbc13e+0,f0b633+100 */
  background: #bbc13e;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #bbc13e 0%, #f0b633 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bbc13e', endColorstr='#f0b633',GradientType=1 );
  /* IE6-9 */
}

.footer-link {
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media screen and (max-width: 992px) {
  .footer-link {
    justify-content: center;
  }
}

.footer-link li {
  font-weight: 400;
  color: #909090;
  list-style-type: none;
  margin: 0 12px;
}

.footer-link a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #909090;
  text-decoration: underline;
}

.footer-link a:hover, .footer-link a:focus {
  color: #52c7e7;
}

.footer-menu {
  margin: 0 0 55px;
  padding: 76px 0 0;
  list-style: none;
}

@media screen and (max-width: 992px) {
  .footer-menu {
    padding-top: 0;
  }
}

@media (max-width: 991.98px) {
  .footer-menu {
    margin-top: 50px;
  }
}

@media (max-width: 575.98px) {
  .footer-menu {
    -moz-column-count: 1;
         column-count: 1;
    margin: 30px 0;
  }
}

.footer-menu li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin-bottom: 31px;
  padding-left: 54px;
  position: relative;
}

@media screen and (max-width: 992px) {
  .footer-menu li {
    padding-left: 44px;
  }
}

.footer-menu li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 33px;
  width: 26px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 992px) {
  .footer-menu li:before {
    top: -3px;
  }
}

.footer-menu li.join-menu:before {
  background-image: url("/wp-content/themes/bslm-master/theme-bslm/dist/img/join-icon.png");
}

.footer-menu li.lifestyle-menu:before {
  background-image: url("/wp-content/themes/bslm-master/theme-bslm/dist/img/lifestyle-icon.png");
}

.footer-menu li.register-menu:before {
  background-image: url("/wp-content/themes/bslm-master/theme-bslm/dist/img/register-icon.png");
}

.footer-menu li.contact-menu:before {
  background-image: url("/wp-content/themes/bslm-master/theme-bslm/dist/img/chat-icon.png");
}

.footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-menu a {
  color: #B4F0FF;
  font-weight: bold;
  font-size: 21px;
  letter-spacing: 0.7px;
}

@media screen and (max-width: 992px) {
  .footer-menu a {
    font-size: 18px;
  }
}

.copy {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #909090;
}

@media screen and (max-width: 992px) {
  .copy {
    text-align: center;
    margin-bottom: 15px;
  }
}

.header {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  padding: 10px 40px;
  background-color: #fff;
}

@media (max-width: 575.98px) {
  .header {
    padding: 10px 15px;
  }
}

.header__login {
  margin-left: 30px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #404040;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .header__login {
    display: none;
  }
}

.header__login .fa {
  font-size: 13px;
}

.header__login:hover, .header__login:focus {
  color: #f7b71e;
}

@media (max-width: 1199.98px) {
  .header__logo {
    margin-left: 20px;
  }
}

@media (max-width: 767.98px) {
  .header__logo {
    width: 200px;
  }
}

.header__search {
  margin-left: 25px;
}

.header__search-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f7b71e;
}

.header__search-toggle::before, .header__search-toggle::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #000;
  opacity: 0;
  transition: all 0.5s ease;
}

.header__search-toggle::before {
  transform: rotate(45deg);
}

.header__search-toggle::after {
  transform: rotate(-45deg);
}

.header__search-toggle:hover svg, .header__search-toggle:focus svg {
  fill: #fff;
}

.header__search-toggle.active::before, .header__search-toggle.active::after {
  opacity: 1;
}

.header__search-toggle.active svg {
  opacity: 0;
}

.header__search-toggle svg {
  width: 18px;
  height: 18px;
  transition: all 0.5s ease;
}

.header__search-body {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  max-width: 650px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.header__search-body.open {
  opacity: 1;
  visibility: visible;
}

.header__search-body form {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.header__search-body form .form-group {
  margin-top: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 12px;
  height: 20px;
  margin-top: -10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

.nav {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: none;
}

@media (max-width: 1199.98px) {
  .nav-toggle {
    display: block;
  }
}

.nav-toggle:hover, .nav-toggle:focus {
  outline: none;
}

.nav-toggle:hover .nav-toggle__line::before, .nav-toggle:hover .nav-toggle__line::after, .nav-toggle:focus .nav-toggle__line::before, .nav-toggle:focus .nav-toggle__line::after {
  width: 100%;
}

.nav-toggle__line {
  position: relative;
  display: block;
  width: 60%;
  height: 2px;
  margin: 0 auto;
  background-color: #000;
}

.nav-toggle__line::before, .nav-toggle__line::after {
  content: '';
  position: absolute;
  left: 0;
  height: 2px;
  width: 80%;
  background-color: inherit;
  transition: all 0.5s ease;
}

.nav-toggle__line::before {
  top: -6px;
}

.nav-toggle__line::after {
  top: 6px;
}

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

@media (max-width: 1199.98px) {
  .nav-list {
    display: none;
  }
}

.nav-list li .dropdown-menu {
  list-style: none;
}

.nav-list li > .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  display: none;
}

.nav-list li > .dropdown-menu::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  box-shadow: 0 6px 6px 7px rgba(0, 0, 0, 0.44);
}

.nav-list li > .dropdown-menu.show {
  display: flex;
}

.nav-list li.description span.sub {
  display: inline;
}

.nav-list > li {
  padding: 0 25px;
  border-right: 1px solid #e1e1e1;
}

@media only screen and (max-width: 1370px) {
  .nav-list > li {
    padding: 0 15px;
  }
}

.nav-list > li > a {
  position: relative;
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e1e1e1;
  opacity: 0;
  transition: all 0.5s ease;
}

.nav-list > li > a:hover::after, .nav-list > li > a:focus::after {
  opacity: 1;
}

.nav-list a {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #404040;
  text-transform: lowercase;
}

@media only screen and (max-width: 1370px) {
  .nav-list a {
    font-size: 16px;
    font-size: 1rem;
  }
}

.nav-list a:hover, .nav-list a:focus {
  color: #f7b71e;
}

.nav-list .megamenu .dropdown-menu {
  padding: 60px 0 65px;
}

.nav-list .megamenu .dropdown-menu .megamenu-column {
  width: calc(100% / 4);
  text-align: center;
}

.nav-list .megamenu .dropdown-menu .megamenu-column:last-child ul {
  border: 0;
}

.nav-list .megamenu .dropdown-menu .megamenu-column ul {
  height: 100%;
  margin: 0;
  padding: 10px 0 40px 0;
  list-style: none;
  border-right: 1px solid #e1e1e1;
}

.nav-list .megamenu .dropdown-menu .megamenu-column ul li {
  margin-bottom: 25px;
}

.nav-list .megamenu .dropdown-menu .megamenu-column ul li:last-child {
  margin-bottom: 0;
}

.nav-list .megamenu .dropdown-menu .megamenu-column ul a {
  font-size: 21px;
  font-size: 1.3125rem;
}

.nav-list .megamenu .featured-image a {
  display: none;
}

.nav-list span.sub {
  display: none;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 320px;
  padding: 70px 20px 40px;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(-120%);
  transition: all 0.5s ease;
}

@media (max-width: 1199.98px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu .btn-close {
  position: absolute;
  top: 20px;
  right: 10px;
}

.mobile-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.mobile-menu-list li {
  position: relative;
  margin-bottom: 10px;
}

.mobile-menu-list > li > ul {
  margin-left: 20px;
}

.mobile-menu-list a {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #404040;
  text-transform: lowercase;
}

@media only screen and (max-width: 1370px) {
  .mobile-menu-list a {
    font-size: 16px;
    font-size: 1rem;
  }
}

.mobile-menu-list a:hover, .mobile-menu-list a:focus {
  color: #f7b71e;
}

.mobile-menu-list .dropdown-toggle.active .caret {
  transform: rotate(225deg);
}

.mobile-menu-list .dropdown-toggle .caret {
  position: absolute;
  top: 5px;
  right: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.mobile-menu-list .dropdown-menu {
  display: none;
  padding-top: 10px;
}

.mobile-menu-list span.sub {
  display: none;
}

.mobile-menu-list .featured-image a {
  display: none;
}

.mobile-menu .header__login {
  margin-left: 0;
}

@media (max-width: 575.98px) {
  .mobile-menu .header__login {
    display: inline;
  }
}

.form-group {
  margin-bottom: 35px;
}

@media (max-width: 767.98px) {
  .form-group {
    margin-bottom: 20px;
  }
}

.form-group--btn {
  margin-bottom: 0;
}

.form-group--btn .btn {
  margin-top: 0 !important;
}

.form-label {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #283440;
  text-transform: uppercase;
}

.form-field {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e1e1e1;
  box-shadow: none;
  border-radius: 0;
  transition: all 0.5s ease;
}

.form-field:hover, .form-field:focus {
  border-color: #50dbff;
  outline: none;
}

.form-field--textarea {
  height: 200px;
}

@media only screen and (min-width: 1360px) {
  .container {
    max-width: 1330px;
  }
}

.news-block + .events-block {
  padding-top: 0;
}

.events-block + .news-block {
  padding-top: 0;
}

.wp-caption-text {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  color: #464646;
}
