@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;
}
.sec
{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient( #EB5916, #E6CD16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px;
}
.custom-shape-divider-bottom-1600710071 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg) translateZ(-1px);
}

.custom-shape-divider-bottom-1600710071 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 172px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1600710071 .shape-fill {
    fill: #FFFFFF;
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  font-size: 2em;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
header ul
{
  position: relative;
  display: flex;
}
header ul li
{
  list-style: none;
}

header ul li a
{
  color: #fff;
  margin-left: 40px;
  text-decoration: none;
}
.content
{
  position: relative;
  max-width: 600px;
  z-index: 1;
}
.content h2
{
  color: #fff;
  font-size: 5em;
  line-height: 1em;
}
.content h2 span
{
  color: #fff;
  font-size: .7em;
}
.content p
{
  color: #fff;
  font-size:16px;
  margin: 10px 0 20px;
}
.content a
{
  padding: 10px 30px;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  color: #111;
}
.suit
{
  position: absolute;
  bottom: 0;
  width:400px;
  height:450px;
  right: 40px;
}

@media (max-width: 991px)
{
  header
  {
    padding: 20px 40px;
  }
  header ul.navigation
  {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: #111;
    background: linear-gradient( #03A9F4, #E91E63);
    z-index: 100;
  }
  header ul.navigation.active
  {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  header ul.navigation li a
  {
    margin-left: 0;
    font-size: 30px;
  }
  header .toggleMenu
  {
    position: relative;
    width: 30px;
    height: 30px;
    background: url(menu.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  header .toggleMenu.active
  {
    position: fixed;
    right: 40px;
    background: url(close.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
  }
  .sec
  {
    flex-direction: column;
    padding: 40px 40px 0;
    justify-content: center;
  }
  .content
  {
    max-width: 100%;
    margin-top: 120px;
  }
  .content h2
  {
    font-size: 3em;
  }
  .girl
  {
    position: relative;
    right: inherit;
    height: initial;
    width: 80%;
    margin-top: 20px;
  }
}



/*****FOOTER PAGE**************/
.footer{
	position:absolute;
	background-color:#FFFF00;
	margin:10px;
	padding:5px;
	width:100%;
	text-align:center;
	top:600px;
	right:0px;
}
/*****FOOTER PAGE**************/
body {
  background-color: grey;
}

@media screen and (min-width: 480px) {
  body {
    background: linear-gradient( #EB5916, #E6CD16);
  }
}