* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat, sans-serif;
  /* background: linear-gradient(-45deg, #9c27b0, #673ab7); 
  background-size: 100% 200%;*/
  color: #000000;
  min-height: 100vh;
  font-size: 14px;
}

.bgwhite {background-color: #fff !important;}

.aop {
background-color: #163e79;
}

.wmby {
/* background-color: #163e79;*/
background-image: url('../img/wimbledon/bg_wimby-1.jpg');
background-repeat: repeat;
background-position: center;
}
.usopbg {
background-color: #163e79;
}
.grey {background-color: #eeefef;}/*f5f8fa;*/

/* navbar */
.navbar {
  background: #ffffff;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  border-bottom: 1px solid silver;
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  /*text-decoration: none;
  color: #122f48;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;*/
  content: url("../assets/logo-10sctsd.png");
  background-repeat: no-repeat;  
  width: 182px;
  height: 45px;
}

/* nav menu button */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.15rem;
  background: #132f48;
  transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #112f48;
}

/* dropdown menu */
.navbar .dropdown {
  position: relative;
}

.expand-btn:after {
  content: url("../assets/chevron-down.png");
  opacity: 0.6;
  margin: 1px 0 0 6px;
}

/* .bxs-chevron-down {
  font-size: 24px;
} */

.navbar .dropdown-menu,
.menu-right {
  position: absolute;
  background: #e9ecef;
  width: 190px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 65px;
  border-top: 1px solid white;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

.navbar .dropdown-menu,
.menu-left {
  left: unset;
  right: 0;
}

.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.25rem 1.25rem;
  font-size: 16px;
}

.navbar .menu-item:hover {
  color: #ff5722;
}

.menu-item.first-item {
  padding: 1.5rem 1rem;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

/* mega menu  */
.navbar .mega-menu {
  position: absolute;
  left: 0;
  width: 100vw;
  top: 65px;
  border-top: 1px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega-menu .content {
  background: #e9ecef;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
}

.blog .content {
  grid-template-columns: repeat(4, 1fr);
}

.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 2.125rem;
}

.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.content .col .menu-title {
  color: #ff5722;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}

.content .col p {
  line-height: 1.2rem;
  margin-top: 5px;
  color: #112f48;
}

.content .col .mega-links {
  border-left: 1px solid #3c3c3c;
}

.content .col .read-more {
  font-size: 16px;
  display: flex;
  padding-top: 1rem;
  color: #03a9f4;
  transition: color 0.3s ease;
  justify-content: flex-end;
  padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
  padding: 0 1rem;
}

.menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.content .col .read-more:hover {
  color: #ff5722;
}

/* container  ==============  not necessary =========== */
.container {
  margin: /*100px*/ 0 auto;
  padding: 0 15px;
  max-width: 1680px;
  text-align: center;
  background-color: transparent;
}

.container p {
  color: #ffffff;
}

h1 {
  font-weight: 700;
  line-height: 10vw;
  color: #d4d2d2;
  text-transform: uppercase;
}

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #132f48;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #132f48;
}

 .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

  /* Responsive style */
  @media screen and (max-width: 1024px) {
    .navbar {
      padding: 10px 20px;
    }
    .overflow {
      overflow: hidden;
    }

    .overlay--active {
      opacity: 1;
      visibility: visible;
    }
    .menu-btn {
      display: flex;
    }
    .navbar .menu-items {
      position: fixed;
      height: 100%;
      max-height: initial;
      overflow-y: auto;
      width: 0%;
      top: 65px;
      left: 0;
      background: #fcfcfc;
      display: none;
      transform: translateX(-100vh);
      transition: 0.3s ease-out;
      padding-bottom: 100px;
    }
    .menu-items.open {
        width: 80%;
        display: block;
      transform: translateY(0);
    }
    .menu-items li:first-child {
      margin-top: 20px;
    }
    .menu-items li a {
      padding: 10px 1rem;
      display: block;
      font-size: 18px;
    }
    .menu-items .dropdown-right .right-arrow {
      transform: rotate(90deg);
    }
    .menu-item.first-item {
      padding: 1rem 1rem;
    }
    /* DROPDOWN, MEGA MENUS */
    .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
      position: static;
      opacity: 1;
      top: 4rem;
      visibility: visible;
      margin-left: -18px;
      width: auto;
      max-height: 0;
      transform: scaleX(0);
      transform-origin: left;
      overflow: hidden;
      transition: all 0.5s ease;
    }
    .menu-items .dropdown-menu,
  .menu-items .menu-right {
      padding-left: 1rem;
      width:100%; /*width: 102%;*/
      margin-left: -10px;
    }
    .menu-items .mega-menu .col {
      padding-left: 1rem;
    }
    .expand-btn.open + .sample {
      max-height: 100%;
      transform: scaleZ(1);
    }
    .expand-btn.open + .blog.sample {
      max-height: 100%;
      transform: scaleZ(1);
      max-width: fit-content;
    }
    .navbar .sample {
      border-top: none;
    }
    .sample li {
      margin: 0;
    }
    .sample li:last-child {
      border-bottom: none;
    }
    .sample li a {
      font-size: 1rem;
    }
    .mega-menu .content {
      grid-template-columns: auto;
      padding: 1rem 1rem 0 1rem;
    }
    .mega-menu .content .col {
      width: 100%;
      padding-top: 1rem;
      margin-bottom: 0.5rem;
    }
    .col .mega-links li,
  .col .mega-links li a {
      padding: 0 0.5rem;
    }
    .content .col .mega-links {
      border-left: 0;
      padding-left: 0.5rem;
    }
    .col .mega-links li {
      margin: 0;
    }

  .expand-btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
  }
  .expand-btn.open + .blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }
  .navbar .sample {
    border-top: none;
  }
  .sample li {
    margin: 0;
  }
  .sample li:last-child {
    border-bottom: none;
  }
  .sample li a {
    font-size: 1rem;
  }
}

/*  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }
  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .col .mega-links li,
.col .mega-links li a {
    padding: 0 0.5rem;
  }
  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }
  .col .mega-links li {
    margin: 0;
  }
} */

/* ===================  large text section ============== */

.section-large-text {
  position: relative;
  background: url("https://i.ibb.co/1RS1dqC/section-b.jpg") bottom center/cover  no-repeat;
  height: 600px;
}

.overlayLg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.70);
}

.section-large-text-inner {
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  max-width: 860px;
  padding: 5rem 0;
}

.section-large-text-inner h2 {
  font-size: 64px;
  margin-top: 16px;
  font-weight:800;
}

.section-large-text-inner h3 {
  font-size: 32px;
}

.section-large-text-inner p {
  font-size: 24px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .section-showcase .homecontainer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-showcase .homecontainer div:first-child {
    order: 2;
  }

  .section-showcase .homecontainer div:nth-child(2) {
    order: -1;
  }

  .section-showcase h1 {
    font-size: 32px;
  }

  .section-showcase img {
    width: 80%;
    margin: auto;
  }

  .section-large-text-inner h2 {
    font-size: 48px;
  }

  .section-large-text-inner h3 {
    font-size: 24px;
  }

  .section-large-text-inner p {
    font-size: 20px;
  }
 .hdr-padding-text {
  padding-top: 30px;
   }
}

/* ================================================ */
/* **************  end of hero home above ************
==================================================== */

.one-column {
    text-align: center; 
    padding:10px;
    margin:20px;
    background-color: #fff;
   /* box-shadow: 0 1px 2px 0 rgb(48 48 48 / 30%), 0 1px 3px 1px rgb(48 48 48 / 15%); */
}
.one-column h2 {
 font-family:'Roboto', sans-serif;
  font-size:36px;
 padding:10px;
 letter-spacing:4px;
}
.one-column-img {
    text-align: center;  
    display: flex;
    flex-direction: row;
    padding:10px;
    margin:15px;
    background-color: #fff;
    border-radius:6px;    
   box-shadow: 0 0 45px #000000;
}
.one-column-img h2 {
 font-family:'Roboto', sans-serif;
  font-size:30px;
 padding:10px;
 letter-spacing:4px;
}
.org {
  background-color: transparent;
  color: #e68747;
}
/* TWO COLUMN FLEXBOX */
.two-column {
    display: flex;
    flex-direction: row;
    padding:10px;
    margin:20px;
}
.two-column div {
    border: none;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.two-column h2 {
  font-size:36px;
  font-family:'Roboto', sans-serif;
}
.two-column div span p, .one-column div span p {
  font-size:16px;
  font-family:'Roboto', sans-serif;
  line-height:26px;
  text-align:left;
  margin-bottom: 20px;
}
.two-column img, .one-column img {
  width:100%;
  max-width:380px;
  padding:8px 8px 8px 50px;
}
.two-column img.spacer {
   margin-bottom:35px;
}
.two-column.reverse img {
  width:100%;
  max-width:380px;
  padding:8px 40px 8px 12px;
}
.two-column.reverse img.spacer {
   margin-bottom:35px;
}
.two-column.reverse {
   flex-direction: row-reverse;
}

/* THREE COLUMN */
.three-column {
	display: flex;
	align-items: stretch;
        padding:10px;
        margin:20px !important;
}
.three-column div {
	flex: 1;
	border: none;
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	text-align: center;
        padding:12px;
}
.three-column img {
  width:100%;
  max-width:400px;
  margin:10px auto;
}
@media only screen and (max-width: 620px) {
  .two-column, .two-column.reverse {
    flex-direction:column;
    border: solid 1px #ccc;
    border-radius: 5px;
    box-shadow: 0 1px 2px 0 rgb(48 48 48 / 30%), 0 1px 3px 1px rgb(48 48 48 / 15%);
  }
 .three-column {
    flex-direction:column;
    border-radius: 5px;
    border: solid 1px #ccc;
    box-shadow: 0 1px 2px 0 rgb(48 48 48 / 30%), 0 1px 3px 1px rgb(48 48 48 / 15%); 
    padding:10px;
    margin:20px;
  }
.three-column div  {
    flex-direction:column;
    padding:25px 10px;
  }
.two-column img, .two-column.reverse img, .one-column img {
  padding:8px;
}
.one-column-img img {
  padding:4px;
}
.page-separator {
  width:1px;
  height:1px;
  margin:-1px;
  color:#fff;
  }
}

/* ====================  PAGE ADS  ===========   */


.page-ads, .side-img {
   flex: 100%;
   /*border-left: 1px solid silver; 
   margin-left: 50px; */
   margin: 15px auto;
   padding-left: 10px;
   width: 280px; 
   overflow: hidden;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align:center;
   background-color:#fff;   
 }

.wimsd {
border:1px solid #504e66;
color: #3b4601;
}
 
 .advert {
   flex: 100%;
   /*align-self: center;*/
   padding: 5px;
   margin: 0px;
   width: 210px;
   height: 210px;
   background: lightblue;
   color: green;
   overflow: hidden;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 16px;
 }
.advert a {
  text-decoration: none;
   color: green;
}
.advert a:hover {
 text-decoration: underline;
}
.side-img img, .right-container img {
   /*align-self: center;*/
   padding: 5px;
   margin: 15px auto; 
   max-width: 300px;
   height: 100%;
   overflow: hidden;
   border-left:none;
   display: flex;
   justify-content: center;
   align-items: center;
}
@media only screen and (max-width: 768px) {
  .side-img { margin-left:5px;}
  .side-img img, .right-container img {
   display: flex;
   justify-content: center;
   align-items: center; }
}

@media only screen and (max-width: 600px) {
  .side-img img, .page-ads {margin-left: 10px; max-width:350px;
  }
}

/* ============== FLEX CONTAINERS =========== */

.flex-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 5px;
}

.flex-item {
  margin: 5px;
  padding: 8px 14px;
}

.flex-sidebr {
  display: flex;
  justify-content: center;
  background-color:#fff;  
  margin:20px 0 0 0;
  padding:4px -25px;
  box-shadow: 0 0 25px #000000;
  border-radius:6px;
}
.flex-item p {
  text-align: left; 
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 20px;
}
.flex-item p.noma {
  line-height: 19px;
  margin-bottom: 5px;
}
.flex-item h2 { 
  text-align:center;
  font-family:'Roboto', sans-serif;
  font-size:36px;
  padding:10px 0 5px 0;
  letter-spacing:4px;
}
.flex-item h3 {
  text-align:center;
  font-family:'Roboto', sans-serif;
  font-size:26px;
  padding:10px 0 6px 0;
  letter-spacing:2px;
}
.flex-item img {
 width:100%;
 max-width:1000px;
 height:auto;
}

.flex-item h2.leftevent { 
  text-align:left;
  font-family:'Roboto', sans-serif;
  font-size:28px;
  padding:10px 0 5px 0;
  letter-spacing:2px;
}

/* To test flex-grow effect, resize the view panel or just play with the flex container's width */
/*  Play also with flex-basis of each flex-item to see more about the effect of flex-grow property */
/* In this example, the first flex-item takes 66.66% from the positif free space  */
/* https://codepen.io/mouhssineCodePen/pen/PoZbaMr  */

.flex-item:nth-child(1) {
  flex-basis:10px;/*30px; */
  flex-grow: 30;   /* 30 */
}

.flex-item:nth-child(2) {
  flex-basis: 5px;
  flex-grow: 10;
}
img.middy {
 width: 100%;
  max-width: 320px;
  text-align: center; 
  display: flex; 
  justify-content: center;
  /* position: relative;*/
  margin-left:0; /* was 10px */
}

@media only screen and (max-width: 768px) {
  .flex-container {
   width:100%;
   display: flex;
   flex-direction: column;
}
  img.middy {
    margin-left:10px; /* was 30 */
   display: flex;
   justify-content: center;
   align-items: center;
}
 .flex-item img {
  height:62%;
  max-height:300px; 
}
.flex-item h2.cubby { 
  margin-left:-999px;
  height:1px;
  width: 1px;
  color: #fff;
}
.flex-item h3 {
  font-size:22px;
}
 .flex-item p {
  overflow:hidden;}
}

@media only screen and (max-width: 560px) {
.flex-item:nth-child(2) {
  margin-top: 105px;
  padding-top:10px;
  border-top: 2px solid silver; 
  flex-basis:10px;
  flex-grow: 40;
}
.flex-item:nth-child(1) {
  flex-basis:0;
  flex-grow: 30;
}
.flex-item, .flex-container {
margin:10px auto;
}
.flex-sidebr {
    padding:10px;
    margin:15px 5px;
    min-width: 320px;
    max-width: 90%;
}
.page-ads, .side-img {
  border-left:none;
}
.flex-item h2 {
  font-size:26px;}
.flex-item h3 {
  font-size:19px;
   }
}

/* =====================  60 40 columns  academies ======================== */
/* container */
.quadra {
  display: flex;
  flex-direction: row; 
  min-height: 100px;
  max-width: 1680px;
}
  .content10s, .contentFacility {
    height: 100%;
    min-height: 300px;
    padding: 5px;
  }
  .linha {margin:.75%;}
  .saque {flex-basis: 58%;}
  .saque .content10s {background-color: #fff;}
  .saque .contentFacility {background-color: #eeefef;}
  .saque img {width:100%; max-width: 900px;}
  .voleio {flex-basis: 40%;}
  .voleio .content10s {background-color: #fff;}
  .voleio .contentFacility {background-color: #eeefef;}
  .voleio h1 {
    font-size: 2.8em;
    letter-spacing: 2px;
    padding: 0;
    margin: 0 0 .5em;
    line-height: 1em;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'helvetica neue',helvetica,Arial,sans-serif;
    color: #ff4612;
    text-align: center;
}
 .voleio  p { line-height: 1.6em; font-size: .9em; margin: 0 0 1.75em;
    font-family: 'helvetica neue',helvetica,Arial,sans-serif;
}
@media only screen and (min-width: 1120px) {
 .voleio h1 {font-size: 3.8em;}
}
  .voleio  p {font-size: 1.15em; line-height: 1.6em; padding: 3px 10px;}
}
@media only screen and (min-width: 880px) {
.voleio  h1 {font-size: 3.4em;}
}
@media only screen and (min-width: 736px) {
.voleio h1 {font-size: 3em;}
} 
@media only screen and (max-width: 768px) {
  .saque, .voleio {flex-basis: 1; width: 100%; max-width: 720px; padding: 10px;
  }
  .quadra {
  display: flex;
  flex-direction: column; 
  margin: 0 auto;} 
  .linha {margin:0 auto;}
}

/* ================= flex panel academies ======================= */

.flex-panel {
  margin: 5px;
  padding: 8px 14px;
}

.flex-panel p {
  text-align: left; 
  font-family:'Roboto', sans-serif;
  font-size:17px;
  line-height:24px;
  margin-bottom: 20px;
}
.flex-panel h2 {
  text-align:center;
  font-family:'Roboto', sans-serif;
  font-size:36px;
  padding:10px;
  letter-spacing:4px;
}
.flex-panel h3 {
  text-align:center;
  font-family:'Roboto', sans-serif;
  font-size:26px;
  padding:10px;
  letter-spacing:4px;
}
.flex-panel img {
 width:100%;
 max-width:1000px;
 height:auto;
}

/* To test flex-grow effect, resize the view panel or just play with the flex container's width */
/*  Play also with flex-basis of each flex-panel to see more about the effect of flex-grow property */
/* In this example, the first flex-panel takes 66.66% from the positif free space  */
/* https://codepen.io/mouhssineCodePen/pen/PoZbaMr  */

.flex-panel:nth-child(1) {
  flex-basis: 10px;/*30px; */
  flex-grow: 20;   /* 30 */
}

.flex-panel:nth-child(2) {
  flex-basis: 5px;
  flex-grow: 10;
}
@media only screen and (max-width: 768px) {
 .flex-panel img {
  height:70%;
  max-height:350px; 
}
 .flex-panel p {
  overflow:hidden;}
}

@media only screen and (max-width: 560px) {
/*.flex-panel:nth-child(2) {
  margin-top: 105px;
  padding-top:10px;
  border-top: 2px solid silver; 
  flex-basis: 10px;
  flex-grow: 20;
}*/
.flex-panel:nth-child(1) {
  flex-basis:0;
  flex-grow: 0;
}
.flex-panel {
margin:10px auto;
}
.flex-panel h2 {
  font-size: 26px;}
}
/*  ========================= images with overlay academies pg ===================*/


/* Helped by ates_irem codepen.io/Biebk/pen/KKmKpVy  */
.image-container {
        width: 99%;
        margin: 20px auto 0px auto;
        padding:10px 1px;
      /*  background: rgba(209, 217, 223, 0.705); */
        background: rgba(255, 255, 255, 0.705);
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-content: space-evenly;
        position: relative;            
   }

  .image-wrapper {
       width: 50%;
       margin: 0px auto 4px;
       flex-shrink: 0;
   }
  .image-wrapper img{
        width: 100%;  
        min-width: 250px;
        height: auto;
   }

@media screen and (max-width:991px) {
  .image-container {
        flex-wrap: wrap;
   }
}
@media screen and (max-width:768px) {
  .image-container {                
   }
  .image-wrapper {
       width: 75%;
   }
}
@media screen and (max-width:500px) {
  .image-container {
        flex-direction: column;                 
   }
  .image-wrapper {
       width: 98%;
   }
}
     
.container-gridimg {
  padding: 1em 0;
  /*float: left; */ 
  display: flex;
  justify-content: space-between;
  width: 50%;
  max-width: 250px;
  height: auto;
}
@media screen and (max-width: 640px){
  .container-gridimg{
    display: block;
    width: 100%;
  }
}


/*
@media screen and (min-width: 900px){
  .container-gridimg{
    width: 33.33333%;
  }
} */

.container-gridimg .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 5px;
}

.content-img {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content-img .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 99%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content-img:hover .content-overlay{
  opacity: 0;
}

.content-image{
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  /*vertical-align: middle;*/
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content-img:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 0;
}

.content-details h3 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0.0625em;
  padding-bottom: 0;
  text-transform: uppercase; 
  font-size: 1.20em; 
  font-weight: 700;
  font-family: "Arial Black", "Arial Bold", Gadget, sans-serif; 
  opacity: 0.30; 
  text-shadow: 0 0 1px rgba(0, 0, 0, .1);
}

.content-details p {
  color: #fff;
  font-size: 1.025em;
  padding-left: 10px;  
  opacity: 0.30; 
  text-shadow: 0 0 1px rgba(0, 0, 0, .1);
}

.fadeIn-bot{
  top: 27%;
  left: 48%;
}

.fadeIn-top{
  top: 27%;
  left: 35%;
}
@media only screen and (max-width: 679px) {
.fadeIn-bot{
  top: 50%;
  left: 50%;
  }
.fadeIn-top{
  top: 50%;
  left: 50%;
   }
.content-details h3 {
  font-size; 1.75em;
  }
.content-details p {
  position: absolute; 
  padding-top: 14px;
  top: 60%;
  left: 30%;
  }
}

/* ========== 3 flexboxes in a row and responsive =============== */

.main-container h2.ltside, .main-container h3.ltside {text-align: left;}
.main-container h2 {font-size: 26px; }
.main-container h3 {font-size: 22px; }
.main-container h3.terca {padding-top: 18px; font-size: 18px; text-align: center; font-family: Noto, sans-serif; letter-spacing: normal; margin: 5px auto; }
.main-container .item-container h2 {
  font-weight: 600; text-align:center; font-size: 20px !important;
}
.main-container .item-container h2 a{text-decoration:none; font-size:20px !important; margin:2px; padding:2px; letter-spacing:1px; color:#777;}

.main-container img {
  width: 100%;
}

.main-container .content {
  font-size: 15px;
  text-align:justify;
  text-align: left;
}

.main-container {
  max-width: 1600px;
  min-width: 300px;
  margin: 0 auto;
  padding: 30px;
  box-sizing: border-box;
/*  border: 1px solid #000;*/
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.main-items-container {
  display: -ms-flexbox;
  display: flexbox;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  padding: 0;
  margin: 10px 0;
  list-style: none;
  width: auto;
  -webkit-flex-flow: row wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  box-sizing: border-box;
}

@media (min-width: 981px) {
  .item-container {
    margin: 10px 2%;
    width: 30%;
    padding: 10px;
    border: 2px solid #ccc; /*384a5b;*/
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #fff;
    color:#777;
  }
  .item-container:nth-child(4n+1) {
    margin-left: 0;
  }
  .item-container:nth-child(4n) {
    margin-right: 0;
  } 
.item-container-quad {
    margin: 10px 2%;
    width: 22%;
    padding: 10px;
    border: 2px solid #ccc; /*#384a5b;*/
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #fff;
    color:#777;
    letter-spacing; normal;
  }
  .item-container-quad:nth-child(4n+1) {
    margin-left: 0;
  }
  .item-container-quad:nth-child(4n) {
    margin-right: 0;
  } 
}

 @media (min-width: 721px) and (max-width: 980px) { 
  .item-container {
    margin: 10px 2.50%;
    width: 30%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius:2px;
    box-sizing: border-box;
    background-color: #fff;
    color:#777;
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;
  }
  .item-container:nth-child(3n+1) {
    margin-left: 0;
  }
  .item-container:nth-child(3n) {
    margin-right: 0;
  } 
 .item-container-quad {
    margin: 10px 2%;
    width: 22%;
    padding: 10px;
    border: 2px solid #384a5b;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #fff;
    color:#777;
  }
  .item-container-quad:nth-child(3n+1) {
    margin-left: 0;
  }
  .item-container-quad:nth-child(3n) {
    margin-right: 0;
  } 
}    /*  below was 720px */

@media only screen and (max-width: 768px) {
  .main-container {padding:16px; border:none;}
  .main-container .item-container h2 a{text-decoration:none; font-size:19px !important; margin:2px; padding:2px; color:#3c638e;}
  .main-container .item-container-quad h2 a{text-decoration:none; font-size:21px !important; margin:2px; padding:2px;}
  .main-container .content {
  font-size: 15px;
  text-align:justify;
  text-align: center;
}
  .item-container, .item-container-quad {
    margin: 15px 0;
    padding: 40px;
    width: 97%;
    height:auto;
    border: 2px solid #ccc;
    border-radius:2px;
    box-sizing: border-box;
    background-color: none;
    color: #512249;
    box-shadow: 0 10px 6px -6px #777;
  }

 button {
    margin: 6px auto;
    text-align: center;
     }
}

.ticket-options-container {
padding: 12px 20px;
}
.ticket-options-container h2 {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    line-height: 26px;
    color: #363434;
    letter-spacing: 1px;
    width: 99%;
    padding:6px 0 20px 0;
}

.ticket-options-container h2 a {
    text-decoration: none;
    color: #363434; 
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
}

.ticket-options-container h2.tix-focus {
   text-align: center; 
   font-size: 25px; 
   font-family: Noto sans, sans-serif; 
   font-style: italic; 
   font-weight: 600; 
   color:#3C638E;
}

.ticket-options-container .con-separator {
  border-top: 1px solid #d3d3d3;
  width: 100%;
  padding: 20px 0;
  margin-top: 50px;
  }

ul.feature-description {
  list-style: disc;
  /* display: flex;
  flex-flow: column wrap;
  height: 22em; */
  font-family: Noto sans, sans-serif;
  font-size: 17px;
  line-height: 24px;
  padding-left: 25px;
  margin:-10px 0 25px 0;
  width: 100%;
}

li {
  padding: .15em;
  margin: 2px;
  background-color: transparent;
}


 button {
    margin: 12px auto;
    text-align: center;
}

.btnBox {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #777;
    background-color: #fff;
    padding: 8px 20px;
    border: 1px solid #0066cc;
    box-shadow: none;
    border-radius: 30px;
    transition: 1000ms;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}
.btnBox:hover{
transition : 1000ms;
padding: 8px 20px;
transform : translateY(-0px);
background-color: #0066cc;
color: #fff;
border: solid 1px #0066cc;
}
.btnBox a:hover {
transition : 1000ms;
padding: 8px 20px;
transform : translateY(-0px);
background-color: #0066cc;
color: #fff;
border: solid 1px #0066cc;    
}

.btnBox2 {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background-color: #0066cc;
    padding: 8px 20px;
    border: 1px solid #0066cc;
    box-shadow: none;
    border-radius: 30px;
    transition: 1000ms;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}
.btnBox2:hover{
transition : 1000ms;
padding: 8px 20px;
transform : translateY(-0px);
background-color: #fff;
color: #0066cc;
border: solid 1px #0066cc;
}
.btnBox2 a:hover {
transition : 1000ms;
padding: 8px 20px;
transform : translateY(-0px);
background-color: #fff;
color: #0066cc;
border: solid 1px #0066cc;    
}

/* ============  bottom img videos end ============= */

/*  .parent {
  display: flex;
  flex-direction:row;
  margin-bottom: 30px;
  padding: 20px 15px;
}

.item {margin:5px 20px; padding:5px 10px;}

.around {
  justify-content: space-between;
} 
 */

.parent {
   display:flex;
   width: 100%; 
   flew-wrap: wrap;
    }
}

.media-child {
   width: 32%;
   min-width: 320px;
   padding: 10px;
   margin: 10px;
}
.media-child2 {
   width:46%;
   min-width: 320px;
   padding: 10px;
   margin: 10px;
}
.media-vdesc h3 {
   font-size:18px;
   font-weight:500;
   text-align:center;
   padding:10px 10px 50px 10px;
   margin-bottom:25px;
}
.media-vdesc h3 a {
   text-decoration:none;
   color:#215529;
}
.listchamps {
text-decoration:none; 
color: green; font-size:18px; 
font-weight:600; 
padding:10px; 
margin: 12px auto; 
border: solid 1px green; border-radius:32px;
}
@media only screen and (max-width: 768px) {
  .media-child {
    margin: 15px 0;
    padding: 10px 15px 40px;
    width: 92%;
    height:auto;
    border: 2px solid #ccc;
    border-radius:4px;
    box-sizing: border-box;
    background-color: none;
    color:#512249;
    box-shadow: 0 10px 6px -6px #777;
   }
  .media-child2 {
    margin: 15px 0;
    padding: 10px 15px 30px;
    width: 92%; 
    max-width: 280px;
    height:auto;
    margin: 0 auto;
    border: 2px solid #ccc;
    border-radius:4px;
    box-sizing: border-box;
    background-color: none;
    color:#512249;
    box-shadow: 0 10px 6px -6px #777;
   }
   .media-vdesc h3 {
   font-size:17px;
   font-weight:600;
   text-align:center; 
   display: flex;
   justify-content: center;
   }
  button {
    margin: 12px auto 36px auto;}
}

@media only screen and (max-width: 679px) {
  .media-child2, .media-child2 iframe {
   width:1px; height: 1px; margin:-1px; color: #fff; display: none;
   }
}


/* ============= accordion content like Google  =================*/

 .faqs {
	position: relative;
	max-width: 30em;
	background-color: #CB5223;
	padding: 14px 25px;
	font-size: 20px;
	font-weight: 500;
        color:#fff;
	border-radius: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
		0 10px 2px rgba(0, 0, 0, 0.2);
}
p.faqs {
	font-size: 20px;
	font-weight: 600;
}

.faqs::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: 100%;
	left: 24px; 
	border: 15px solid transparent;
	border-top: none;
	border-bottom-color: #CB5223;
	filter: drop-shadow(0 -10px 10px rgba(0, 0, 0, 0.1));
}

.faqs-b2 {
	position: relative;
	max-width: 30em;
	background-color: #3C638E;
	padding: 14px 25px;
	font-size: 20px;
	font-weight: 500;
        color:#fff;
	border-radius: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
		0 10px 2px rgba(0, 0, 0, 0.2);
}
p.faqs-b2 {
	font-size: 20px;
	font-weight: 600;
}

.faqs-b2::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: 100%;
	left: 24px; 
	border: 15px solid transparent;
	border-top: none;
	border-bottom-color: #3C638E;
	filter: drop-shadow(0 -10px 10px rgba(0, 0, 0, 0.1));
}

.accordion-content {
 width: 100%;
  max-width: 960px;
  text-align:center;
  padding: 32px;
  background: #fff;
  box-shadow: none;
  border-radius: 8px; 
}
.accordion-item {
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  border-bottom: 2px solid #ddd;
  box-shadow: none;
  cursor: pointer;
  background: #fff;
  margin-bottom: 8px;
 justify-content: center;
}
.item-header {
  display: flex;
  justify-content: space-between;
  column-gap: 4px;
}

.item-icon {
  margin-top: 10px;
  flex: 0 0 15px;
/*  display: grid;*/
  place-items: center; 
  box-shadow: none;
  display: inline-block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #474444;
  border-right: 2px solid #474444;
  transform: rotate(135deg);
}
.item-icon i {
  transition: all 0.25s cubic-bezier(0.5, 0, 0.1, 1);
}
.item-question {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}
/* ========  below  was item icon i  ==========  */
.active .item-icon  {
  transform: rotate(-45deg);
  margin-top: 34px;
  
}

.active .item-question {
  font-weight: 500;
}

.item-content {
  max-height: 0;
  overflow: hidden;
  transition: all 300ms ease;
}

.item-answer {
  line-height: 150%;
  /*background-color:transparent; #E3783B;
  background: url(../img/red-clay-ct-bg.jpg) no-repeat;
  opacity: 0.975;
  background-size: cover; */
  border-radius: 2px;
  border: 1px solid color#2379a4;
  padding: 16px;
  color:#2c2e2f;
  z-index:100;
}
@media only screen and (max-width: 768px) { 
  p.faqs {font-size: 17px;
	font-weight: 500;}
  .item-question {
   font-size: 17px;}
}

/*  ============  tabbed content ============== */

 input[name="tabs"] {
	 display: none;
}
 input[name="tabs"]#tab-1:checked ~ .content .tab:nth-of-type(1) {
	 display: inline-block;
}
 input[name="tabs"]#tab-1:checked ~ .tabs label:nth-child(1) {
	 color: #242b36;
}
 input[name="tabs"]#tab-1:checked ~ .tabs label:nth-child(1):after {
	 width: calc(100% - 40px);
	 transition: 0.3s;
}
 input[name="tabs"]#tab-2:checked ~ .content .tab:nth-of-type(2) {
	 display: inline-block;
}
 input[name="tabs"]#tab-2:checked ~ .tabs label:nth-child(2) {
	 color: #242b36;
}
 input[name="tabs"]#tab-2:checked ~ .tabs label:nth-child(2):after {
	 width: calc(100% - 40px);
	 transition: 0.3s;
}
 input[name="tabs"]#tab-3:checked ~ .content .tab:nth-of-type(3) {
	 display: inline-block;
}
 input[name="tabs"]#tab-3:checked ~ .tabs label:nth-child(3) {
	 color: #242b36;
}
 input[name="tabs"]#tab-3:checked ~ .tabs label:nth-child(3):after {
	 width: calc(100% - 40px);
	 transition: 0.3s;
}
 input[name="tabs"]#tab-4:checked ~ .content .tab:nth-of-type(4) {
	 display: inline-block;
}
 input[name="tabs"]#tab-4:checked ~ .tabs label:nth-child(4) {
	 color: #242b36;
}
 input[name="tabs"]#tab-4:checked ~ .tabs label:nth-child(4):after {
	 width: calc(100% - 40px);
	 transition: 0.3s;
}
 .tabs {
	 box-shadow: 0 20px 50px -25px rgba(0, 0, 0, .3);
	 overflow-X: auto;
	 -webkit-overflow-scrolling: touch;
	 position: relative;
	 white-space: nowrap;
}
 .tabs label {
	 display: inline-block;
	 padding: 18px;
	 position: relative;
	 color: #bbc3d1;
         font-family:'Monteserrat', sans-serif;
	 font-weight: 700;
	 font-size: 20px;
	 text-transform: uppercase;
	 letter-spacing: 1.5px;
	 cursor: pointer;
}
 .tabs label:after {
	 content: '';
	 background: #d22c3f;
	 width: 0;
	 height: 4px;
	 position: absolute;
	 bottom: 0;
	 left: 50%;
	 transform: translateX(-50%);
	 transition: 0.1s;
}
 .Prodcontainer {
	 background: #fff;
	 width: 96%;
	 border-radius: 4px;
	 box-shadow: 2px 3px 3px 2px rgba(0, 0, 0, .3);
	 margin: 25px auto;
	 overflow: hidden;
}
 .Prodcontainer .tab {
	 display: none;
	 background: #fff;
	 padding: 0 12px;
         font-family:'Helvetica-Neue', sans-serif;
}
 
.table tr th {
background-color:#34495e;
padding:6px;
}
.table thead tr {
color:#fff;
font-size:15px;
padding:6px;
margin:10px 2px;
}
.table tbody tr td {
font-size:14px;
padding:6px;
margin:8px 2px;
}
.table tr img {
width:100%;
height:100%;
max-width:25px;
max-height: 17px;
}
/* Zebra striping */
.table tbody tr:nth-of-type(odd) { 
	background: #d5d5d5; 
	}

@media only screen and (max-width: 580px) { 
.table th.cflag, .table td.cflag {
width:1px;
height:1px;
position:absolute;
left:-10000px;
overflow:hidden;
display:none;
}
.table th.winner, .table th.runnerup, .table th.score {
 min-width: 120px;
}
.Prodcontainer .tab {
    padding:0 5px;
}
.one-column-img {
    padding:5px;
    margin:6px;}
}

==================*  2nd Table  ======================== */

/*
.score-table {
	 width: 100%;
	 margin-bottom: 24px;
	 border-spacing: 0;
        min-width:800px;
}
 @media (min-width: 768px) {
	 .score-table {
		 font-size: 15px;
	}
}
 @media (min-width: 632px) {
	 .score-table {
		 font-size: 16px;
	}
}
 .score-table thead {
	 position: absolute;
	 clip: rect(1px 1px 1px 1px);
	 padding: 0;
	 border: 0;
	 height: 1px;
	 width: 1px;
	 overflow: hidden;
}
 @media (min-width: 768px) {
	 .score-table thead {
		 position: relative;
		 clip: auto;
		 height: auto;
		 width: auto;
		 overflow: auto;
	}
}
 .score-table thead th {
	 background-color: #34495E;
	 font-weight: normal;
	 text-align: center;
	 color: white;
}
 .score-table thead th:first-of-type {
	 text-align: left;
}
 .score-table tbody, .score-table tr, .score-table th, .score-table td {
	 display: block;
	 padding: 0;
	 text-align: left;
	 white-space: normal;
}
 @media (min-width: 768px) {
	 .score-table tr {
		 display: table-row;
	}
}
 .score-table th, .score-table td {
	 padding: 8px;
	 vertical-align: middle;
}
 @media (min-width: 480px) {
	 .score-table th, .score-table td {
		 padding: 7px 8px;
	}
  .score-table tr td.Country {
		 display: none;
                 width:1px;
                 height:1px;
	}
}
 @media (min-width: 768px) {
	 .score-table th, .score-table td {
		 display: table-cell;
		 padding: 8px;
	}
}
 @media (min-width: 632px) {
	 .score-table th, .score-table td {
		 padding: 7px 8px;
	}
}
 @media (min-width: 1200px) {
	 .score-table th, .score-table td {
		 padding: 7px;
	}
}
 .score-table caption {
	 margin-bottom: 16px;
	 font-size: 16px;
	 font-weight: bold;
	 text-align: center;
}
 @media (min-width: 768px) {
	 .score-table caption {
		 font-size: 24px;
	}
}
 .score-table tfoot {
	 font-size: 13px;
	 font-style: italic;
}
 @media (min-width: 632px) {
	 .score-table tfoot {
		 font-size: 15px;
	}
}
 @media (min-width: 768px) {
	 .score-table tbody {
		 display: table-row-group;
	}
}
 .score-table tbody tr {
	 margin-bottom: 16px;
}
 @media (min-width: 768px) {
	 .score-table tbody tr {
		 display: table-row;
		 border-width: 1px;
	}
}
 .score-table tbody tr:last-of-type {
	 margin-bottom: 0;
}
 @media (min-width: 768px) {
	 .score-table tbody tr:nth-of-type(even) {
		 background-color: rgba(0, 0, 0, .12);
	}
}
 .score-table tbody th[scope="row"] {
	 background-color: rgba(38, 137, 13, 1);
	 color: white;
}
 @media (min-width: 480px) {
	 .score-table tbody th[scope="row"] {
		 border-left: 1px solid rgba(134, 188, 37, 1);
		 border-bottom: 1px solid rgba(134, 188, 37, 1);
	}
}
 @media (min-width: 768px) {
	 .score-table tbody th[scope="row"] {
		 background-color: transparent;
		 color: rgba(0, 0, 1, );
		 text-align: left;
	}
}
 .score-table tbody td {
	 text-align: right;
}
 @media (min-width: 768px) {
	 .score-table tbody td {
		 border-left: 1px solid rgba(134, 188, 37, 1);
		 border-bottom: 1px solid rgba(134, 188, 37, 1);
		 text-align: center;
	}
}
 @media (min-width: 768px) {
	 .score-table tbody td:last-of-type {
		 border-right: 1px solid rgba(134, 188, 37, 1);
	}
}
 .score-table tbody td[data-type=currency] {
	 text-align: right;
}
 .score-table tbody td[data-title]:before {
	 content: attr(data-title);
	 float: left;
	 font-size: 14px;
	 color: rgba(0, 0, 0, .54);
}
 @media (min-width: 480px) {
	 .score-table tbody td[data-title]:before {
		 font-size: 15px;
	}
}
 @media (min-width: 768px) {
	 .score-table tbody td[data-title]:before {
		 content: none;
	}
}  */

.responsive-table {
  width: 100%;
  margin-bottom: 1.5em;
  border-spacing: 0;
}
@media (min-width: 48em) {
  .responsive-table {
    font-size: .9em;
  }
}
@media (min-width: 62em) {
  .responsive-table {
    font-size: 1em;
  }
}
.responsive-table thead {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
@media (min-width: 48em) {
  .responsive-table thead {
    position: relative;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }
}
.responsive-table thead th {
  background-color: #1d96b2;
  border: 1px solid #1d96b2;
  font-weight: normal;
  text-align: center;
  color: white;
}
.responsive-table thead th:first-of-type {
  text-align: left;
}
.responsive-table tbody,
.responsive-table tr,
.responsive-table th,
.responsive-table td {
  display: block;
  padding: 0;
  text-align: left;
  white-space: normal;
}
@media (min-width: 48em) {
  .responsive-table tr {
    display: table-row;
  }
}
.responsive-table th,
.responsive-table td {
  padding: .5em;
  vertical-align: middle;
}
@media (min-width: 30em) {
  .responsive-table th,
  .responsive-table td {
    padding: .75em .5em;
  }
}
@media (min-width: 48em) {
  .responsive-table th,
  .responsive-table td {
    display: table-cell;
    padding: .5em;
  }
}
@media (min-width: 62em) {
  .responsive-table th,
  .responsive-table td {
    padding: .75em .5em;
  }
}
@media (min-width: 75em) {
  .responsive-table th,
  .responsive-table td {
    padding: .75em;
  }
}
.responsive-table caption {
  margin-bottom: 1em;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 48em) {
  .responsive-table caption {
    font-size: 1.5em;
  }
}
.responsive-table tfoot {
  font-size: .8em;
  font-style: italic;
}
@media (min-width: 62em) {
  .responsive-table tfoot {
    font-size: .9em;
  }
}
@media (min-width: 48em) {
  .responsive-table tbody {
    display: table-row-group;
  }
}
.responsive-table tbody tr {
  margin-bottom: 1em;
}
@media (min-width: 48em) {
  .responsive-table tbody tr {
    display: table-row;
    border-width: 1px;
  }
}
.responsive-table tbody tr:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .responsive-table tbody tr:nth-of-type(even) {
    background-color: rgba(94, 93, 82, 0.1);
  }
}
.responsive-table tbody th[scope="row"] {
  background-color: #1d96b2;
  color: white;
}
@media (min-width: 30em) {
  .responsive-table tbody th[scope="row"] {
    border-left: 1px solid #1d96b2;
    border-bottom: 1px solid #1d96b2;
  }
}
@media (min-width: 48em) {
  .responsive-table tbody th[scope="row"] {
    background-color: transparent;
    color: #5e5d52;
    text-align: left;
  }
}
.responsive-table tbody td {
  text-align: right;
}
@media (min-width: 48em) {
  .responsive-table tbody td {
    border-left: 1px solid #1d96b2;
    border-bottom: 1px solid #1d96b2;
    text-align: center;
  }
}
@media (min-width: 48em) {
  .responsive-table tbody td:last-of-type {
    border-right: 1px solid #1d96b2;
  }
}
.responsive-table tbody td[data-type=currency] {
  /*text-align: right;*/
}
.responsive-table tbody td[data-title]:before {
  content: attr(data-title);
  float: left; 
  font-size: .8em;
  color: rgba(94, 93, 82, 0.75);
}
/* added */
.responsive-table tbody>tr>{ 
 font-weight: bold;
  font-size: 1.1em;
}
@media (min-width: 30em) {
  .responsive-table tbody td[data-title]:before {
    font-size: .9em;
  }
}
@media (min-width: 48em) {
  .responsive-table tbody td[data-title]:before {
    content: none;
  }
}
@media screen and (max-width: 36em) {
.score-table tr td.cflag {
		 display: none;
                 width:1px;
                 height:1px;
	}
}


/*  ========== Blockquote  ==================== */


blockquote.highlight {
    border-left: solid 4px #2d65a3;
    position: relative;
    margin:0 auto;
    width: 75%;
    padding:0 6px;
}
blockquote.highlight p {
    font-family:'Poppins', sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: normal;
    line-height:36px;
    margin: 30px 0;
    padding: 8px 24px;
    color:#000;
    width:80%;
    max-width: 960px;
}


/* ============  FOOTER ============ */

footer ul {
  list-style: none;
  padding-left: 0;
}
footer {
  /* background-color: #355e3b; */ /*  htmlcolorcodes.com/colors/shades-of-green/ */
  color: #bbb;
  line-height: 1.4375;
  /* background-image:url ('assets/blue-tennis-ct-bg.jpg') no-repeat center/cover;
  content: url("assets/blue-tennis-ct-bg.jpg") center/cover; */
  background: url('../assets/blu-10s-ct-1980px.jpg') center;
  background-size: cover;  
 /*  background: rgba(0, 0, 0, 0.9); */
  min-height: 300px;
  position: relative;

  z-index: 9999;
  center: 0px;
  max-width: 1980px;
}
footer a {
  text-decoration: none;
  color: #d6d6d6;/*eee;*/
}
footer a:hover {
  text-decoration: underline;
}
.ft-title {
  color: #93c572; /* fff; */
  font-family: Montserrat', serif;
  font-size: 22px;
  padding-bottom: 10px;
}
/* Sticks footer to bottom */
/* body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
} */
.ft-container {
  flex: 1;
}
/* ========= Footer main ================ */
.ft-main {
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 29.8125rem /* 481px */) {
  .ft-main {
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 768px) {
  .ft-main-item {
    justify-content:center;}
}

@media only screen and (max-width: 420px) {
.ft-main {
  padding: 20px 30px;
  display: flex;
  justify-content: center;
}
.ft-main-item {
  display: flex;
  justify-content: center;
}
.ft-main-item p {
 font-size:14px;
 }
.ft-social-list {
  display: flex;
  justify-content: center;}
}
@media only screen and (min-width: 77.5rem /* 1240px */) {
  .ft-main {
    justify-content: space-evenly;
  }
}
.ft-main-item {
  padding: 20px;
  min-width: 200px;
}
.ft-main-item p {
 padding:15px 0 15px 0;
}

/* Footer main | Newsletter form */
footer form {
  display: flex;
  flex-wrap: wrap;
}
footer input[type="email"] {
  border: 0;
  padding: 10px;
  margin-top: 5px;
}
footer input[type="submit"] {
  background-color: #9c8321;
  color: #fff;
  cursor: pointer;
  border: 0;
  padding: 10px 15px;
  margin-top: 5px;
}
/* Footer social */
.ft-social {
  padding: 0 30px 20px;
}
.ft-social-list {
  display: flex;
  /*justify-content: center;*/
  align-items:left;
  border-bottom: 1px #777 solid;
  padding-top: 12px;
}
.ft-social-list li {
  margin: 8px;
  font-size: 22px;/*1.75rem;*/
}
.ft-social-list li a, .ft-social-list li a:hover {
text-decoration:none;
color:none;
}
/* Footer legal */
.ft-legal {
  padding: 20px 30px;
  background-color: #334336; 
}
.ft-legal-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ft-legal-list li {
  margin: 2px 10px;
  white-space: nowrap;
  font-size:15px;
}
.ft-legal list li a {
color:#a0a2b1;
}
/* one before the last child */
.ft-legal-list li:nth-last-child(2) {
    flex: 1;
}