* {
  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;
}

/* 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.5rem 1.25rem;
  font-size: 16px;
}

.navbar .menu-item:hover {
  color: #016737; /* 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: 3rem;
}

.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: #44237b; /* 016737 green 217bba; blue 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: #ffffff;
  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.6);
    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: 4rem;
  margin-top: 1rem;
  font-weight:800;
}

.section-large-text-inner h3 {
  font-size: 2rem;
}

.section-large-text-inner p {
  font-size: 1.5rem;
  margin-top: 1rem;
}

@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: 2rem;
  }

  .section-showcase img {
    width: 80%;
    margin: auto;
  }

  .section-large-text-inner h2 {
    font-size: 3rem;
  }

  .section-large-text-inner h3 {
    font-size: 1.5rem;
  }

  .section-large-text-inner p {
    font-size: 1.25rem;
  }
}

/* ================================================ */
/* **************  end of hero home above ************
==================================================== */

.one-column {
    text-align: center; 
    padding:10px;
    margin:20px;
    background-color: #efefec;
    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;
}
.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:500px;
}
.two-column 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: 600px) {
  .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;
  }
}


/* =========== full width div  ==================  */


.slogan {background-color: #a8d2b9; 
margin-bottom: 50px; width: 100%;}
.slogan .container1 {width:100%; }
.slogan-content {
    display: flex;
    /* align-items: center;*/
    justify-content: center; 
    flex-direction: row; 
    padding:15px 60px;
}

.slogan-content .slogan-text {
    font-size: 22px;
    font-weight: lighter;
    font-style: italic;
    color: #1f2937 
}

.slogan-content .author {
    font-size: 17px;
    font-weight: bold;
    color: #1f2937;
    align-self: flex-end; 
    padding:15px;
}



/* ========== 3 flexboxes in a row and responsive =============== */


.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:#fff;}

.main-container img {
  width: 100%;
}

.main-container .content {
  font-size: 15px;
  text-align:justify;
}

.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: 3px solid green;
    box-sizing: border-box;
    background-color: green;
    color:#fff;
  }
  .item-container:nth-child(4n+1) {
    margin-left: 0;
  }
  .item-container: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: green;
    color:#fff;
    -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;
  } 
}    /*  below was 720px */

@media (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;}
  .item-container {
    margin: 15px 0;
    padding: 10px;
    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;
  }
 .slogan {
   margin-bottom: 0px;
   margin: 20px 5px 10px 5px;
   }
}
/* ============  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:100vw;
   flew-wrap: wrap;
}

.media-child {
   width:32%;
   min-width: 320px;
   padding:10px;
   margin:10px;
}
.media-vdesc h3 {
   font-size:18px;
   font-weight:500;
   text-align:center;
   padding:10px;
}
.media-vdesc h3 a {
   text-decoration:none;
   color:#215529;
}
@media (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-vdesc h3 {
   font-size:17px;
   font-weight:600;
   text-align:center;
   }
}


/* ====================  PAGE ADS  ===========   */


.page-ads, .side-img {
   flex: none;
   border-left: 1px solid silver;
   margin-left: 10px;
   padding-left: 10px;
   width: 320px; 
   overflow: hidden;
 }
 
 .advert {
   flex: none;
   align-self: center;
   padding: 5px;
   margin: 15px;
   width: 250px;
   height: 250px;
   background: lightblue;
   color: green;
   overflow: hidden;
   display: flex;
   justify-content: center;
   align-items: center;
 }
.side-img img, .right-container img {
   align-self: center;
   padding: 5px;
   margin: 15px;
   width: 250px;
   height: 100%;
   overflow: hidden;
   border-left:none;
}
@media only screen and (max-width: 620px) {
  .page-ads { display: none; }
}


/* ============== FLEX CONTAINERS =========== */

.flex-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px auto;  /* was 10px 0 */
  max-width: 1600px;
}

.flex-item {
  margin: 5px;
  padding: 8px 14px;
}
.flex-item p {
  text-align: left; 
  font-family:'Roboto', sans-serif;
  font-size:17px;
  line-height:24px;
  margin-bottom: 20px;
}
.flex-item p.ctr {
  text-align: center; 
  font-family:'Roboto', sans-serif;
  font-size:17px;
  line-height:24px;
  margin-bottom: 20px;
}
.flex-item h2 {
  text-align:center;
  font-family:'Roboto', sans-serif;
  font-size:36px;
  padding:10px;
  letter-spacing:4px;
}
.flex-item h3 {
  text-align:center;
  font-family:'Roboto', sans-serif;
  font-size:26px;
  padding:10px;
  letter-spacing:4px;
}
.flex-item img {
 width:100%;
/* max-width:1000px;*/
 height:auto;
}

.img-wrapper-full {
width:100%;
max-height:460px;
margin-left:-5px; margin-right:-5px;
}

/* 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: 30px;
  flex-grow: 30;
}

.flex-item:nth-child(2) {
  flex-basis: 5px;
  flex-grow: 10;
}
img.middy {
 width: 100%;
  max-width: 300px;
  text-align: center; 
  display: flex; 
  justify-content: center;
  position: relative;
  margin-left:20px;
}
@media only screen and (max-width:1000px) {
.parent {flex-direction:column; align-items:center; justify-content:center;}
.item {width:100%; display:flex;align-items:center; justify-content:center; }
}

@media only screen and (max-width: 768px) {
  .flex-container {
   width:100%;
   display: flex;
   flex-direction: column;
}
  img.middy {
    margin-left:30px;
}
.flex-item h2 {
  font-size:30px;
}

.flex-item h3 {
  font-size:23px;
}
 .flex-item img {
  height:70%;
  max-height:350px;
}
 .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;
}
.page-ads, .side-img {
  border-left:none;
  }

img.img-wrapper-full {
width:100%;
max-height:256px;
  }
}

.item {max-width:400px; overflow:hidden;
}

/* ============  FOOTER ============ */

footer ul {
  list-style: none;
  padding-left: 0;
}
footer {
  /* background-color: #355e3b; */ /*  htmlcolorcodes.com/colors/shades-of-green/ */
  color: #bbb;
  line-height: 1.5;
  /* 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: 1.375rem;
  padding-bottom: 0.625rem;
}
/* Sticks footer to bottom */
/* body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
} */
.ft-container {
  flex: 1;
}
/* ========= Footer main ================ */
.ft-main {
  padding: 1.25rem 1.875rem;
  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: 1.25rem 1.875rem;
  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: 1.25rem;
  min-width: 12.5rem;
}
.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: 0.625rem;
  margin-top: 0.3125rem;
}
footer input[type="submit"] {
  background-color: #9c8321;
  color: #fff;
  cursor: pointer;
  border: 0;
  padding: 0.625rem 0.9375rem;
  margin-top: 0.3125rem;
}
/* Footer social */
.ft-social {
  padding: 0 1.875rem 1.25rem;
}
.ft-social-list {
  display: flex;
  /*justify-content: center;*/
  align-items:left;
  border-bottom: 1px #777 solid;
  padding-top: 0.75rem;
}
.ft-social-list li {
  margin: 0.5rem;
  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: 0.9375rem 1.875rem;
  background-color: #334336; 
}
.ft-legal-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ft-legal-list li {
  margin: 0.125rem 0.625rem;
  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;
}