* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
  font-family: var(--body-font-family);
  font-weight: 400;
  color: var(--bs-dark);
}

header .container, main .container {
  max-width: 1311px;
}

:is(h1, h2, h3, h4) {
  font-family: var(--heading-font-family);
}

h1 {
  font-weight: 600;
}

p {
  font-family: var(--body-font-family);
  line-height: 2rem;
}

h1:first-letter, h2:first-letter, h3:first-letter, h4:first-letter, p:first-letter, a:first-letter, li:first-letter {
  text-transform: uppercase;
}

a {
  display: inline-block;
}

/*=================== Header CSS ========================*/
header.top__header {
  position: relative;
}

.brand__outlet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: wrap row;
          flex-flow: wrap row;
  margin-bottom: 0.5rem;
}

.brand__outlet [class*='col'] {
  padding: 0.3rem 0;
}

.brand__outlet [class*='col']:first-child {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5 0 50%;
          flex: 0.5 0 50%;
}

.__left_brand_name {
  position: relative;
}

.__right_brand_name ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.brand_links :is(ul) {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: wrap row;
          flex-flow: wrap row;
  margin-bottom: 0;
  padding-left: 0;
}

.brand_links > ul > li {
  font-size: 0.76rem;
  padding: 0 0.2rem;
  position: relative;
  margin-left: 0.3rem;
}

.brand_links > ul li:first-child {
  margin-left: 0;
}

.brand_links > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.brand_links > ul li > a {
  color: var(--bs-dark);
  text-decoration: none;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  --webkit-transition:all linear 0.3s;
  --moz-transition:all linear 0.3s;
  --o-transition:all linear 0.3s;
}

.brand_links > ul li i {
  font-size: 1rem;
}

.brand_links > ul li > a:hover, .brand_links > ul li > a:active, .brand_links > ul li > a:focus {
  text-decoration: underline;
}

/*================ rotation_strip =============*/
.rotation_strip {
  background-color: var(--flip-bg);
  padding: 0.5rem;
}

.flip_content_block {
  position: relative;
  min-height: 22px;
}

.flip_content_block > .flip_slide {
  position: absolute;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  width: 100%;
}

.flip_content_block > .flip_slide.flip__active {
  opacity: 1;
}

.flip_content_block > .flip_slide > p {
  text-align: center;
  margin-bottom: 0;
  color: var(--bs-white);
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.flip_content_block > .flip_slide > p a {
  color: var(--bs-white);
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

/*======================== Logo CSS ============================*/
.header__seacrch_block {
  position: relative;
}

.header_search_form {
  width: 100%;
}

.header_search_form form input[type='text'] {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid var(--bs-gray-500);
  border-radius: 0;
  padding: 0;
  padding-bottom: 0.5rem;
}

.header_search_form form input[type='text']::-webkit-input-placeholder {
  text-transform: capitalize;
  color: var(--bs-dark);
  font-size: 0.9rem;
}

.header_search_form form input[type='text']:-ms-input-placeholder {
  text-transform: capitalize;
  color: var(--bs-dark);
  font-size: 0.9rem;
}

.header_search_form form input[type='text']::-ms-input-placeholder {
  text-transform: capitalize;
  color: var(--bs-dark);
  font-size: 0.9rem;
}

.header_search_form form input[type='text']::placeholder {
  text-transform: capitalize;
  color: var(--bs-dark);
  font-size: 0.9rem;
}

#top_submit_btn {
  border: none;
  background: transparent;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  color: var(--bs-gray-500);
  font-size: 1.2rem;
}

#top_submit_btn:after {
  font-family: "FontAwesome";
  content: "\f002";
}

.property_logo_block {
  padding: 1rem 0 0;
}

.header__logo_block {
  position: relative;
  widht: 100%;
}

.header_logo_text {
  width: 100%;
  display: block;
  text-align: center;
}

.header_logo_text > a {
  text-decoration: none;
  color: var(--bs-dark);
}

.header_logo_text > a > h2, a.navbar-brand {
  font-family: var(--logo-font-family);
  font-size: 1.5rem;
  letter-spacing: 28px;
  text-transform: uppercase;
  -webkit-transform: scaleY(2);
          transform: scaleY(2);
  font-weight: 600;
  margin-bottom: 0;
}

.header__client_panel {
  position: relative;
  display: block;
}

.user_panel_links {
  width: 100%;
}

ul.user_panel_nav > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

ul.user_panel_nav > li a i {
  display: block;
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
}

ul.user_panel_nav > li a:hover {
  text-decoration: none;
}

.header_primary_menu {
  position: relative;
}

.navbar {
  padding-bottom: 0;
  border-bottom: 1px solid var(--bs-gray-500);
}

.navbar-dark .navbar-toggler-icon {
  -webkit-filter: invert(1);
          filter: invert(1);
  min-width: 30px;
}

a.navbar-brand {
  letter-spacing: inherit;
}

.navbar-dark .navbar-brand, .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
  color: var(--bs-dark);
}

.navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--bs-dark);
}

.coombine__menu > ul > li {
  font-size: 0.9rem;
  margin-left: 1rem;
  padding: 1rem 0.5rem;
}

.coombine__menu > ul > li:first-child {
  margin-left: 0;
}

.coombine__menu > ul > li a {
  padding: 0 1rem;
}

.coombine__menu > ul > li:hover, .coombine__menu > ul > li:focus {
  -webkit-box-shadow: inset 0 -3px 0px -1px var(--bs-gray-600);
          box-shadow: inset 0 -3px 0px -1px var(--bs-gray-600);
}

ul.dropdown__links {
  position: absolute;
  width: 100%;
  padding: 0.5rem;
  left: 0;
  top: 62px;
  display: none;
  opacity: 0;
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
  z-index: -999;
  background-color: var(--bs-white);
}

ul.dropdown__links {
  padding: 0 2rem;
  list-style: none;
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
}

.coombine__menu > ul > li:hover ul.dropdown__links {
  display: block;
  opacity: 1;
  z-index: 999;
}

.dropdown_item_imgblock {
  padding: 1rem 0;
}

ul.dropdown__links > li:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.image_roleover img {
  max-width: 100%;
  width: 100%;
}

.image_roleover > a {
  text-decoration: none;
  color: var(--bs-dark);
  font-weight: 600;
  font-size: 0.75rem;
}

.dropdown_list_second_items {
  width: 100%;
}

.dropdown_second_list_items > h4 {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.8rem 0;
}

.dropdown_list_second_items > ul {
  list-style: none;
}

.dropdown_second_list_items > ul {
  list-style: none;
  padding-left: 0;
}

.dropdown_second_list_items > ul > li {
  padding: 0.2rem 0rem;
  font-size: 0.8rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-left: 0;
}

.dropdown_second_list_items > ul > li > a {
  padding: 0;
  text-decoration: none;
  color: var(--bs-dark);
}

ul.secondary_menu_links {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

ul.secondary_menu_links > li {
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  margin: 0 auto;
}

.second_baner_outlet {
  background-color: var(--second-banner-bg);
  padding: 1rem 0;
}

ul.second_banner_content {
  margin-bottom: 0;
  list-style: none;
}

.second_banner_content > li {
  padding: 0 1rem;
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
}

.second_banner_content > li:first-child {
  text-transform: uppercase;
}

.second_banner_content > li:first-child:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: var(--bs-dark);
}

.second_banner_content > li a {
  color: var(--bs-dark);
  text-decoration: none;
}

.top_banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 99;
}

.banner-text {
  position: absolute;
  top: 40px;
  width: 100%;
  left: 0;
}

.banner-text > h2 {
  font-weight: 500;
}

.banner-text > h4 {
  font-weight: 500;
}

.top_banner img {
  max-width: 100%;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.btn-format {
  border-radius: 0px;
  font-size: 0.9rem;
}

.more_link > a {
  text-decoration: none;
  font-size: 0.9rem;
}

.contents__section {
  padding: 1.2rem 0;
}

.contents__section > h2 {
  margin-bottom: 0;
  font-weight: 300;
  padding: 1rem 0;
  font-size: 1.8rem;
}

.images_section {
  position: relative;
}

.images_section > figure {
  margin-bottom: 0;
}

.images_section > figure > img {
  max-width: 100%;
  width: 100%;
}

.img_section_content {
  position: absolute;
  margin-top: 2rem;
  width: 100%;
  padding: 0.5rem;
}

.img_section_content h2 {
  color: var(--bs-white);
  font-weight: 400;
}

.img_section_content h4 {
  color: var(--bs-white);
  font-size: 0.9rem;
  font-weight: 400;
}

.img_section_content h4 > a {
  text-decoration: none;
  color: var(--bs-white);
  font-weight: 600;
}

.curl__content, .wakeup__content {
  top: 80px;
  padding-left: 100px;
}

.curl__items, .wakeup__items {
  bottom: 0;
}

.ready_set_content {
  top: 0;
  width: 100%;
  text-align: center;
}

.carouser_thumb_slider button {
  font-size: 2rem !important;
  -webkit-transform: scaleY(1.2) scaleX(0.7);
          transform: scaleY(1.2) scaleX(0.7);
}

.black_artists_outlet {
  width: 100%;
}

.black_artists_block {
  display: block;
  width: 100%;
}

.black-artists-bg {
  background-color: var(--black-artist-bg);
}

.black_artists_logo {
  padding: 2rem 2rem;
}

.black_artists_logo .header_logo_text h2 {
  font-size: 1rem;
}

.black_history_wrapper {
  background-color: var(--black-history-bg);
  color: var(--black-history-text);
}

.black_history_content > h2 {
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 400;
}

.black_history_content > h4 {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0;
}

.black_history_footer {
  background-color: var(--black-history-footer-bg);
}

.black_history_footer_items {
  text-align: center;
}

.black_history_footer_items > ul {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.black_history_footer_items > ul > li {
  text-transform: uppercase;
}

.our_impact_wrap {
  background-color: var(--our-impact-bg);
  padding: 5rem 0;
}

.our_impact_wrap p {
  line-height: 3.5rem;
}

.real_life_outlet {
  background-color: var(--real-life-bg);
  margin: 1rem 0;
}

/*====================== Footer ===========================*/
.exclusions {
  padding: 2rem 0;
  background-color: var(--exclusions-bg);
}

.exclusions h2 {
  margin-bottom: 0;
  font-size: 1.2rem;
  text-align: right;
}

.exclusions h2 > a {
  color: var(--bs-dark);
}

.footer__container {
  padding-top: 3rem;
  background-color: var(--footer-bg);
}

.footer__left_block, footer__right_block {
  width: 100%;
  position: relative;
}

.footer__links > ul {
  list-style: none;
  padding-left: 0;
}

.footer__links > ul > li {
  font-size: 0.8rem;
  line-height: 2rem;
}

.footer__links > ul > li.footer-heading, .footer_typography > h4 {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer__links > ul > li > a {
  text-decoration: none;
  color: var(--bs-dark);
}

.subscribe_block {
  width: 100%;
}

.footer_typography {
  font-size: 0.8rem;
}

.footer_form {
  position: relative;
}

.footer_form input[type='email'] {
  border-radius: 0px;
}

#footer__submit {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  height: 100%;
  padding: 0 2rem;
  background: var(--bs-dark);
  color: #fff;
  text-transform: uppercase;
}

.footer__socialmedia ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding-left: 0;
}

.footer__socialmedia ul > li {
  margin-left: 1rem;
  font-size: 1.2rem;
}

.footer__socialmedia ul > li:first-child {
  margin-left: 0;
}

.footer__socialmedia ul > li > a {
  color: var(--bs-dark);
  text-decoration: none;
}

.copyright {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.copyright p {
  margin-bottom: 0;
  text-align: center;
  font-size: 0.8rem;
}
/*# sourceMappingURL=myl-style.css.map */