body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden; 

  font-family: sans-serif;
}

/* Header */
.header {
  display: flex;

  height: 100px;
  background: #2d3c50;
  align-items: center;
  justify-content: space-between;
  padding-left: 200px;
  padding-right: 200px;
}

.header .logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
  transition: color 0.5s ease;
}

.header .logo:hover {
  color: #3882F6;
  transition: color 0.5s ease;
}

.header .link ul {
  display: flex;

  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header .link ul li{
  padding-left: 42px;
}

.header .link a {
  display: flex;

  height: 42px;
  width: 150px;
  border-radius: 14px;
  color: #E5E7EB;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.5s ease;
}

.header .link a:hover {
  color: #2d3c50;
  background-color: white;
  text-decoration: none;
  transition: all 0.5s ease;
}

/* Section01 */
.section01 {
  display: flex;

  height: 400px;
  background-color: #2d3c50;
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section01 .text {
  display: flex;
  flex-direction: column;

  /* border: 4px solid brown; */
  justify-content: center;
  padding-right: 100px;
  flex: 1;
}

.section01 .image {
  display: flex;

  color: #2d3c50;
  background-color: #E5E7EB;
  align-items: center;
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
  flex: 1;
  flex-shrink: 0;
}

.section01 .text .title{
  color: white;
  font-size: 48px;
  font-weight: bold;
  padding-bottom: 50px;
}

.section01 .text .content{
  color: #E5E7EB;
  font-size: 18px;
  padding-bottom: 50px;
}

.section01 .text .button{
  padding-bottom: 0;
}

.section01 .text .button ul {
  display: flex;

  margin: 0;
  padding: 0;
  list-style-type: none;
}

.section01 .text .button a {
  display: flex;

  height: 42px;
  width: 150px;
  border-radius: 14px;
  color: white;
  background-color: #3882F6;
  font-size: 18px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.5s ease;
}

.section01 .text .button a:hover {
  color: #2d3c50;
  background-color: white;
  text-decoration: none;
  transition: all 0.5s ease;
}

.section02 {
  display: flex;

  flex-direction: column;
  height: 400px;
  background-color: white;
  justify-content: center;
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section02 .title {
  display: flex;

  color: #2d3c50;
  font-size: 36px;
  font-weight: bold;
  justify-content: center;
  margin-bottom: 90px;
}

.section02 .grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.section02 .grid .box {
  height: 200px;
  width: 200px;
  border-radius: 14px;
  border: 4px solid #3882F6;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.section02 .grid .text {
  color: #2d3c50;
  width: 200px;
  border: 4px solid white;
  flex-shrink: 0;
}

.section03 {
  display: flex;

  flex-direction: column;
  height: 400px;
  background-color: #E5E7EB;
  justify-content: center;
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section03 .text {
  color: #2d3c50;
  font-size: 36px;
  font-weight:lighter;
  font-style: italic;
  margin-bottom: 20px;
}

.section03 .name {
  display: flex;

  color: #2d3c50;
  font-size: 24px;
  font-weight: bold;
  justify-content: flex-end
}

.section04 {
  display: flex;

  flex-direction: column;
  height: 300px;
  background-color: white;
  justify-content: center;
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section04 .quote {
  display: flex;

  height: 150px;
  border-radius: 14px;
  color: white;
  background-color: #3882F6;
  align-items: center;
  justify-content: space-around;
}

.section04 .quote .text{
  display: flex;
  flex-direction: column;
}

.section04 .quote .text .title{
  font-size: 24px;
  font-weight: bold;
}

.section04 .quote .text .content{
  font-size: 18px;
}

.section04 .quote .button{
  padding-bottom: 0;
}

.section04 .quote .button ul {
  display: flex;

  margin: 0;
  padding: 0;
  list-style-type: none;
}

.section04 .quote .button a {
  display: flex;

  height: 42px;
  width: 150px;
  border-radius: 14px;
  color: white;
  background-color: #3882F6;
  border: 2px solid white;
  font-size: 18px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.5s ease;
}

.section04 .quote .button a:hover {
  color: #2d3c50;
  background-color: white;
  text-decoration: none;
  transition: all 0.5s ease;
}

.footer {
  display: flex;

  height: 100px;
  color: white;
  background-color: #2d3c50;
  align-items: center;
  justify-content: center;
}