@charset "UTF-8";
/* CSS Document */
body, body * {
	vertical-align:baseline;
	border:0 none;
	outline:0;
	padding:0;
	margin:0;
}
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  color: #000;
  background-color: #efebea;
}

header {
    position: relative;
    width: 100%;
    padding: 0 20px;
    margin-top: 45px;
    .topbar {
        position: relative;
        background-color: #fff;
        display: flex;
        align-items: center;
        z-index: 1000;
        max-width: 1230px;
        height: 92px;
        border-radius: 46px;
        margin: 0 auto;
    }
    .headerlogo {
        position: relative;
        display: block;
        margin-top: 7px;
        max-width: 620px;
        margin-left: 25px;
        margin-right: 25px;
    }
    .headerlogo img {
        width: 100%;
        height: auto;
    }
}
section {
    max-width: 1230px;
    margin: 0 auto; 
    padding: 50px;
}
.colorgradient {
    padding: 50px 50px 150px 50px;
    color: #fff;
    background: #a3488c;
    background: linear-gradient(133deg, rgb(163, 72, 140) 10%, rgb(54, 150, 132) 50%, rgb(233, 129, 36) 90%);
}
.top {
    color: #984191;
}
p {
    position: relative;
    font-size: 1.25em;
    line-height: 1.4em;
    max-width: 780px;
}
p + p  {
    margin-top: 30px;
}
strong {
    font-weight: 600;
}
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 44px;
    color: #984191;
    font-weight: 700;
    background-color: #fff;
    border-radius: 100px;
    padding: 0 25px;
    text-decoration: none;
}