body{
  font-family: Montserrat, sans-serif;
  color: #565756;
}

.text-12{
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 25px;

}
.hover{
  cursor: pointer;
}

.button:hover{
  animation: bounce;
}

.hero-section{
  padding-left: 30px;
  padding-right: 30px;
}

.hello{
  display: inline-block;
  transition: 0.3s;
}


.project-btn {
  transition: all 0.2s linear 0s;
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #58B4D9;
  background-color: #fff;
  text-transform: capitalize;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  padding: 10px 10px;
  width: 200px;
  border-radius: 100px;
  overflow: hidden;
}
.project-btn:before {
  content: "";
  font-family: FontAwesome;
  font-size: 15px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: 40px;
  transition: all 0.2s linear 0s;
}
.project-btn:hover {
  text-indent: -20px;
  transition: all 0.2s linear;
  box-shadow: 0 2px 4px rgba(104, 132, 136, 0.4);
}
.project-btn:hover:before {
  opacity: 1;
  text-indent: 0px;
}

.submit-button:hover{
  transition: all 0.2s linear;
  background-color: #2876BC;
}

.responsive-grid{
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 40px; 
  row-gap: 30px;
}

.methodology-card{
  background-color: rgb(255, 255, 255);
  font-family: Montserrat, sans-serif;
  color: #565756;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: all 200ms cubic-bezier(.164, .317, .38, .767);
}

.methodology-card > img{
  width: 120px;
  height: 100px;
  align-self: center;
  margin-top: 30px;
  margin-bottom: 15px;
}

.methodology-card .content{
 padding-left: 30px;
 padding-right: 20px;
 margin-top: 20px;
}

.methodology-card .number{
  color: #498FE0;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 2px;
  margin-right: 20px;
}

.methodology-card .title{
  color: rgb(22, 22, 22);
  font-weight: 500;
  font-size: 20px;
}

.methodology-card .description{
  margin-top: 22px;
  font-size: 15px;
  line-height: 22px;
}

.methodology-card{
  transition: all 200ms cubic-bezier(.164, .317, .38, .767);
}
.methodology-card:hover{
  /* transform: translateX(10px); */

  transform: translate3d(0px, -20px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(-1deg, 1deg);
  transition: all 200ms cubic-bezier(.164, .317, .38, .767);

    /* transform-style: preserve-3d; */
  /* box-shadow: 0 5px 2px rgba(35,32,39,0.2); */
  border-radius: 20px;
  padding: 0px;
  /* transform: translateZ(6px); */
}

footer .social-icons{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .icon{
  margin-right: 30px;
}

.section-11{
  background-color: #F4F5F4;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-12-1{
  background-color: #F4F5F4;
  padding-top: 100px;
  padding-bottom: 100px;
}

::selection{
  background-color: rgba(182, 55, 255, 0.3);
}