/* ===================================== GERAL ===================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;900&display=swap');

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #006F4D;
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    width: 100%;
}

img {
    align-self: center;
    display: block;
    height: auto;
    max-width: 100%;
}

#anchorBtn {
    bottom: 80px;
    cursor: pointer;
    position: fixed;
    right: 40px;
    transition: .6s ease;
    z-index: 999999999;
}

#anchorBtn:hover {
    transform: scale(1.05);
}



/* ===================================== HEADER ===================================== */

header {
    background: url(../images/bg01.png) no-repeat;
    background-position: bottom;
    max-height: 580px;
    width: 100%;
}

header img {
    bottom: -19px;
    left: 50%;
    position: relative;
}



/* ===================================== BENEFITS ===================================== */

#benefits-section {
    background-color: #F6F6F6;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .5);
    position: relative;
    width: 100%;
}

#benefits-section>img {
    position: relative;
    top: -30px;
}

#benefits-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 60px;
    max-width: 1300px;
    padding: 0 20px;
    width: 100%;
}

#benefits-container>p {
    color: #FF8931;
    font-size: 1.9rem;
    font-weight: bold;
}

#benefits-container>p strong {
    color: #006F4D;
}

#benefits {
    display: flex;
    justify-content: space-between;
    margin: 60px 0 120px 0;
    width: 100%;
}

#benefits span {
    background-color: #FF8931;
    display: block;
    height: auto;
    margin: 0 20px;
    width: 2px;
}

.benefit {
    max-width: 360px;
    width: 100%;
}

.benefit img {
    margin-bottom: 20px;
}

.benefit p {
    font-size: 1.25rem;
}

.benefit p strong {
    font-size: 1.9rem;
    font-weight: bold;
}



/* ===================================== FORM ===================================== */

#form-section {
    background: url(../images/bg02.png) no-repeat;
    background-color: #006F4D;
    border-bottom: 15px solid #FF8931;
    display: flex;
    padding-bottom: 100px;
    width: 100%;
}

#form-section>img {
    align-self: flex-end;
}

#form-container {
    margin: 120px 40px;
    max-width: 780px;
    width: 100%;
}

#form-intro h3 {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: bold;
}

#form-intro h2 {
    color: #FF8931;
    font-size: 8rem;
    font-weight: bold;
    left: 40px;
    margin: 40px 0 60px 0;
    position: relative;
}

#form-intro p {
    color: #ffffff;
    font-size: 1.25rem;
}

form {
    margin-top: 120px;
    width: 100%;
}

.input-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.input-container {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    width: 100%;
}

.input-line:nth-child(1) .input-container {
    max-width: 230px;
}

.input-line:nth-child(2) .input-container, .input-line:nth-child(4) .input-container {
    max-width: 365px;
}

.input-line:nth-child(3) .input-container {
    max-width: 295px;
}

.input-line:nth-child(3) .input-container:nth-child(1) {
    max-width: 100px;
}

.input-check-container {
    display: flex;
    margin-bottom: 10px;
    width: 100%;
}

.input-check-container p {
    color: #ffffff;
    font-size: 0.8rem;
    width: 100%;
}

form label {
    color: #ffffff;
}

form label {
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    top: -45px;
    transition: .4s ease;
}

form input, select {
    background-color: rgba(0,0,0,0);
    border: none;
    border-bottom: 1px solid #FF8931;
    color: #4fb496;
    outline: none;
    position: relative;
    width: 100%;
    z-index: 999;
}

select option {
    color: #4fb496;
}

form input:focus, select:focus {
    color: #ffffff;
}

form input[type=submit] {
    background-color: #FF8931;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    height: 50px;
    outline: none;
    position: relative;
    width: 150px;
    z-index: 999;
}

form input:focus + label {
    color: #4fb496;
    font-size: .8rem;
    top: -40px;
}







/* The container */
.checkbox {
    cursor: pointer;
    display: block;
    padding-left: 25px;
    position: relative;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    background-color: #eee;
    height: 15px;
    left: 0;
    position: absolute;
    top: 0;
    width: 15px;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox input:checked + .checkmark {
    background-color: #FF8931;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox .checkmark:after {
    left: 4px;
    top: 2px;
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }



/* ===================================== SUCCESS ===================================== */

#success-section {
    align-items: center;
    background-color: #006F4D;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 100px;
    position: relative;
    width: 100%;
}

#success-section p {
    color: #ffffff;
    font-size: 1.5rem;
    max-width: 400px;
    width: 100%;
}

#success-section p:nth-child(1) {
    margin-bottom: 20px;
}

#success-section p strong {
    color: #FF8931;
    font-size: 2.5rem;
    font-weight: bold;
}

















/* ===================================== MOBILE ===================================== */



@media only screen and (max-width: 1500px) {
    .benefit p {
        font-size: 1rem;
    }

    .benefit p strong {
        font-size: 1.5rem;
    }

    #form-section {
        background-size: 1000px;
    }

    #form-section>img {
        position: relative;
        top: -100px;
        width: 50%;
    }

    #form-intro h2 {
        font-size: 6rem;
    }
}





@media only screen and (max-width: 1200px) {
    header {
        background-position: -300px bottom;
    }

    #form-section {
        align-items: center;
        flex-direction: column;
        padding-bottom: 0;
    }

    #form-section>img {
        order: 2;
        padding-top: 60px;
        width: 100%;
    }

    #form-container {
        box-sizing: border-box;
        margin: 300px 40px 100px 40px;
        order: 1;
        padding: 0 20px;
    }
}





@media only screen and (max-width: 1100px) {
    header {
        background: url(../images/bg01-mobile.png) no-repeat;
        background-position: center bottom;
        display: flex;
        height: 756px;
        justify-content: center;
        position: relative;
    }

    header img {
        bottom: -20px;
        left: auto;
        position: absolute;
        width: 550px;
    }

    #benefits-section>img {
        left: -250px;
    }
}





@media only screen and (max-width: 1000px) {
    #benefits-container {
        max-width: 700px;
    }

    #benefits {
        flex-direction: column;
    }

    .benefit {
        max-width: 100%;
    }

    #benefits span {
        height: 1px;
        margin: 60px 0;
        width: 100%;
    }
}





@media only screen and (max-width: 700px) {
    header {
        background-size: contain;
        height: 650px;
    }

    header img {
        width: 450px;
    }
}





@media only screen and (max-width: 600px) {
    #form-intro h2 {
        font-size: 4rem;
    }

    form label {
        font-size: 0.8rem;
    }

    .input-line {
        flex-direction: column;
    }

    .input-container, .input-line:nth-child(1) .input-container, .input-line:nth-child(2) .input-container, .input-line:nth-child(4) .input-container, .input-line:nth-child(3) .input-container:nth-child(1), .input-line:nth-child(3) .input-container {
        margin-bottom: 40px;
        max-width: 100%;
    }
}





@media only screen and (max-width: 550px) {
    header {
        height: 550px;
    }

    header img {
        width: 400px;
    }
}





@media only screen and (max-width: 450px) {
    header {
        height: 450px;
    }

    header img {
        width: 350px;
    }
}





@media only screen and (max-width: 400px) {
    #form-intro h2 {
        font-size: 4rem;
        left: 0;
    }
}





@media only screen and (max-width: 350px) {
    header {
        height: 350px;
    }

    #benefits-section>img {
        left: -150px;
        top: -20px;
    }
}