/*--------------------------------------------------------------
# Font Family
--------------------------------------------------------------*/

@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;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');


.ActionNBA-Light-Web {
    font-family: "Action NBA  Web";
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
  }
  
  .ActionNBA-LightItalic-Web {
    font-family: "Action NBA  Web";
    font-weight: 300;
    font-style: italic;
    font-stretch: normal;
  }
  
  .ActionNBA-Medium-Web {
    font-family: "Action NBA  Web";
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
  }
  
  .ActionNBA-MediumItalic-Web {
    font-family: "Action NBA  Web";
    font-weight: 500;
    font-style: italic;
    font-stretch: normal;
  }
  
  .ActionNBA-Bold-Web {
    font-family: "Action NBA  Web";
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
  }
  
  .ActionNBA-BoldItalic-Web {
    font-family: "Action NBA  Web";
    font-weight: 700;
    font-style: italic;
    font-stretch: normal;
  }
  
  @font-face {
  font-family: "Action NBA  Web";
  src: url("../fonts/ActionNBA-Light-Web.eot");
    src: url("../fonts/ActionNBA-Light-Web.eot?#iefix") format("embedded-opentype"),
         url("../fonts/ActionNBA-Light-Web.woff2") format("woff2"),
         url("../fonts/ActionNBA-Light-Web.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  }
  
  @font-face {
  font-family: "Action NBA  Web";
  src: url("../fonts/ActionNBA-LightItalic-Web.eot");
    src: url("../fonts/ActionNBA-LightItalic-Web.eot?#iefix") format("embedded-opentype"),
         url("../fonts/ActionNBA-LightItalic-Web.woff2") format("woff2"),
         url("../fonts/ActionNBA-LightItalic-Web.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  }
  
  @font-face {
  font-family: "Action NBA  Web";
  src: url("../fonts/ActionNBA-Medium-Web.eot");
    src: url("../fonts/ActionNBA-Medium-Web.eot?#iefix") format("embedded-opentype"),
         url("../fonts/ActionNBA-Medium-Web.woff2") format("woff2"),
         url("../fonts/ActionNBA-Medium-Web.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  }
  
  @font-face {
  font-family: "Action NBA  Web";
  src: url("../fonts/ActionNBA-MediumItalic-Web.eot");
    src: url("../fonts/ActionNBA-MediumItalic-Web.eot?#iefix") format("embedded-opentype"),
         url("../onts/ActionNBA-MediumItalic-Web.woff2") format("woff2"),
         url("../fonts/ActionNBA-MediumItalic-Web.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  }
  
  @font-face {
  font-family: "Action NBA  Web";
  src: url("../fonts/ActionNBA-Bold-Web.eot");
    src: url("../fonts/ActionNBA-Bold-Web.eot?#iefix") format("embedded-opentype"),
         url("../fonts/ActionNBA-Bold-Web.woff2") format("woff2"),
         url("../fonts/ActionNBA-Bold-Web.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  }
  
  @font-face {
  font-family: "Action NBA  Web";
  src: url("../fonts/ActionNBA-BoldItalic-Web.eot");
    src: url("../fonts/ActionNBA-BoldItalic-Web.eot?#iefix") format("embedded-opentype"),
         url("../fonts/ActionNBA-BoldItalic-Web.woff2") format("woff2"),
         url("../fonts/ActionNBA-BoldItalic-Web.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  }

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Roboto', sans-serif;
  color: #222222;
}

a {
  color: #1d428a;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #6f6e6e;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3e9bdd;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 5px 0;
  border-bottom: 1px solid #e6f2fb;
  position: relative;
}

#carousel-area, #main, #footer {
  z-index: 997;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  color: #1d428a;
}

#header .logo span{
  font-family: "Action NBA  Web";
  font-size: 2.4rem;
  margin-left: 1.7rem;
  display: inline-block;
  line-height: 30px;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 65px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .carousel-inner .carousel-item > img {
    min-height: 560px;
  }
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Header Inner Section
--------------------------------------------------------------*/

.header-inner.top-section { 
  padding: .5rem 0;
  font-size: 14px;
  background: #2e58ac;
  color: #fff;
}
.img_icons { 
  display: inline;
  vertical-align: middle;
  margin-right: 5px;
}
.chat-link {
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}  
.top-links, .top-links:hover, .top-links:active, .top-links:focus {
  color: #fff;
  text-decoration: none;
}
.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d" !important;
}

@media screen and (max-width: 768px) {
  .header-inner.top-section .row { display: flex; align-items: center;}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 14px 0 14px 50px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #124265;
  transition: 0.3s;
  /* font-size: 1rem; */
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  text-transform: capitalize;
  font-weight: 500;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #c8102e;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
  transition: 0.3s;
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #124265;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #2487ce;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 18px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #000000;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #124265;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #2487ce;
  text-decoration: none;
}

/* .mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
} */

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(10, 38, 58, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
}

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  height: 4px;
  width: 40%;
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30%;
  background: #c0c0c0;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #2487ce;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #2487ce;
}


/*--------------------------------------------------------------
# Audio Connections
--------------------------------------------------------------*/

.audio {
background: #f2f2f2;
line-height: 2;
}

.audio h2 {
  font-weight: 400;
  text-transform: none;
  color: #222222;
  font-family: "Action NBA  Web";
  font-size: 44px;
}

.audio h4 {
  color: #243a83;
  font-weight: 300;
}


/*--------------------------------------------------------------
# Audio Connections
--------------------------------------------------------------*/

.faq.guidelines  {
  background: #f2f2f2;
  }

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq {
  background:#dedede;
}

.faq h2 {
  font-weight: 400;
  text-transform: none;
  color: #222222;
  font-family: "Action NBA  Web";
  font-size: 44px;
}

.faq .faq-list, .faq .guide {
  padding: 0 20px;
}

.faq .faq-list ul, .faq .guide ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li, .faq .guide li + li {
  margin-top: 15px;
}

.faq .faq-list li, .faq .guide li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list li div ul, .faq .guide li div ul {
  list-style-type: disc;
  padding-left: 3rem;
}

.faq .faq-list li div ul li, .faq .guide li div ul li {
  padding: 0;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list li div a,  .faq .guide li div a{
  display: inline;
  font-weight: normal;
  padding: 0;
}

.faq .faq-list > ul > li > a, .faq .guide > ul > li > a {
  display: block;
  position: relative;
  font-family: "Action NBA  Web";
  font-size: 29px;
  font-weight: 500;
  line-height: 24px;
  padding: 0 30px 0 0;
  outline: none;
  color: #1d428a;
}

.faq .faq-list .icon-help, .faq .guide .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close, .faq .guide .icon-show, .faq .guide .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p, .faq .guide p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show, .faq .guide .icon-show {
  display: none;
}

.faq .faq-list > ul > li > a.collapsed, .faq .guide > ul > li > a.collapsed {
  color: #1d428a;
  font-family: "Action NBA  Web";
  font-size: 29px;
  font-weight: 500;
}

.faq .faq-list > ul > li > a.collapsed:hover, .faq .guide > ul > li > a.collapsed:hover {
  color: #1d428a;
}

.faq .faq-list a.collapsed .icon-show, .faq .guide a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close,.faq .guide a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list, .faq .guide {
    padding: 0;
  }
}

/*****/

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #eaeaea;
  font-size: 14px;
  /* background: #222222; */
  background: #1d428a;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  /* font-size: 22px; */
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  display: flex;
  align-items: center;
  color: #ffffff;
}

#footer .footer-top .footer-contact h3 span {
  font-family: "Action NBA  Web";
  font-size: 2.4rem;
  margin-left: 1.7rem;
  display: inline-block;
  font-weight: 300;
  line-height: 30px;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
  color: #eaeaea;
}

#footer .footer-top .nba-logo {
  margin-bottom: 30px !important;
}

#footer .footer-top .seperator img {
  height: 1px;
  width: 100%;
}

#footer .footer-top .nba-logo img {
  width: auto;
  height: 65px;
}

#footer .footer-top .nba-logo p {
  font-size: 2.4rem;
  margin-left: 20px;
  font-weight: 600;
}

#footer .footer-top .nba-logo p span {
  font-size: 16px;
  font-weight: 400;
}

#footer .footer-top h4 {
  font-family: 'Open Sans', sans-serif;
  color: #eaeaea;
  position: relative;
  padding-bottom: 12px;
  /* text-shadow: 1px 2px 2px #000; */
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #eaeaea;
  font-size: 12px;
  line-height: 1;
  font-weight: 100;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #f1f1f1;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 15px;
  font-weight: 300;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #f1f1f1;
}

#footer .footer-subscribe {
  font-size: 15px;
}

#footer .footer-subscribe h4 {
  color: #eaeaea;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-subscribe .form-control {
  background: transparent;
  color: #a7a7a7;
  border: 1px solid #616161;
  border-radius: 50px;
  margin-bottom: 15px;
  padding: .7rem 1.5rem;
  height: auto;
}

#footer .footer-subscribe .form-control::placeholder {
  color: #a7a7a7;
  font-size: 14px;
}

#footer .footer-subscribe .btn-register {
  background: #4f4f4f;
  color: #ececec;
  border-radius: 50px;
  padding: .7rem .75rem;  
}

.bottom-links {
  margin-top: 15px;
}

.bottom-links a, .bottom-links a:hover, .bottom-links a:focus, .bottom-links a:active {
  color: #ececec;
  margin-left: 30px;
  text-transform: capitalize;
}

.bottom-links a:first-child {
  margin-left: 0;
}

.bottom-links .copyright {
  /* color: #6b6d6c; */
  color: #ececec;
}

@media screen and (max-width: 768px) {
  .bottom-links a, .bottom-links a:hover, .bottom-links a:focus, .bottom-links a:active {
    margin-left: 10px;
    line-height: 24px;
  }
}

#footer .social-links a {
  display: inline-block;
  padding: 8px 0;
  margin-right: 10px;
  margin-left: 0;
  text-align: center;
}

#footer .social-links a:hover {
  color: #fff;
  text-decoration: none;
}

#footer .social-links a:last-child {
  margin-right: 0;    
}

.carousel-inner .carousel-item > img {
  width: 100%;
  min-height: 560px;
  max-height: 560px;
    object-fit: cover;
    object-position: bottom;
}

.carousel-caption {
  position: absolute;
  right: 80px;
  bottom: auto;
  left: unset;
  max-width: 50%;
  top: 35px;
  z-index: 10;
  padding: 50px 40px 30px;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  width: 50%;
}

.carousel-caption div + p {
  margin-bottom: .5rem;
}

.caption2 {
  position: absolute;
  left: 80px;
  bottom: auto;
  right: unset;
  max-width: 550px;
  top: 50px;
  z-index: 10;
  padding: 50px 40px 30px;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  width: 550px;
}

@media screen and (max-width: 768px) {
  .carousel-caption { 
    /* display: none; */
    position: absolute;
  right: 10px;  
  max-width: 65%;
  top: 25px;  
  width: 95%;
  padding: 15px 15px 15px;
  }
  .carousel-caption > div + p, .carousel-caption .separator {
    display: none;
  }
  .carousel-inner .carousel-item > img {
    min-height: 350px;
  }
  .slick-slider .slick-prev { left: -15px !important;}
  .slick-slider .slick-next { right: -15px !important;}
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .carousel-inner .carousel-item > img {
    min-height: 510px;
  }
  .carousel-caption {
    right: 40px;
    top: 15px;
    padding: 20px 20px;
  }
}

@media (max-width: 992px) {
  .carousel-inner .carousel-item > img {
    min-height: 460px;
  }
}

@media screen and (max-width: 823px) {
  .carousel-caption {   
    position: absolute;
  max-width: 75%;
  width: 75%;
  }
  .nba-backgrounds a{
    margin-bottom: 0;
  }
}

.carousel-caption .separator {
  width: 100%;
}

.inner-caption {
  font-size: 14px;
  color: #3f3f3f ;
}

.nba-text{
  font-weight: 500;
  color: #1d428a;
}

.caption-top-text {
  /* font-weight: 500; */
  /* color: #6f6e6e; */
  font-weight: 500;
  color: #1d428a;
  font-family: "Action NBA  Web";
  font-size: 39px;
}

.caption-mid-text {
  margin-top: 20px;
  font-weight: 400;
  font-size: 22px;
  /* color: #6f6e6e; */
  color: #c8102e;
}

.virtual-text {
  color: #c8102e;
  font-weight: 400;
  font-size: 22px;
}

.zoom-services {
  background: #f2f2f2;
}

.zoom-services h2 {
  font-weight: 400;
  text-transform: none;
  color: #222222;
  font-family: "Action NBA  Web";
  font-size: 44px;
}

.zoom-services h4 {
  color: #1d428a;
  font-weight: 400;
  font-size: 21px;
}

.zoom-services p {
  line-height: 34px;
}

.release-notes {
  background: #ffffff;  
}

.release-notes h4 {
  color: #1d428a;
  font-size: 21px;
}

.release-notes p {
  line-height: 34px;
  color: #1d428a;
}

.release-notes .count-box img {
  filter: invert(19%) sepia(54%) saturate(2029%) hue-rotate(200deg) brightness(94%) contrast(91%);
  width: 2.5rem;
  Height: 2.5rem;
}


.zoom-overview {
  background: #fff;
  padding: 80px 0;
}

.zoom-overview h2 {
  font-weight: 400;
  text-transform: none;
  color: #222222;
  font-family: "Action NBA  Web";
  font-size: 44px;
}

.zoom-overview ul {
  padding-left: 40px;
}

.zoom-overview ul li {
  list-style: none;
  position: relative;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 40px;
}
.zoom-overview ul li::before {
  content: "\2022";
  color: #1d428a;
  position: absolute;
  left: -30px;
  top: 8px;
  font-size: 3rem;
  line-height: 22px;
}

.nba-backgrounds {
  display: flex;
  line-height: 0.25;
}

.nba-backgrounds a{
  margin-right: 20px;
  margin-bottom: 10px;
  border-radius: 10px;  
  /* width: 130px; */
  width: 100%;
  height: 100px;
  position: relative;
  display: inline-block;
}

.nba-backgrounds div > a:nth-child(2) {
  margin-bottom: 0;
}

.nba-backgrounds a i{
  position: absolute;
  right: 5px;
  bottom: 5px;
  color: #fff;
}

/* .nba-backgrounds a.bg1{
  background-image: url(../img/logoman-4c_background.jpg);
  background-size: cover;
}

.nba-backgrounds a.bg2{
  background-image: url(../img/logoman-4c_background-2.jpg);
  background-size: cover;
}

.nba-backgrounds a.bg3{
  background-image: url(../img/logoman-blue_background.jpg);
  background-size: cover;
}

.nba-backgrounds a.bg4{
  background-image: url(../img/logoman-gray_background.jpg);
  background-size: cover;
} */

/* .nba-backgrounds a img{
  width: 100px;
  height: 100px;
} */

.slick-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .nba-backgrounds {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }  
  .nba-backgrounds a{
    margin-right: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 75px;
  }
}

@media screen and (max-width: 768px) {
  .carousel-inner .carousel-item > img {
    min-height: 350px;
  }
  .nba-backgrounds {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .slick-initialized .slick-slide {
    padding: 4px !important;
  }
  .nba-backgrounds a{
    margin-right: 10px;
    margin-bottom: 0;
    width: 100%;
    height: 80px;
    margin-bottom: 5px;
  }    
}

@media screen and (max-width: 600px) {
  .slick-initialized .slick-slide {
    padding: 4px !important;
  }
  .nba-backgrounds a{
    width: 100%;
    height: 65px;
    margin-right: 20px;
    margin-bottom: 5px;
  }
  .carousel-caption { 
    /* display: none; */
    position: absolute;
  right: 10px;  
  max-width: 95%;
  top: 6px;  
  width: 95%;
  padding: 15px 15px 15px;
  }
  .carousel-caption > div + p, .carousel-caption .separator {
    display: none;
  }
  .carousel-inner .carousel-item > img {
    min-height: 280px;
  }
}


.fa-bars, .fa-times {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@media (max-width: 992px) {
  #header .logo img {
    max-width: 150px;
  }
  #header .logo span {
    font-size: 1.8rem;
    margin-left: 1.7rem;
  }
  #footer .footer-top .nba-logo img {
    max-width: 150px;    
}
#footer .footer-top .footer-contact h3 span {
  font-size: 1.8rem;
    margin-left: 1.7rem;
}
}