* {
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    }

  .nav-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
  }

  .nav-link {
    padding: 0 20px;
    line-height: 50px;
    transition: .3s;
  }
   
  a:hover {
    color: #ee6306;
  }

  .main-container {
    display: flex;
    flex-wrap: wrap;
  }
  
  .section {
    width: 50%;
  }

  .footer-list {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-element {
    padding: 0 20px;
    line-height: 50px;
    list-style: none;
  }

  .education-ul {
    display: flex;
    gap: 15px;
    flex-direction: column;
  }