:root {
  --gray: #263238;
  --light-gray: #8f95a5;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

body {
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1348px;
  width: 100%;
  margin: 0 auto;
}

/* Header */

.header__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 100px;
}

.header__menu-logo {
  font-weight: 400;
  font-size: 36px;
  color: #000;
}

.accent__color {
  color: #939393;
}

.header__menu-list {
  display: flex;
  gap: 36px;
}

.header__menu-item {
  font-weight: 500;
  font-size: 20px;
  color: var(--gray);
  text-transform: capitalize;
}

.header__menu-link {
  position: relative;
}

.header__menu-link:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--gray); 
  transition: width 0.5s;
}
.header__menu-link:hover:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px; 
  background-color: var(--gray); 
  transition: width 0.5s; 
}

.header__menu-button {
  font-weight: 400;
  font-size: 24px;
  color: #000;
  text-transform: capitalize;

  border: 2px solid var(--gray);
  border-radius: 5px;
  width: 220px;
  height: 70px;
  background-color: #fff;

  margin-right: 6px;
  margin-top: 6px;
}

.header__menu-button:hover { 
  background-color: var(--gray);
  color: #fff;
  transition: 0.5s ease;
}

.header__menu-burger {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}

.header__menu-burger-line {
  width: 30px;
  height: 3px;
  border-radius: 1px;
  background-color: #39515e;
}

.header__menu-burger-line:last-child {
  width: 21px;
}

.header__main {
  display: flex;
  justify-content: space-between;
}

.header__main-group-title {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.header__main-title {
  font-weight: 600;
  font-size: 64px;
  line-height: 125%;
  color: #000;
  text-transform: capitalize;
  max-width: 386px;
  margin-bottom: 42px;
}
.header__main-bulb {
  position: absolute;
  width: 120px;
  align-self: center;
  left: 76%;
  top: 34%;
  
}
.header__main-group-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--light-gray);
  max-width: 560px;
  margin-bottom: 60px;
}
.header__main-group-button {
  border-radius: 15px;
  width: 438px;
  height: 118px;
  font-weight: 400;
  font-size: 36px;

}
.button {
  background-color: var(--gray);
  color: #fff;
}
.button:hover {
  opacity: 0.8;
  transition: 0.2s;
}
.header__main-img {
  max-width: 661px;
  height: auto;
  margin-top: -50px;
  
}

.br2 {
  display: none;
}

/* Main */
/* Skills */

.main {
}
.skills {
  padding-top: 120px;
  padding-bottom: 282px;
}
.skills__title {
  margin-bottom: 108px;
}
.main__title {
  font-weight: 600;
  font-size: 48px;
  color: #000;
  text-align: center;
  text-transform: capitalize;
}
.skills__cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 435px);
  grid-template-rows: 531px 343px;
  grid-template-areas: 
  "speaking writing reading"
  "speaking listening listening";
  justify-content: space-evenly;
  align-items: stretch;
}
.skills__card {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.speaking {
  grid-area: speaking;
  padding: 35px 22px 90px 24px;
}
.writing {
  grid-area: writing;
  padding: 0 23px 44px 38px;
  align-items: self-end;
  
}
.reading {
  grid-area: reading;
  padding: 6px 40px 44px 0;
}
.listening {
  grid-area: listening;
  flex-direction: row-reverse;
  padding: 42px 32px 68px 43px;
  gap: 100px;
}

.speaking>img {
  max-width: 390px;
  height: auto;
  margin-bottom: 4px;
}
.writing>img {
  max-width: 293px;
  height: auto;
  margin-top: -6px;
  margin-bottom: -38px;
}
.reading>img {
  max-width: 371px;
  height: auto;
  margin-left: -5px;
}
.listening>img {
  max-width: 382px;
  min-height: 255px;
  height: auto;
}

.speaking__group {
  padding-left: 21px;
}
.speaking__group>h3 {
  margin-bottom: 7px;
}
.speaking__group>p {
  line-height: 1.5;
  margin-bottom: 32px;
}
.writing__group>h3 {
  margin-bottom: -8px;
}
.writing__group>p {
  line-height: 1.5;
  margin-bottom: 32px;
}
.reading__group {
  padding-left: 36px;
}
.reading__group>h3 {
  margin-bottom: -14px;
}
.reading__group>p {
  line-height: 1.5;
  margin-bottom: 34px;
}
.listening__group>h3 {
  margin-bottom: -4px;
}
.listening__group>p {
  line-height: 1.5;
  margin-bottom: 22px;
}

.skills__card-img {
}
.skills__card-group {
}
.skills__card-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 267%;
  color: var(--gray)
}
.skills__card-text {
  font-weight: 400;
  font-size: 16px;
  color: var(--light-gray)
}
.skills__card-button {
  border-radius: 5px;
  width: 218px;
  height: 60px;
  font-size: 20px;
}
.button__speak {
  width: 230px;
  height: 60px;
  font-size: 18px;
}

/* About */
.about {
  padding-top: 10px;
  padding-bottom: 180px;
}
.about__group {
  display: flex;
  justify-content: space-between;
}
.about__info {
  padding-left: 3px;
}
.about__title {
  text-align: left;
  margin-bottom: 35px;
  padding-left: 3px;
}

.about__text {
  color: var(--light-gray);
  font-size: 20px;
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.about__nambers {
  display: flex;
}
.about__numbers-group {
  margin-right: 142px;
}
.about__numbers-group:nth-child(2) {
  margin-right: 86px;
}
.about__numbers-group:last-child {
  margin-right: 0;
}
.about__number {
  font-weight: 600;
  font-size: 48px;
  line-height: 167%;
  color: #2a3246;
  text-align: center;
}
.about__number-text {
  font-size: 20px;
  color: var(--light-gray);
  text-align: center;
  padding-left: 5px;
}
.about__img {
  max-width: 500px;
  height: auto;
  margin-top: -132px;
  margin-right: 16px;
}

/* Pricing */
.pricing {
  padding: 20px 0 200px 4px;
}
.pricing__title {
  margin-bottom: 70px;
}
.pricing__group {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pricing__card {
 
}
.pricing__card-img {
  height: auto;
}
.online-course {
  max-width: 433px;
  margin-right: 18px;
}
.online-classes {
  max-width: 406px;
  padding-left: 12px;
}
.webinar {
  max-width: 480px;
  margin-right: 16px;
}

.online-course>img {
  max-width: 311px;
  margin-bottom: 48px;
  margin-left: 26px;
}
.online-classes>img {
  max-width: 391px;
  margin-top: 26px;
  margin-bottom: 50px;
  margin-left: -4px;
}
.webinar>img {
  max-width: 340px;
  margin-bottom: 18px;
  margin-left: 50px;

}
.online-course>h3 {
  margin-bottom: 24px;
  max-width: 374px;
}
.online-classes>h3 {
  margin-bottom: 28px;
}
.webinar>h3 {
  margin-bottom: 26px;
}
.online-course>p {
  margin-bottom: 30px;
}
.online-classes>p {
  margin-bottom: 60px;
}
.webinar>p {
  margin-bottom: 60px;
  max-width: 426px;
}

.pricing__card-title {
  font-weight: 600;
  font-size: 30px;
  color: var(--gray);
}
.pricing__card-text {
  font-weight: 400;
  font-size: 20px;
  color: var(--light-gray);
  max-width: 420px;
  line-height: 1.5;
  
}
.pricing__card-price {
  background-color: #eee;
  border-radius: 5px;
  font-weight: 400;
  font-size: 18px;
  color: #546269;
  width: 240px;
  height: 45px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

}

.price__style {
  display: inline-block;
  font-weight: 400;
  font-size: 30px;
  color: var(--gray);
  align-self: flex-start;
  margin-top: 5px;
}

/* Contact */
.contact {
  padding-bottom: 133px;
}
.contact>.container {
  max-width: 1374px;
  width: 100%;
}
.contact__title {
  position: relative;
  top: 100px;
  left: 38%;
  max-width: 400px;
}

.contact__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 10px;
}
.contact__img {
  max-width: 477px;
  height: auto;
}
.contact__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 188px;
  margin-top: 60px;

}
.contact__info-text {
  font-weight: 400;
  font-size: 20px;
  color: var(--light-gray);
  max-width: 776px;
  line-height: 1.5;
  margin-bottom: 51px;
}
.contact__info-form {
  display: flex;
  gap: 11px;
}

.contact__field {
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  width: 450px;
  height: 80px;
  padding-left: 30px;
}
.contact__field:focus {
  border-color: var(--gray);
  outline: none;
}
.contact__field::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--light-gray);
}
.contact__button {
  border-radius: 10px;
  width: 264px;
  height: 80px;
  font-weight: 500;
  font-size: 20px;
}

/* Footer */
.footer {
}
.footer>.container {
  border-top: 1px solid #c4c4c4;
  padding-top: 42px;
  padding-bottom: 62px;
  padding-left: 2px;
}
.footer__group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.header__menu-logo {
}
.footer__logo {
  
}
.accent__color {
}
.footer__group-text {
  font-size: 24px;
  color: var(--light-gray);
  
}






/* Materialize */
.sidenav-trigger {
  float: left;
  position: relative;
  z-index: 1;
  height: 56px;
  margin: 0 18px;
}

a.sidenav-trigger {
  height: 64px;
  line-height: 64px;
}

.sidenav {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.sidenav .collapsible,
.sidenav.fixed .collapsible {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.sidenav .collapsible li,
.sidenav.fixed .collapsible li {
  padding: 0;
}

.sidenav .collapsible-header,
.sidenav.fixed .collapsible-header {
  background-color: transparent;
  border: none;
  line-height: inherit;
  height: inherit;
  padding: 0 16px;
}

.sidenav .collapsible-header:hover,
.sidenav.fixed .collapsible-header:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.sidenav .collapsible-header i,
.sidenav.fixed .collapsible-header i {
  line-height: inherit;
}

.sidenav .collapsible-body,
.sidenav.fixed .collapsible-body {
  border: 0;
  background-color: #fff;
}

.sidenav .collapsible-body li a,
.sidenav.fixed .collapsible-body li a {
  padding: 0 23.5px 0 31px;
}

.sidenav {
  position: fixed;
  width: 430px;
  left: 0;
  top: 0;
  margin: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  height: 100%;
  height: calc(100% + 60px);
  height: -moz-calc(100%);
  padding-top: 39px;
  padding-left: 39px;
  padding-bottom: 60px;
  background-color: #fff;
  z-index: 999;
  overflow-y: auto;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.sidenav.right-aligned {
  right: 0;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  left: auto;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.sidenav .collapsible {
  margin: 0;
}


.sidenav li.active {
  background-color: rgba(0, 0, 0, 0.05);
}

.sidenav li>a {
  color: rgba(0, 0, 0, 0.87);
  display: block;
}


.sidenav li>a.btn,
.sidenav li>a.btn-large,
.sidenav li>a.btn-small,
.sidenav li>a.btn-large,
.sidenav li>a.btn-flat,
.sidenav li>a.btn-floating {
  margin: 10px 15px;
}

.sidenav li>a.btn,
.sidenav li>a.btn-large,
.sidenav li>a.btn-small,
.sidenav li>a.btn-large,
.sidenav li>a.btn-floating {
  color: #fff;
}

.sidenav li>a.btn-flat {
  color: #343434;
}

.sidenav li>a.btn:hover,
.sidenav li>a.btn-large:hover,
.sidenav li>a.btn-small:hover,
.sidenav li>a.btn-large:hover {
  background-color: #2bbbad;
}

.sidenav li>a.btn-floating:hover {
  background-color: #26a69a;
}


.sidenav .divider {
  margin: 8px 0 0 0;
}

.sidenav .subheader {
  cursor: initial;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.54);
  font-size: 14px;
  font-weight: 500;
  line-height: 48px;
}

.sidenav .subheader:hover {
  background-color: transparent;
}

.sidenav .user-view {
  position: relative;
  padding: 32px 32px 0;
  margin-bottom: 8px;
}

.sidenav .user-view>a {
  height: auto;
  padding: 0;
}

.sidenav .user-view>a:hover {
  background-color: transparent;
}

.sidenav .user-view .background {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sidenav .user-view .circle,
.sidenav .user-view .name,
.sidenav .user-view .email {
  display: block;
}

.sidenav .user-view .circle {
  height: 64px;
  width: 64px;
}

.sidenav .user-view .name,
.sidenav .user-view .email {
  font-size: 14px;
  line-height: 24px;
}

.sidenav .user-view .name {
  margin-top: 16px;
  font-weight: 500;
}

.sidenav .user-view .email {
  padding-bottom: 16px;
  font-weight: 400;
}

.sidenav.sidenav-fixed {
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  position: fixed;
}

.sidenav.sidenav-fixed.right-aligned {
  right: 0;
  left: auto;
}

.sidenav .collapsible-body>ul:not(.collapsible)>li.active,
.sidenav.sidenav-fixed .collapsible-body>ul:not(.collapsible)>li.active {
  background-color: #ee6e73;
}

.sidenav .collapsible-body>ul:not(.collapsible)>li.active a,
.sidenav.sidenav-fixed .collapsible-body>ul:not(.collapsible)>li.active a {
  color: #fff;
}

.sidenav .collapsible-body {
  padding: 0;
}

.sidenav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 997;
  display: none;
}


/* Медиазапросы */


@media screen and (max-width: 1400px) {
  /* Header */
  .header__menu, .header__main, .about, .pricing, .contact, .footer {
    padding-right: 15px;
    padding-left: 15px;
  }
  /* Skills */
  .skills__cards {
    grid-template-columns: repeat(3, 310px);
    justify-content: center;
  }
  .skills__card-title {
    font-size: 26px;
  }
  .skills__card-text {
    font-size: 15px;
  }
  .speaking__group>p {
    margin-bottom: 108px;
  }
  .reading>img {
    margin-bottom: 30px;
  }
  .reading__group>p {
    margin-bottom: 40px;
  }
  .listening {
    gap: 10px;
  }
  .listening>img {
    max-width: 340px;
    min-height: 230px;
  }
}

@media screen and (max-width: 1300px) {
  /* Pricing */
  .pricing__group {
    gap: 20px;
    align-items: flex-end;
  }
  .online-course>img {
    max-width: 250px;
  }
  .online-classes>img {
    max-width: 300px;
  }
  .webinar>img {
    max-width: 290px;
  }

  /* Contact */
  .contact__group {
    margin-right: 66px;
  }
  .contact__img {
    max-width: 380px;
  }
  .contact__info {
    margin-top: 80px;
  }
  .contact__info-text {
    max-width: 600px;
  }
  .contact__field {
    width: 400px;
    height: 70px;
  }
  .contact__button {
    width: 240px;
    height: 70px;
  }
}

@media only screen and (max-width: 1164px) {
  /* Header */
  .header__main-title {
    font-size: 56px;
  }
  .header__main-group-text {
    max-width: 450px;
  }
  .header__main-img {
    max-width: 600px;
  }
  .header__main-group-button {
    width: 380px;
    height: 100px;
  }

  /* About */
  .about__img {
    max-width: 400px;
    height: 400px;
  }
  .about__info {
    max-width: 530px;
  }

  /* Pricing */
  .pricing__card {
    max-width: 340px;
  }
  .webinar>img {
    margin-left: 20px;
  }

  /* Contact */
  .contact__img {
    max-width: 360px;
  }
  .contact__info-text {
    max-width: 530px;
  }
  .contact__group {
    margin-right: 25px;
  }
  .contact__field {
    width: 360px;
  }
  .contact__button {
    width: 220px;
  }
}

@media screen and (min-width: 992px) {

  /* Header */
  .header__menu-burger {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .sidenav.sidenav-fixed {
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
  }

  .sidenav.sidenav-fixed.right-aligned {
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
  }

  .sidenav>a {
    padding: 0 16px;
  }

  .sidenav .user-view {
    padding: 16px 16px 0;
  }
}


@media screen and (max-width: 992px) {

  /* Header */
  .header__menu {
    padding: 27px 31px 80px;

  }

  .header__menu-logo {
    font-size: 30px;
    margin-right: 56px;
  }

  .header__menu-list {
    gap: 28px;

  }

  .header__menu-item {
    font-size: 16px;
    margin-top: 10px;
  }

  .header__menu-button {
    font-size: 18px;
    width: 160px;
    height: 50px;
    margin-right: 0;
    margin-top: 0;
  }

  .header__menu-burger {
    display: none;
  }

  .header__main {
    padding-left: 28px;
    padding-right: 21px;
    padding-bottom: 68px;
  }
  .header__main-title {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 30px;
  }
  .header__main-group-text {
    font-size: 20px;
    max-width: 424px;
    padding-left: 6px;
    margin-bottom: 34px;
  }
  .header__main-group-button {
    border-radius: 5px;
    width: 292px;
    height: 80px;
    font-size: 24px;
  }
  .header__main-img {
    max-width: 460px;
    margin-top: -14px;
  }
  .header__main-bulb {
    width: 80px;
    top: 42%;
    left: 71%
  }

  /* Main */
  /* Skills */
  .skills {
    padding-top: 0;
    padding-bottom: 116px;
  }
  .main__title {
    font-size: 36px;
  }
  .skills__title {
    margin-bottom: 70px;
  }
  .skills__cards {
    gap: 13px;
    justify-content: center;
    grid-template-columns: repeat(3, 303px);
    grid-template-rows: 441px 241px;
  }
  .skills__card-title {
    font-size: 22px;
  }
  .skills__card-text {
    font-size: 14px;
  }
  .skills__card-button {
    width: 196px;
    height: 57px;
    font-size: 18px;
  }
  .speaking {
    padding-top: 0;
    padding-left: 10px;
  }
  .speaking>img {
    max-width: 260px;
    min-height: 260px;
    padding-left: 6px;
    margin-bottom: 10px;
    align-self: flex-end;
  }
  .speaking__group>h3 {
    margin-bottom: 2px;
  }
  .speaking__group>p {
    max-width: 240px;
    margin-bottom: 48px;
  }
   .writing {
    padding-top: 12px;
    padding-left: 32px;
    padding-right: 8px;
  }
  .writing>img {
    max-width: 205px;
    min-height: 205px;
    margin-bottom: -18px;
  }
  .writing__group>h3 {
    margin-bottom: -1px;
  }
  .writing__group>p {
    margin-bottom: 20px;
  }
  .reading {
    padding-top: 16px;
    padding-left: 8px;
    padding-right: 28px;
  }
  .reading__group {
    padding-left: 18px;
  }
  .reading>img {
    max-width: 243px;
    min-height: 162px;
    margin-bottom: 14px;
  }
  .reading__group>h3 {
    margin-bottom: -4px;
  }
  .reading__group>p {
    margin-bottom: 22px;
  }
  .listening {
    padding-top: 14px;
    padding-left: 34px;
    padding-right: 18px;
    gap: 10px;
  }
  
  .listening>img {
    max-width: 254px;
    min-height: 169px;
    margin-top: 20px;
  }
  .listening__group>h3 {
    margin-bottom: -2px;
  }
  .listening__group>p {
    margin-bottom: 18px;
  }

  /* About */
  .about {
    padding-left: 31px;
    padding-right: 61px;
    padding-bottom: 120px;
  }
  .about__title {
    padding-left: 0;
  }
  .about__info {
    padding-left: 0;
  }
  .about__text {
    font-size: 16px;
    max-width: 516px;
    margin-bottom: 26px;
  }
  .about__nambers {
    padding-left: 6px;
  }
  
  .about__numbers-group {
    margin-right: 60px;
  }
  .about__numbers-group:nth-child(2) {
    margin-right: 43px;
  }
  .about__number {
    font-size: 30px;
    margin-bottom: 4px;
  }
  .about__number-text {
    font-size: 16px;
  }
  .about__img {
    max-width: 336px;
    height: 336px;
    margin-right: 0;
    margin-top: -114px;
  }

  /* Pricing */
  .pricing {
    padding: 26px 28px 56px 30px;
  }
  .pricing__title {
    margin-bottom: 42px;
  }
  .pricing__group {
    gap: 0;
    align-items: flex-start;
  }
  .pricing__card  {
  
  }
  .online-course {
    margin-right: 33px;
  }
  .online-classes {
    margin-right: 58px;
    padding-left: 8px;
  }
  .webinar {
    padding-left: 10px;
    margin-right: 0;
  }
  .online-course>img {
    max-width: 222px;
    margin-left: 14px;
    margin-bottom: 26px;
  }
  .online-classes>img {
    max-width: 267px;
    margin-left: -16px;
    margin-bottom: 26px;
  }
  .webinar>img {
    max-width: 242px;
    margin-left: -18px;
    margin-top: -10px;
    margin-bottom: 14px;
  }
  .online-course>h3 {
    margin-bottom: 16px;
  } 
  .online-classes>h3 {
    margin-bottom: 22px;
  }
  .webinar>h3 {
    margin-bottom: 13px;
  }
  .online-course>p {
    width: 293px;
  }
   .online-classes>p {
    width: 268px;
    margin-bottom: 50px;
  }
   .webinar>p {
    width: 260px;
    margin-bottom: 30px;
  }
  .webinar>div {
    gap: 7px;
  }
  .pricing__card-title {
    font-size: 22px;
  }
  .pricing__card-text {
    font-size: 16px;
  }
  .pricing__card-price {
    width: 205px;
    font-size: 16px;
    gap: 14px;
  }
  .price__style {
    font-size: 24px;
    align-self: center;
  }

  /* Contact */ 
  .contact {
    padding: 46px 18px 158px 12px;
  }
  .contact__title {
    top: 56px;
    left: 35%;
  }
  .contact__img {
    max-width: 312px;
  }
  .contact__group {
    margin-right: 12px;
  }
  .contact__info {
    height: 160px;
    margin-top: 38px;
  }
  .contact__info-text {
    font-size: 16px;
    max-width: 445px;
    margin-bottom: 32px;
  }
  .contact__field {
    width: 323px;
    height: 60px;
    padding-left: 38px;
    padding-top: 6px;
  }
  .contact__field::placeholder {
    font-size: 14px;
  }
  .contact__button {
    width: 193px;
    height: 60px;
    font-size: 16px;
    padding-top: 8px;
  }

  /* Footer */ 
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .footer>.container {
    padding-top: 28px;
    padding-left: 0;
  }
  .footer__group-text {
    font-size: 16px;
  }
  
}

@media screen and (max-width: 970px) {
  /* Pricing */
  .pricing {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 950px) {
  /* Header */
  .header__main-title {
    font-size: 40px;
  }
  .header__main-group-text {
    max-width: 400px;
  }
  /* Skills */
  .skills__cards {
    grid-template-columns: repeat(3, 270px);
  }
  .speaking__group {
    padding-left: 15px;
  }
  .writing {
    padding-left: 20px;
  }
  .writing>img {
    margin-bottom: -25px;
  }
  .reading>img {
    margin-bottom: 10px;
  }
  .listening {
    padding-left: 20px;
    padding-right: 2px;
  }

  /* Pricing */
  .pricing__group {
    align-items: flex-end;
  }
  .pricing__card {
    max-width: 280px;
  }
  .online-classes {
    margin-right: 33px;
  }
  .online-course>p, .online-classes>p, .webinar>p {
    max-width: 270px;
    width: 100%;
  }

}

@media screen and (max-width: 851px) {
  /* Skills */
  .skills__cards {
    grid-template-columns: repeat(3, 240px);
  }
  .speaking>img {
    max-width: 220px;
    min-height: 220px;
  }
  .reading>img {
    max-width: 220px;
    min-height: 146px;
    margin-bottom: 5px;
  }
  .listening>img {
    max-width: 220px;
    min-height: 140px;
  }
  .listening {
    padding-top: 4px;
  }

  /* Pricing */
  .online-course>img {
    max-width: 200px;
  }
  .online-classes>img {
    max-width: 220px;
  }
  .webinar>img {
    max-width: 220px;
  }
  .online-course, .online-classes {
    margin-right: 18px;
  }

  /* Contact */
  .contact__img {
    max-width: 230px;
  }
  .contact__info {
    margin-top: 80px;
  }
  .contact__info-text {
    max-width: 380px;
  }
  .contact__field {
    width: 280px;
  }
  .contact__button {
    width: 140px;
  }
}

@media screen and (max-width: 800px) {
  /* Header */
  .header__menu {
    padding: 22px 1px 64px 39px;
    align-items: flex-start;
  }

  .header__menu-logo {
    align-self: center;
    margin-top: 12px;
  }

  .header__menu-list {
    display: none;
  }
  .header__menu-link:after {
  display: none;
  }
  .header__menu-link:hover:after {
    display: none;
  }
  .header__menu-link:hover {
    text-decoration: underline;
  }

  .header__menu-button {
    display: none;
  }

  .header__menu-burger {
    display: flex;
  }
  .header__main-title {
    font-size: 38px;
  }
  .header__main-bulb {
    width: 80px;
    left: 70%;
  }

  /* Sidenav */
  .sidenav {
    padding-top: 28px;
  }

  .sidenav>li:first-child {
    margin-bottom: 18px;
  }

  .sidenav>li {
    margin-bottom: 61px;
  }

  .sidenav li:first-child {
    float: none;
    line-height: 48px;
  }

  .sidenav li {
    line-height: 0;
  }

  .line {
    width: 364px;
    height: 1px;
    background-color: #c4c4c4;
  }

  .sidenav li>a {
    font-weight: 500;
    font-size: 22px;
  }

  .sidenav__button {
    width: 210px;
    height: 60px;
    border: 2px solid #263238;
    border-radius: 5px;
    text-align: center;
    color: #000;
    background-color: #fff;
    font-weight: 400;
    font-size: 18px;
    margin-top: 30px;
    text-transform: capitalize;
  }

  .sidenav>li:first-child>a {
    display: flex;
    position: relative;
  }

  .material-icons {
    position: absolute;
    left: 87%;
    bottom: 52%;
    margin: 0;
    font-size: 32px;
    color: #39515E;
  }
  .header__menu-button:hover { 
    display: none;
  }
  .sidenav__button:hover {
    background-color: var(--gray);
    color: #fff;
    transition: 0.5s ease;
  }

  /* About */
  .about__img {
    max-width: 315px;
    height: 315px;
  }
  .about__info {
    max-width: 350px;
  }
}

@media screen and (max-width: 768px) {

  /* Header */
  
  .header__main {
    padding-left: 39px;
    padding-right: 16px;
  }
  .header__main-title {
    font-size: 36px;
    margin-bottom: 21px;
  }
  .header__main-group-text {
    font-size: 16px;
    padding: 0;
    max-width: 335px;
  }
  .header__main-img {
    max-width: 352px;
    margin-top: -28px;
  }
  .header__main-group-button {
    width: 236px;
    height: 65px;
    font-size: 18px;
  }
  .header__main-bulb {
    width: 76px;
    left: 60%;
  }

  /* Main */
  /* Skills */
  .skills {
    padding-top: 10px;
    padding-bottom: 66px;
  }
  .main__title {
    font-size: 30px;
  }
  .skills__title {
    margin-bottom: 60px;
  }
  .skills__cards {
    gap: 10px;
    grid-template-columns: 224px 227px 227px;
    grid-template-rows: 441px 210px;
  }
  .skills__card-title {
    font-size: 20px;
  }
  .skills__card-text {
    font-size: 13px;
  }
  .skills__card-button {
    width: 178px;
    height: 50px;
    font-size: 16px;
  }
  .speaking {
    padding-top: 26px;
    padding-left: 1px;
    padding-right: 8px;
  }
  .speaking>img {
    max-width: 214px;
    min-height: 214px;
    margin-bottom: 18px;
    align-self: flex-end;
  }
  .speaking__group {
    padding-left:   20px;
  }
  .speaking__group>h3 {
    margin-bottom: 2px;
  }
  .speaking__group>p {
    margin-bottom: 46px;
  }
  .writing {
  padding-top: 18px;
  padding-left: 22px;
  padding-right: 8px;
  }
  .writing__group>h3 {
  margin-bottom: -2px;
  }
  .writing>img {
    max-width: 200px;
    min-height: 200px;
    margin-right: 12px;
    margin-bottom: -18px;
  }
  .reading {
    padding-top: 32px;
    padding-left: 10px;
    padding-right: 8px;
  }
  .reading__group {
    padding-left: 12px;
  }
  .reading>img {
    max-width: 216px;
    min-height: 144px;
    margin-bottom: 14px;
  }
  .reading__group>p {
    margin-bottom: 24px;
  }
  .listening {
    padding-top: 10px;
    padding-left: 26px;
    padding-right: 0;
    gap: 0;
    position: relative;
    justify-content: flex-end;
  }
  .listening__group {
    max-width: 260px;
  }
  
  .listening>img {
    max-width: 202px;
    min-height: 134px;
    margin-top: 20px;
    position: absolute;
    left: 57%;
    top: 18%;
  }
  .listening__group>h3 {
    margin-bottom: -4px;
  }
  .listening__group>p {
    margin-bottom: 16px;
  }

  /* About */
  .about {
    padding-left: 39px;
    padding-right: 34px;
    padding-bottom: 70px;
  }
  .about__title {
    margin-bottom: 18px;
  }
  .about__text {
    font-size: 14px;
    max-width: 320px;
  }
  .about__number {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .about__numbers-group {
    margin-right: 52px;
  }
  .about__numbers-group:nth-child(2) {
    margin-right: 34px;
  }
  .about__number-text {
    font-size: 13px;
  }
  .about__img {
    max-width: 295px;
    height: 295px;
    margin-top: -40px;
  }

  /* Pricing */
  .pricing {
    padding: 40px 25px 14px;
  }
  .pricing__group {
    align-items: flex-start;
  }
  .pricing__card {
    max-width: 234px;
  }
  .online-course {
    padding-left: 12px;
  }
  .online-classes {
    margin-right: 10px;
  }
  .online-course>img {
    max-width: 197px;
    margin-top: 12px;
    margin-left: -10px;
    margin-right: 30px;
  }
  .online-classes>img {
    width: 219px;
    min-height: 168px;
    margin-top: 46px;
    margin-left: -10px;
    margin-bottom: 20px;
  }
  .webinar>img {
    max-width: 210px;
    margin-top: 10px;
    margin-left: -2px;
  }
  .online-course>h3 {
  }
  .online-course>p {
    max-width: 200px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  .online-classes>h3 {
    max-width: 170px;
    padding-left: 32px;
    margin-bottom: 12px;
  }
  .online-classes>p {
    max-width: 218px;
    padding-left: 34px;
    margin-bottom: 44px;
  }
  .online-classes>div {
    margin-top: 0;
    gap: 10px;
    padding-right: 12px;
  }
  .webinar>h3 {
    width: 160px;
    margin-bottom: 8px;
  }
  .webinar>p {
    max-width: 240px;
    margin-bottom: 48px;
  }
  .webinar>div>span {
    font-size: 24px;
  } 
  .pricing__card-title {
    font-size: 20px;
    line-height: 1.4;
  }
  .pricing__card-text {
    font-size: 14px;
  }
  .pricing__card-price {
    gap: 18px;
  }
  .price__style {
    font-size: 22px;
    margin-top: 2px;
  }

  /* Contact */
  .contact {
    padding-left: 26px;
    padding-right: 23px;
    padding-bottom: 116px;
  }
  .contact__title {
    top: 30px;
    left: 21%;
  }
  .contact__group {
    margin-right: 16px;

  }
  .contact__img {
    max-width: 233px;
  }
  .contact__info {
    height: 130px;
    margin-top: 9px;
  }
  .contact__info-text {
    font-size: 14px;
    max-width: 390px;
    margin-bottom: 25px;
  }
  .contact__info-form {
   gap: 6px;
  }
  .contact__field {
    border-radius: 5px;
    width: 283px;
    height: 50px;
    padding-left: 25px;
    padding-top: 0;
  }
  .contact__field::placeholder {
    font-size: 12px;
  }
  .contact__button {
    border-radius: 5px;
    width: 145px;
    height: 50px;
    font-size: 13px;
    padding-top: 3px;
  }

  /* Footer */
  .footer {
    padding-left: 38px;
    padding-right: 38px;
  }
  .footer>.container {
    padding-top: 21px;
    padding-bottom: 20px;
  }
  .footer__group {
    align-items: center;
  }
  .footer__group-text {
    font-size: 13px;
  }
  .footer__logo {
    margin-top: 0;
  }
}


@media screen and (max-width: 710px) {
  /* Header */
  .header__main-bulb {
    display: none;
  }
  /* Skills */
  .skills__cards {
    gap: 20px;
    grid-template-columns: repeat(2, 270px);
    grid-template-rows: repeat(2, 630px);
    grid-template-areas: 
    "speaking writing"
    "reading listening";
  }
  .speaking {
    padding-top: 10px;
  }
  .speaking>img {
    align-self: center;
  }
  .writing>img {
    margin-bottom: 30px;
  }
  .writing__group>p {
    margin-bottom: 170px;
  }
  .reading__group>p {
    margin-bottom: 230px;
  }
   .listening {
    padding-top: 18px;
    padding-left: 15px;
    padding-right: 10px;
    gap: 0;
    position: static;
    flex-direction: column;
    justify-content: flex-start;
  }
  .listening>img {
    max-width: 206px;
    min-height: 137px;
    position: static;
    margin-bottom: 10px;
  }
  .listening__group>p {
    margin-bottom: 236px;
  }

  /* Pricing */
  .pricing__group {
    flex-direction: column;
    align-items: center;
  }
  .pricing__card {
    max-width: 500px;
    padding-left: 0;
    margin-right: 0;
    text-align: center;
  }
   .online-classes {
    margin-bottom: 74px;
  }
  .webinar {
    padding-left: 0;
    margin-right: 6px;
  }
  .online-course>img {
    margin: 34px auto 26px;
    max-width: 291px;
  }
  .online-course>h3 {
    margin-bottom: 22px;
  } 
  .online-course>p {
    max-width: 410px;
    width: 100%;
    margin-bottom: 30px;
  }
  .online-classes>img {
    margin: 76px auto 16px;
    max-width: 314px;
    width: 100%;
    min-height: 241px;
  }
  .online-classes>h3 {
    max-width: 260px;
    padding-left: 0;
    margin: 0 auto 16px;
  }
  .online-classes>p {
    max-width: 350px;
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }
  .online-classes>div {
    padding-left: 26px;
  }
  .webinar>img {
    max-width: 253px;
    margin: 0 auto 10px;
  }
  .webinar>h3 {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 18px;
  }
  .webinar>p {
    max-width: 400px;
    width: 100%;
    margin-bottom: 30px;
  }
  .webinar>div {
    padding-right: 0;
    padding-left: 10px;
  }
  .pricing__card-title {
    font-size: 24px;
  }
  .pricing__card-text {
    font-size: 14px;
  }
  .pricing__card-price {
    margin: 0 auto;
    gap: 20px;
    padding-right: 8px;
  }

  /* Contact */
  .contact {
    padding-top: 172px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .contact__group {
    flex-direction: column;
    margin: 0;
  }
  .contact__title {
    position: static;
    margin: 0 auto 104px;
  }
  .contact__img {
    max-width: 358px;
    margin-bottom: 26px;
    margin-left: 10px;
  }
  .contact__info {
    max-width: 511px;
    width: 100%;
  }
  .contact__info-text {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    max-width: 490px;
    margin-bottom: 60px;
  }
  .contact__info-form {
    display: block;
  }
  .contact__field {
    max-width: 511px;
    width: 100%;
    height: 60px;
    border-radius: 10px;
  }
  .contact__field::placeholder {
    font-size: 13px;
  }
  .contact__button {
    width: 193px;
    height: 60px;
    border-radius: 10px;
    font-size: 16px;
    position: relative;
    bottom: 50%;
    left: 62%;
    padding-left: 9px;
    padding-top: 6px;
  }
  
}
@media screen and (max-width: 650px) {
  /* Header */
   .header__main {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0 42px 96px;
  }
   .header__main-img {
    max-width: 424px;
    margin-bottom: 18px;
  }
  .header__main-title {
    max-width: 550px;
    font-size: 34px;
    margin-bottom: 28px;
  }
  .br1 {
    display: none;
  }
  
  .header__main-group-text {
    text-align: center;
    max-width: 500px;
    margin-bottom: 36px;
  }
  .header__main-group-button  {
    width: 305px;
    height: 75px;
    display: block;
    margin: 0 auto;
  }

  /* About */
  .about__img {
    max-width: 250px;
    height: 250px;
  }
  .about__info {
    max-width: 260px;
  }
}

@media screen and (max-width: 576px) {

  /* Header */
  .header__menu {
    padding: 20px 16px 28px 31px;
  }

  .header__menu-burger {
    width: 60px;
    height: 60px;
    margin-top: 10px;
  }

  .header__menu-burger-line {
    width: 42.35px;
    height: 4.24px;
  }

  .header__menu-burger-line:last-child {
    width: 29.96px;
  }

 
  /* Sidenav */
  .sidenav {
    width: 575px;
    padding-top: 34px;
    padding-left: 34px;
  }

  .line {
    width: 510px;
  }

  .sidenav>li:first-child {
    margin-bottom: 42px;
  }

  .sidenav>li>a {
    font-weight: 500;
    font-size: 24px;
  }

  .sidenav>li {
    margin-bottom: 66px;
  }

  .sidenav__button {
    width: 330px;
    height: 70px;
    font-size: 22px;
    margin-top: 46px;
  }

  .material-icons {
    bottom: 8%;
    left: 89%;
  }
  /* Main */
  /* Skills */
  .skills {
    padding-top: 22px;
    padding-left: 40px;
    padding-right: 32px;
  }
  .skills__cards {
    gap: 30px;
    grid-template-columns: repeat(2, 240px);
    grid-template-rows: repeat(2, 534px);
    
  }
  .skills__card-title {
    font-size: 18px;
  }
  .skills__card-text {
    font-size: 12px;
  }
  .skills__card-button {
    width: 200px;
    height: 50px;
    font-size: 14px;
  }
  .speaking {
    padding-top: 0;
    padding-left: 0;
    padding-right: 8px;
  }
  .speaking>img {
    max-width: 185px;
    min-height: 185px;
    margin-top: -10px;
    margin-bottom: 0;
    align-self: flex-start;
  }
  .speaking__group {
    padding-left: 10px;
    max-width: 184px;
  }
  .speaking__group>h3 {
    margin-bottom: 2px;
  }
  .speaking__group>p {
    margin-bottom: 24px;
  }
   .writing {
    align-items: flex-start;
    padding-top: 8px;
    padding-left: 16px;
    padding-right: 18px;
  }

  .writing__group>p {
    margin-top: -6px;
    max-width: 180px;
    margin-bottom: 132px;
  }
  .writing__group>button {
    margin-left: -4px;
  }
  .writing>img {
    max-width: 182px;
    min-height: 182px;
    margin-bottom: -2px;
    align-self: center;
  }
  
  .reading {
    padding-left: 0;
    padding-right: 8px;
  }

  .reading>img {
    max-width: 198px;
    min-height: 132px;
    margin-bottom: 14px;
  }
  .reading__group>h3 {
    margin-bottom: 4px;
  }
  .reading__group>p {
    margin-bottom: 120px;
    max-width: 198px;
    font-size: 13px;
  }
  .listening {
    padding-left: 10px;
    padding-right: 0;
    
  } 
  .listening__group {
    max-width: 260px;
    padding-left: 8px;
  }
  .listening__group>h3 {
    margin-bottom: -4px;
  }
  .listening__group>p {
    font-size: 13px;
    margin-bottom: 16px;
    max-width: 196px;
    margin-bottom: 142px;
  }

  /* About */
  .about {
    padding: 42px 32px 130px 33px;
  }
  .about__info {
    max-width: 500px;
  }
  .about__group {
    flex-direction: column-reverse;
    align-items: center;
  }
  .about__title {
    text-align: center;
    margin-bottom: 46px;
  }
  .about__img {
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 352px;
    min-height: 352px;
  }
  .about__text {
    max-width: 500px;
    text-align: center;
    margin-bottom: 38px;
  }
  .about__nambers {
    justify-content: space-around;
    padding-left: 20px;
  }
  
  .about__number {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .about__number-text {
    font-size: 14px;
  }


  /* Pricing */
  .pricing {
    padding-top: 26px;
  }
  .webinar {
    margin-right: 16px;
  }
  .online-course>h3 {
    margin: 0 auto 21px;
  }
  .webinar>h3 {
    margin-bottom: 21px;
  }
  .webinar>div {
    padding-left: 2px;
  }

  /* Contact  */
  .contact {
    padding-bottom: 214px;
  }

  /* Footer */
  .footer {
    padding-right: 31px;
    padding-left: 31px;

  }
  .footer__group-text {
    font-size: 12px;
  }

}

@media screen and (max-width: 574px) {
  /* Header */ 
  .header__main {
    padding-right: 15px;
    padding-left: 15px;
  }
  /* Skills */
  .skills__cards {
    gap: 20px;
  }
}

@media screen and (max-width: 522px) {
  /* Header */
  .header__main-title {
    text-align: center;
  }
  /* Skills */
  .skills__cards {
    gap: 20px;
    grid-template-columns: 340px;
    grid-template-rows: 600px 500px 500px 500px;
    grid-template-areas: 
    "speaking"
    "writing"
    "reading"
    "listening";
  }
   .skills__card-text {
    font-size: 14px;
  }
  .skills__card-button {
    width: 178px;
    height: 50px;
  }
  .speaking>img {
    margin-top: 0;
    align-self: center;
  }
  .speaking__group {
    max-width: 240px;
    padding-left: 20px;
  }
  .speaking__group>p {
    margin-bottom: 60px;
  }
  .writing__group>h3 {
    margin-bottom: 10px;
  }
  .writing__group>p {
    max-width: 244px;
    margin-bottom: 108px;
  }
  .reading>img {
    align-self: center;
  }
  .reading__group {
    padding-left: 15px;
  }
  .reading__group>p {
    min-width: 240px;
  }
  .listening>img {
    align-self: center;
  }
  .listening__group>p {
    max-width: 240px;
    margin-bottom: 120px;
  }

  /* Contact */
  .contact__img {
  max-width: 300px;
  }
  .contact__info-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  .contact__button {
    position: static;
  }

  .contact {
    padding-top: 88px;
    padding-bottom: 178px;
  }
  .contact__title {
    margin-bottom: 64px;
  }
  .contact__img {
    max-width: 253px;
    margin-bottom: 30px;
    margin-left: 16px;
  }
  .contact__info-text {
    font-size: 14px;
    max-width: 266px;
    margin-bottom: 30px;
  }
 
  .contact__field {
    width: 291px;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .contact__field::placeholder {
    font-size: 12px;
  }
  .contact__button {
    border-radius: 5px;
    width: 290px;
    height: 60px;
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  .footer__group {
    flex-direction: column;
  }
  .footer__logo {
    margin-right: 0;
    margin-bottom: 21px;
  }
  .footer__group-text {
    font-size: 11px;
  }
  
  
}

@media screen and (max-width: 370px) {
  /* Skills */
  .skills__cards {
  grid-template-columns: 300px;
  grid-template-rows: 600px 473px 473px 473px;
  }
  .writing__group>p {
    margin-bottom: 82px;
  }
  .reading__group>p {
    margin-bottom: 92px;
  }
  .listening__group>p {
    margin-bottom: 92px;
  }

  /* Pricing */
  .online-course>img {
    max-width: 260px;
  }
  .online-classes>img {
    max-width: 280px;
    min-height: 220px;
  }
  .webinar>img {
    max-width: 248px;
  }
}

@media screen and (max-width: 321px) {
  /* Header */
  .header__menu {
    padding-left: 14px;
    padding-top: 10px;
  }
  .header__menu-logo {
    font-size: 24px;
  }
  .header__menu-burger {
    margin: 12px 0 0;
    width: 34px;
  }
  .header__menu-burger-line {
    width: 33.53px;
    height: 3.35px;
  }
  .header__menu-burger-line:last-child {
    width: 23.72px;
  }
  .sidenav-trigger {
    height: 38px;
  }

  .header__main {
    padding: 16px 0 50px;
  }
  .header__main-img {
    max-width: 299px;
  }
  .header__main-group-title {
    justify-content: center;
  }
  .header__main-title {
    font-size: 24px;
    text-align: center;
    max-width: 220px;
    line-height: 1.32;
    margin-bottom: 26px;
  }
  .br2 {
    display: block;
  }
  .header__main-group-text {
    font-size: 14px;
    max-width: 300px;
    padding-left: 5px;
  }
  .header__main-group-button {
    width: 289px;
    height: 60px;
    font-size: 16px;
  }

  /* Sidenav */
  .sidenav {
    width: 320px;
    padding-top: 8px;
    padding-left: 16px;
  }

  .line {
    width: 290px;
  }

  .sidenav>li:first-child {
    margin-bottom: 12px;
  }
  .sidenav>li:nth-child(2) {
    margin-bottom: 80px;
  }
   .sidenav>li>a {
    font-size: 22px;
  }

  .sidenav>li {
    margin-bottom: 66px;
  }

  .sidenav__button {
    width: 291px;
    height: 65px;
    font-size: 20px;
    margin-top: 32px;
  }

  .material-icons {
    bottom: 16%;
    left: 87%;
  }
   /* Main */
  /* Skills */
  .skills {
    padding: 26px 32px 20px 40px;
  }
  .main__title {
    font-size: 24px;
  }
  .skills__cards {
  
    grid-template-columns: 290px;
    grid-template-rows: 600px 473px 473px 473px;
  }
  
  .skills__card-text {
    font-size: 13px;
  }
  
  .speaking {
    padding-top: 8px;
    padding-left: 0;
    padding-right: 10px;
  }
  .speaking>img {
    max-width: 213px;
    min-height: 213px;
    margin-bottom: 26px;
    align-self: center;
  }
  .speaking__group {
    padding-left: 11px;
    max-width: 300px;
  }
  .speaking__group>h3 {
    margin-bottom: -2px;
  }
  .speaking__group>p {
    margin-bottom: 18px;
  }
   .writing {
    padding-top: 20px;
    padding-left: 12px;
    padding-right: 8px;
  }
  .writing__group>h3 {
    margin-bottom: 2px;
  }
  .writing__group>p {
    font-size: 12px;
    margin-top: -6px;
    max-width: 264px;
    margin-bottom: 32px;
  }
  .writing>img {
    max-width: 204px;
    min-height: 204px;
    margin-bottom: 30px;
  }
  .reading {
    padding-left: 6px;
    padding-right: 8px;
  }
  .reading>img {
    max-width: 236px;
    min-height: 157px;
    margin-bottom: 34px;
    align-self: center;
  }
  .reading__group {
    padding-left: 6px;
  }
  .reading__group>h3 {
    margin-bottom: -3px;
  }
  .reading__group>p {
    margin-bottom: 32px;
    max-width: 236px;
  }
  .listening {
    padding-top: 16px;
    padding-left: 6px;
    padding-right: 6px;
    position: static;
    flex-direction: column;
  }
  .listening__group {
    padding-left: 8px;
  }
  
  .listening>img {
    max-width: 232px;
    min-height: 154px;
    align-self: center;
    margin-bottom: 34px;

  }
  .listening__group>h3 {
    margin-bottom: -4px;
  }
  .listening__group>p {
    font-size: 13px;
    margin-bottom: 16px;
    max-width: 260px;
    margin-bottom: 42px;
  }

  /* About */
  .about {
    padding: 58px 10px 20px;
  }
  .about__img {
    max-width: 283px;
    min-height: 283px;
    height: auto;
    margin-bottom: 26px;
  }
  
  .about__text {
    font-size: 13px;
    max-width: 295px;
    margin-bottom: 33px;
    line-height: 1.5;
  }
  .about__nambers {
    flex-direction: column;
    align-items: center;
  }
  .about__numbers-group {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .about__numbers-group:nth-child(2) {
    margin-right: 0;
    margin-bottom: 42px;
  }
  .about__nambers {
    padding: 0;
  }
  .about__number {
    margin-bottom: 6px;
  }
  .about__number-text {
    font-size: 13px;
  }

  /* Pricing */
  .pricing {
    padding-top: 42px;
    padding-right: 10px;
    padding-left: 10px;
  }
  .online-course>img {
    max-width: 248px;
    margin-bottom: 28px;
    margin: 32px 34px;
  }
  .online-course>h3 {
    max-width: 290px;
    margin-bottom: 18px;
  }
   .online-course>p {
    max-width: 280px;
    margin: 0 auto 32px;
    padding-left: 8px;
    line-height: 1.5;
   }
   .online-course>div {
    margin-right: 58px;
    padding: 0;
   }

  .online-classes>img {
    max-width: 257px;
    min-height: 197px;
    margin-top: 64px;
    margin-bottom: 12px;
  }
  .webinar {
    margin-right: 0;
  }
  .webinar>img {
    max-width: 241px;
    margin-bottom: 6px;
  }
  .webinar>h3 {
    margin-bottom: 30px;
  }
  .webinar>p {
    margin-bottom: 35px;
  }
  .webinar>div> {
    padding-left: 5px;
  }
  .webinar>div>span {
    font-size: 18px;
  }
  .online-classes>h3 {
    margin-bottom: 32px;
  }
  .online-classes>div {
    padding-left: 12px;
  }
  .pricing__card-title {
    font-size: 18px;
  }
  .pricing__card-text {
    font-size: 13px;
  }
  .pricing__card-price {
    width: 170px;
    height: 37px;
    font-size: 14px;
    gap: 14px;
  }
  .price__style {
    font-size: 18px;
  }
 
}

