* {
  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: #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: #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.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: 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;
  }
}

/* ================================================ */
/* **************  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;
}
.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: none;
   border-left: 1px solid silver;
   margin-left: 50px;
   padding-left: 10px;
   width: 230px; 
   overflow: hidden;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align:center;
 }
 
 .advert {
   flex: none;
   /*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;
 }
.side-img img, .right-container img {
   /*align-self: center;*/
   padding: 5px;
   margin: 15px auto; 
   width: 230px;
   height: 100%;
   overflow: hidden;
   border-left:none;
   display: flex;
   justify-content: center;
   align-items: center;
}
@media only screen and (max-width: 620px) {
  .page-ads { display: none; }
  .side-img { margin-left: 50px;}
}


/* ============== FLEX CONTAINERS =========== */

.flex-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 5px;
}

.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 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;
}

/* 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: 300px;
  text-align: center; 
  display: flex; 
  justify-content: center;
  /* position: relative;*/
  margin-left:20px;
}
@media only screen and (max-width: 768px) {
  .flex-container {
   width:100%;
   display: flex;
   flex-direction: column;
}
  img.middy {
    margin-left:30px; 
   display: flex;
   justify-content: center;
   align-items: center;
}
 .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;}
}


/* ============= 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));
}

.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%;
  opacity: 0.8;
  /*background-color:#E3783B;*/
  background: url(../img/red-clay-ct-bg.jpg) no-repeat;
  background-size: cover;
  border-radius: 8px;
  padding:15px;
  color:#F1F3F4;
}
@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: 90%;
	 border-radius: 3px;
	 box-shadow: 2px 3px 3px 2px rgba(0, 0, 0, .3);
	 margin: 25px auto;
	 overflow: hidden;
}
 .Prodcontainer .tab {
	 display: none;
	 background: #fff;
	 padding: 0 15px;
         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 {
max-width:22px;
max-height: 15px;
}
/* Zebra striping */
.table tbody tr:nth-of-type(odd) { 
	background: #d5d5d5; 
	}

/* 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;
}