html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: 'Calibri', sans-serif;
}
h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 80px;
  text-align: center;
}
.container {
  max-width: 1600px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

.skills {
  padding: 50px 0;
}
.skills__grid-item {
  background-color: #F5F5F5;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.skills__grid-image img {
  max-width: 100%;
}
.skills__grid-content {

}

.skills__grid-content h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 80px;
  color: #263238;
}
.skills__grid-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8F95A5;
  max-width: 435px;
  width: 100%;
}
.skills__grid-content button {
  width: 218px;
  height: 60px;
  background: #263238;
  border-radius: 5px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: 0.3s all;
}
.skills__grid-content button:hover {
  opacity: 0.8;
}

/* Grid */
.skills__grid {
  display: grid;
  gap: 30px;
  grid-template-areas: 
  "one two three"
  "one four four";
  justify-content: space-evenly;
  align-items: stretch;
}
.speaking {
  grid-area: one;
}
.writing {
  grid-area: two;
}
.reading {
  grid-area: three;
}
.listening {
  grid-area: four;
  flex-direction: row;
}
.listening .skills__grid-image {
  order: 1;
}
@media screen and (max-width: 1280px) {
  .skills__grid {
    grid-template-areas: 
    "one two"
    "three four";
  }
  .listening {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .skills__grid {
    grid-template-areas: 
    "one"
    "two"
    "three" 
    "four";
  }
}