@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  background-color: #ef7a16
}
section
{
    position: relative;
    width: 100%;
    min-height: 90vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section .bottom a
{
  width: 100%;
  align-items: center
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  position: relative;
  max-width: 500px;
}
header ul
{
    position: relative;
    display: flex;
}
header ul li
{
  list-style: none;
}
header ul li a
{
  display: inline-block;
  color: white;
  font-weight: 400;
  margin-left: 40px;
  text-decoration: none;
}
.content
{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content .textBox
{
  max-width: 1000px;
  color: white;
}
.content .textBox h2
{
  color: #333;
  font-size: 4em;
  line-height: 1.4em;
  font-weight: 900;
  color: white;
}
.content .textBox h2 span
{
  color: white;
  font-size: 1.2em;
  font-weight: 900;
}
.content .textBox p
{
  color: white;
  font-size: 1.5em;
  font-style: italic;
  font-weight: bold;
}
.content .textBox a
{
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #ef7a16;
  color: #fff;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
}
.content .imgBox
{
  width: 300px;
  height: 470px;
  display: flex;
  justify-content: flex-end;
  margin-right: 150px;
  margin-top: 50px;
}
.content .imgBox img
{
  max-width: 340px;
}
.bottom
{
  width: 100%;
  align-self: center;
  justify-content: center;
  display: flex;
  padding-left: 50px;
  margin-top: 20px;
}

.bottom a
{
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-size: 20px;
  font-weight: 600;
}
.thumb
{
  position: absolute;
  height: 10%;
  width: 500px;
  left: 100px;
  bottom: 50px;
  display: flex;
  transform: translateX(-50%);
  transform: translateY(50%);
}
.thumb li
{
  list-style: none;
  display: inline-block;
  margin: 0 50 0 0px;
  cursor: pointer;
  transition: 0.5s;
  width: 200px;
  height: auto;
  align-self: center;
}
.thumb li:hover
{
  transform: translateY(-15px);
}
.thumb li img
{
  max-width: 200px;
}
.sci
{
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sci li
{
  list-style: none;
}
.sci li a
{
  display: inline-block;
  margin: 5px 0;
  transform: scale(0.6);
}
