@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary:  #1d1f20;
    --secondary:  #e5e5e5;
    --tertiary: #5cb9cf;
}


*, *::before, *::after {
	 margin: 0;
	 padding: 0;
	 box-sizing: inherit;
}
 html {
	 box-sizing: border-box;
	 font-size: 50%;
}
 @media only screen and (min-width: 37.5em) {
	 html {
		 font-size: 56.25%;
	}
}
 @media only screen and (min-width: 56.25em) {
	 html {
		 font-size: 62.5%;
	}
}
 body {
     font-family: "Work Sans", sans-serif;
     font-size: 1.6rem;
	   font-weight: 100;
     font-style: normal;
	/* font-family: "Poppins", sans-serif;
	 font-size: 1.6rem;
	 font-weight: 400;*/
	 color: #fff;
	 background: var(--primary);
}




h2 {
  position: relative;
  padding: 0;
  margin: 0;
  font-weight: 300;
  font-size: 40px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;

}

h2 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
}
h2 em {
  font-style: normal;
  font-weight: 600;
}


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

.align-center{

    align-content: center;

}

.title-description {
    margin: 1.5rem;
}

.section-title h2 {
  text-align:center;
 
  text-transform:uppercase;
  font-size:26px; letter-spacing:1px;
  
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 16px 0;
  grid-gap: 22px;
  padding: 1em 5em;
  
}

.section-title h2:after,.section-title h2:before {
  content: " ";
  display: block;
  border-bottom: 2px solid #ccc;
  /*background-color:#f8f8f8;*/
  
}
@media (max-width: 720px) {
  .section-title h2 {
      padding: 1em 1em;
  }
  
}
