*,*:before,*:after{
  box-sizing: border-box;
}

:root{
  --white: #fff;
  --black: #000;
  --shadow : rgba(0,0,0, 0.3);
  --text-color: #707070;
  --selected-menu : #182F6B;
  --background-grey: rgba(112,112,112,.05);
}

html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body{
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background-grey);
}

.wrapper{
  max-width: 1780px;
  width: 100%;
  padding: 0 8%;
}

/* Title */
.title{
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  color: var(--selected-menu);
  position: relative;
}

.title:after{
  content: "";
  position:absolute;
  width: 10rem;
  height: .6rem;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  background-color: var(--selected-menu);
}

.title--white{
  color: var(--white);
}
.title--white:after{
  background-color: var(--white);
}

/* Title */

/* Services */

.services{
  background-color: var(--selected-menu);
  padding: 6rem 0;
  margin-top: 25rem;
}

.service-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  margin-top: 6rem;
}
.service-image{
  width: 100%;
}

.service-image > img{
  padding: 0;
  margin : 0;
  width: 100%;
}

.service-item{
  width: 30%;
  color: var(--white);
  text-align: center;
  margin-bottom: 4rem;
}
.service-item > p{
  margin: 0;
  font-size: 3rem;
  font-weight: 400;
}

/* Services */

@media screen and ( max-width: 1024px){
  html{
    font-size: 50%;
  }
}

@media screen and ( max-width: 768px){
  html{
    font-size: 40%;
  }
}

@media screen and (max-width: 480px){
  html{
    font-size: 48.5%;
  }
  .service-item{
    width: 100%;
    margin-bottom: 8rem;
  }
}