* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    list-style: none;
    outline: none;
    border: none;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    font-size: 2rem;
    height: 100vh;
}

.hide {
    display: none !important;
}

.home {
    background-color: #DADFE5;
    padding: 3rem 5rem;
    width: 100%;
    height: 100%;
}

.circle {
    width: 60rem;
    height: 60rem;
    border-radius: 50%;
}

.circle li {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    position: absolute;
    background-color: #fff;
    left: 46%;
    top: 40%;
    margin-left: -5px;
    margin-top: -5px;

}

.circle li .image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    position: absolute;
    top: 10px;
    background-image: url(./img/bg.jpg);
    background-repeat: no-repeat;
    background-position: 50% 40%;
}

.circle li:nth-child(1) {
    transform: rotate(0deg) translate(25rem);
}

.circle li:nth-child(2) {
    transform: rotate(45deg) translate(25rem);
}

.circle li:nth-child(3) {
    transform: rotate(90deg) translate(25rem);
}

.circle li:nth-child(4) {
    transform: rotate(135deg) translate(25rem);
}

.circle li:nth-child(5) {
    transform: rotate(180deg) translate(25rem);
}

.circle li:nth-child(6) {
    transform: rotate(225deg) translate(25rem);
}

.circle li:nth-child(7) {
    transform: rotate(270deg) translate(25rem);
}

.circle li:nth-child(8) {
    transform: rotate(315deg) translate(25rem);
}

form {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

form>* {
    display: block;
}

input,
button {
    padding: 10px;
    border: none;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
}

.input-text {
    text-align: center;
    font-size: 20px;
}

::placeholder {
    color: #DCE1E7;
}

.btn-submit {
    padding: 10px 28px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
    background-color: #FF8B01;
}

.main {
    height: 100vh;
    background-image: url(./img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrapper {
    padding: 0 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.main-text {
    width: 40%;
}

.main-text p {
    margin-bottom: 50px;
    font-size: 1.6rem;
    word-spacing: 5px;

}

.main-text h1 {
    font-size: 5rem;
    text-align: center;
    font-style: italic;
}

.btn-grp {
    width: 25%;
    display: flex;
    flex-direction: column;
}

.btn-grp li {
    position: relative;
    z-index: 1;
}

.btn-grp li .under {
    width: 100%;
    min-height: 80px;
    position: absolute;
    background-color: #ffffff;
    z-index: -1;
    top: 13px;
    left: -5px;
    border-radius: 10px;
}

.btn-grp button {
    width: 100%;
    padding: 15px 0;
    margin: 20px 0;
    background-color: #FF8B01;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}

.btn-text {
    display: block;
    border: 1px solid #E8C092;
    padding: 8px 0;
    width: 85%;
    margin: 0 auto;
    border-radius: 10px;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

.end .wrapper {
    padding: 0;
    padding-top: 20px;
    width: 70%;
    margin: 0 auto;
}

.end-content-last {
    margin-top: 30px;
    background-color: #DADFE5;
    color: #636768;
}

.main-content {
    text-align: center;
}

.main-content p {
    font-size: 1.6rem;
    line-height: 1.5;
}

.p-one {
    padding: 0 5rem;
    margin: 50px 0 20px;
}

.p-two {
    padding: 1rem 5rem;
    background-color: #FF8B01;
    color: #fff;
    margin-bottom: 30px;
}

.p-last {
    padding: 0 5rem 2rem;
    font-size: 1.5rem !important;
    line-height: 35px !important;
}

.end .btn-submit {
    position: absolute;
    left: 100px;
    top: 20px;
}