
:root {
  --primary-color:  #ffffff;
  --secondary-color: #94a3b8;
  --text-dark: #ffffff;
  --text-light: #94a3b8;
  --white: #ffffff;
}


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


body {
  font-family: "Montserrat", sans-serif;

  grid-template-areas:
  "navbar"
  "main"
  "footer";
}
navbar{grid-area:navbar;}
main{grid-area:main;}
footer{grid-area:footer;}

.section__container {
  width: 85vw;
  margin:0px auto;
  padding: 6rem 0rem;
  text-align: center;
}

.section__container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.section__container h1 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.section__container h1::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 5rem;
  background-color: var(--primary-color);
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align:self;
}
div.section__card{width:85%;
margin-left:auto;
margin-right:auto;}
.section__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0.8rem 1rem 2rem;
 
  border-radius: 0px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  cursor:pointer;
      z-index: 0;
 -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;	  
}

.section__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
 
  width: 100%;
  height:100%;
  
  
  background-color: var(--primary-color);
  z-index: -100;
  transition: 0.5s;
}



.section__card h4 {
	font-family: 'Ms Reference Sans Serif', sans-serif;
  margin-top: 0rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #75757C;
  transition: 0.3s;
}

.section__card p {
  margin-bottom: 2rem;
  color: #75757C;
  transition: 0.3s;
  z-index:1;
   -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.section__card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #75757C;
  transition: 0.3s;
}

.section__card h6 {
  font-size: 0.8rem;
  font-weight: 400;
  color: #75757C;
  transition: 0.3s;
}

.section__card:hover::before {
 background-color: #ffffff;
 z-index:-100;
}

.section__card:hover :is(h4, h5) {
  color: #75757C;
}

.section__card:hover :is(p, h6) {
  color: #75757C;
}

.section__card:hover img {
  border-color: var(--white);
}
@media screen and (max-width: 480px) {
	
	
	.section__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
 
}

.section__container {
width: 89vw;}
section.section_container{
	
   
    padding: 2rem 0.5rem!important;
}
div.section__card{width:89%!important;
margin-left:auto;
margin-right:auto;}
}