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

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*==Font-setup==*/

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

body {
    font-family: 'Helvetica Neue';
    font-size: 16px;
    color: #000;
    background: #fff;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

/*==Basic-setup==*/

/* scroll-bar */
.scrolltotop {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #ED1C24;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  position: fixed;
  right: 25px;
  bottom: 15px;
  animation: lab_top_up 5s linear infinite;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
  display: none;
}

.scrolltotop i {
  color: #ffff;
  font-size: 20px;
}

/*===this-is-code-start===*/
.container {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
}

/*==container-setup==*/
 .main-nav ul {
  display: flex;
  align-items: center;
  column-gap: 25px;
  justify-content: flex-end;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  font-weight: 300;
  font-size: 18px;
  color: #154460;
  text-transform: uppercase;
}

.main-nav ul li a:hover {
  color: #FF0000;
}

.menu-active {
  font-weight: 700 !important;
  font-size: 27px !important;
  color: #FF0000 !important;
}

.menu-toggle {
  display: none;
}

.menu-btn {
  width: 33px;
  cursor: pointer;
  margin-left: auto;
}

.menu-btn img {
  width: 100%;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  left: -400px;
  max-width: 400px;
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  transition: left 0.4s ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding-bottom: 57px;
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-menu .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 18px 0 38px;
  background: #fff;
}

.close-icon {
  cursor: pointer;
}

.close-icon img  {
  max-width: 40px;
}

.menu-wrap {
  padding: 25px 18px 0 38px;
  margin-top: 22px;
}

.menu-wrap .menu-item a {
  font-weight: 300;
  font-size: 22px;
  display: block;
  color: #154460;
  cursor: pointer;
  margin-bottom: 40px;
  transition: 0.2s all ease;
}

.menu-wrap .menu-item a:hover {
  color: #FF0000;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobil-brand img {
  max-width: 142px;
}

.m-block {
  display: none;
}

.m-none {
  display: block;
}

.header-area {
  padding: 25px 0;
  background: #fff;
}

.header-main {
  display: grid;
  grid-template-columns: 13% auto;
  align-items: center;
}

.logo-item img {
  max-width: 159px;
  width: 100%;
}

/*==hero-section==*/

.hero-main img {
  width: 100%;
}

/*===juego-secton===*/
.juego-area {
  background: #EAEAEA;
  padding: 61px 0 47px 0;
}

.juego-container {
  max-width: 1830px;
}

.juego-main {
  position: relative;
}

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

.juego-title h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}

.juego-title p {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
}

.juego-cnt1 {
  background: #154460;
  border-radius: 8px;
  padding: 15px 15px 45px 15px;
}

.juego-cnt1-inner {
  display: flex;
  align-items: center;
  column-gap: 40px;
  justify-content: center;
  margin-top: 10px;
}

.juego-cnt1-inner h4 {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
  text-align: center;
}

.cnt1-inner-item2 ul {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.cnt1-inner-item2 ul li {
   font-family: "Barlow", sans-serif;
   font-weight: 700;
   font-size: 16px;
   color: #fff;
}

.cnt1-inner-item1 img {
  max-width: 44px;
}

.cnt1-inner-item3 img {
  max-width: 71px;
}

.juego-cnt2 {
  display: flex;
  align-items: center;
  column-gap: 33px;
  background: #ED1C24;
  justify-content: center;
  border-radius: 8px;
  margin-top: 5px;
  padding: 10px 10px 15px 10px;
}

.juego-cnt2 img {
  max-width: 71px;
}

.juego-cnt2 h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #fff;
  text-transform: uppercase;
}

.carousel-1 .carousel-cell {
  width: 19.5%;
  margin-right: 10px;
}

.custom-dots {
  text-align: center;
  margin-top: 25px;
}

.dot-btn {
  width: 71px;
  height: 8px;
  border-radius: 7px;
  border: none;
  margin: 0 4px;
  background: #A9B9C2;
  cursor: pointer;
  transition: 0.2s all ease;
}

.dot-btn:hover {
   background: #ED1C24;
}

.dot-btn.active {
  background: #ED1C24;
}

.slider-btn {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  top: 28%;
  padding: 0 15px;
}

.slider-btn button {
  background: none;
  border: none;
  cursor: pointer;
}

.slider-btn button img {
  max-width: 50px;
}

/*mercan-section*/
.mercan-area {
  padding: 42px 0;
}

.mercan-title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mercan-title h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 41px;
  color: #154460;
  text-transform: uppercase;
  position: relative;
}

.mercan-title img {
  max-width: 310px;
  width: 100%;
}

.mercan-main {
  margin-top: 30px;
}

.carousel-2 .carousel-cell {
  width: 20%;
}

.mercan-img img {
  width: 100%;
}

.mercan-main {
  position: relative;
}

.slider-btn2 {
  position: absolute; 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15px;
}

.slider-btn2 button {
  background: none;
  border: none;
  cursor: pointer;
}

.slider-btn2 button img {
  max-width: 50px;
}

/*==youtube-section==*/
.youtube-area {
  background: #fff;
}

.youtube-area-inner {
  background: url('images/youtube-bg.png') no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 98px;
  margin-top: 28px;
}

.youtube-title h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 50px;
  color: #154460;
  text-align: center;
}

.youtube-main ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}

.youtube-main ul li  a {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  font-size: 85px;
  color: #fff;
}

.youtube-main ul li img {
  max-width: 180px;
  position: relative;
  z-index: 2;
  display: block;
}

.youtube-btm {
  text-align: center;
  background: #ED1C24;
  padding: 18px 0;
  margin-top: 61px;
}

.youtube-btm h4 {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 50px;
  color: #fff;
}

/*==brand-section==*/

.brand-area {
  background: #ffffff;
  padding: 109px 0 97px 0;
}

.brand-top ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 256px;
}

.brand-top ul li:nth-of-type(1) img {
  max-width: 515px;
  width: 100%;
}

.brand-top ul li:nth-of-type(2) img {
  max-width: 535px;
  width: 100%;
}

.brand-btm {
  margin-top: 82px;
}

.brand-btm ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
}

.brand-btm ul li:nth-of-type(1) img {
  max-width: 220px;
  width: 100%;
}

.brand-btm ul li:nth-of-type(2) img {
  max-width: 180px;
  width: 100%;
}

.brand-btm ul li:nth-of-type(3) img {
  max-width: 180px;
  width: 100%;
}

.brand-btm ul li:nth-of-type(4) img {
  max-width: 178px;
  width: 100%;
}

.brand-btm ul li:nth-of-type(5) img {
  max-width: 190px;
  width: 100%;
}

.brand-btm ul li:nth-of-type(6) img {
  max-width: 125px;
  width: 100%;
}

/*==standing-section==*/
.standing-area {
  background: #ffffff;
  padding-bottom: 40px;
}

.standing-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 25px;
  margin-top: 54px;
}

.stand-top-item {
  background: #DADADA;
  padding: 18px 23px;
  margin-bottom: 8px;
}

.stand-top-item ul {
 display: grid;
 grid-template-columns: repeat(4,1fr);
 text-align: center;
}

.stand-top-item ul li {
  font-weight: 400;
  font-size: 18px;
  color: #101010;
}

.stand-top-item ul li:nth-of-type(4) {
  text-align: right;
}

.standing-main table {
  width: 100%;
  border-collapse: collapse;
  border-collapse: separate;
  border-spacing: 0 3px;
}

.standing-main table tr:nth-of-type(2) td:nth-of-type(1) img {
      max-width: 37px;
   }

.standing-main table tr:nth-of-type(3) td:nth-of-type(1) img {
      max-width: 35px;
}

.standing-main table tr:nth-of-type(4) td:nth-of-type(1) img {
    max-width: 32px;
}

.standing-main table tr:nth-of-type(5) td:nth-of-type(1) img {
      max-width: 32px;
}

.standing-main table tr:nth-of-type(6) td:nth-of-type(1) img {
      max-width: 32px;
}

.standing-main table tr:nth-of-type(7) td:nth-of-type(1) img {
    max-width: 64px;
}

.standing-main table tr:nth-of-type(8) td:nth-of-type(1) img {
    max-width: 35px;
}

.standing-main table tr:nth-of-type(9) td:nth-of-type(1) img {
      max-width: 29px;
}

.standing-main table tr:nth-of-type(10) td:nth-of-type(1) img {
    max-width: 37px;
}

.standing-main table tr:nth-of-type(11) td:nth-of-type(1) img {
    max-width: 36px;
}

.standing-main table tr {
    background: #F1F1F1;
}

.standing-main table tr td {
     padding: 21px 0;
}

.standing-main table tr td:nth-of-type(1) {
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    display: grid;
    grid-template-columns: 18% auto;
    align-items: center;
    column-gap: 35px;
    padding-left: 55px;
    width: 63%;
}

.standing-main table tr td:nth-of-type(2),
.standing-main table tr td:nth-of-type(3),
.standing-main table tr td:nth-of-type(4) {
    width: 12%;
}

.standing-main table tr td:nth-of-type(2),
.standing-main table tr td:nth-of-type(3) {
    font-weight: 500;
    font-size: 19px;
    color: #000000;
}

.standing-main table tr td:nth-of-type(4) {
  font-weight: 700;
  font-size: 20px;
} 
  
.standing-main table tr:nth-of-type(1) {
  background: #fff !important;
}

.standing-main table tr:nth-of-type(1) td {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}

.highlights-area {
  background: #F2F2F2;
  padding: 55px 0 68px 0;
}

.carousel-3 .carousel-cell {
  width: 33%;
  margin-right: 10px;
}

.high-img {
  position: relative;
}

.high-img img {
  width: 100%;
}

.play-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.play-img img {
   max-width: 110px !important;
}

.slider-btn3 {
  display: none;
}

.carousel-4 .carousel-cell {
  width: 24.5%;
  margin-right: 10px;
}

.noticias-area {
  background: #ffffff;
  padding: 43px 0 63px 0;
}

.blog-item {
  background: #154460;
  border-radius: 13px;
}

.blog-cnt {
  padding: 15px 20px 25px 15px;
}

.blog-img img {
  width: 100%;
  border-radius: 13px;
}

.blog-cnt h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
}

.blog-cnt h3 a {
  color: #ffffff;
  transition: 0.2s all ease;
}

.blog-cnt h3 a:hover {
  color: #FF0000;
}

.blog-cnt p {
  font-weight: 400;
  font-size: 13px;
  color: #ffffff;
  margin-top: 12px;
  line-height: 20px;
}


.blog-btn a {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #fff;
  background: #FF0000;
  display: block;
  text-align: center;
  border-radius: 8px;
  padding: 13px 5px;
  text-transform: uppercase;
  transition: 0.2s all ease;
}

.blog-btn a:hover {
  opacity: 0.9;
}


/*=footer-section=*/

.footer-area {
  background: #154460;
  padding: 66px 0 28px 0;
}

.footer-item ul li a {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  display: inline-block;
  margin-top: 20px;
  transition: 0.2s all ease;
}

.footer-item ul li a:hover {
  color: #FF0000;
}

.footer-item h4 {
  font-weight: 700;
  font-size: 19px;
  color: #fff;
}

.social-item ul {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-top: 50px;
}

.social-item ul li a img {
  max-width: 40px;
}

.social-item ul li a img:hover {
  opacity: 0.9;
}

.footer-logo img {
  max-width: 360px;
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 35% 15% 22% auto;
}

.copyright p {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-align: right;
}

.mobil-social {
  padding: 0 25px;
  margin-top: auto;
}

.mobil-social ul li a {
  margin-top: 0;
}

.mobil-social ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobil-social ul li a img {
  max-width: 33px;
}

.mobil-social ul li a img:hover {
  opacity: 0.9;
}