/*===================
    Main   -   Body 
=====================*/

* {
  box-sizing: border-box;
}
html, body{
    margin: 0;
    padding: 0;
}
body{
    margin-top: 110px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/*===================
 Image code section 
=====================*/

.section1, .section2, .section3{
    width: 100%;
    position: relative;
}
.section1 img, .section2 img, .section3 img{
    display: block;
    width: 100%;
    height: auto;
}

/*===================
 Text code section 
=====================*/

.section1 div{
    position: absolute;
    top: 33%;
    left: 6%;
    width: 400px
}
.text-insde1 h1{
    color: white;
    font-size: 40px;
}
.text-insde1 button{
    color: white;
    margin-left: 3px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 40px;
    padding: 10px 40px;
    font-size: 16px;
    border: 1.5px solid white;
    cursor: pointer;
}
.text-insde2{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-insde2-container{
    background-color:rgba(10, 91, 43, 0.8);;
    padding: 10px 43px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
}
.text-insde2-container h1{
    color: white;
    font-size: 36px;
    font-weight: 100;
    margin-bottom: 0px;
}
.text-insde2-container p{
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 13px;
    color: white;
}
.text-insde2-container button{
    background-color: transparent;
    border-radius: 50px;
    border: 2px solid white;
    color: white;
    padding: 7px 36px;
    font-size: 19px;
    margin-bottom: 20px;
    cursor: pointer;
}

