
#main-align {
    max-width: 1600px;
    width: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.container {
    width: 100%;
}

.logo {
    float: left;
}
  
.login {
    float: right;
    margin-top: 10px;
}

header {
    height: 75px;
    margin-bottom: 60px;
}

header img {
    width: auto;
    height: 100%;
    width: auto;
    margin: 10px;
}

#main-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#main-title h1 {
    max-width: 587px;
    margin: 0%;
    margin-top: 20px;
    font-family: Albert Sans;
    font-size: 52px;
    font-weight: 500;
    line-height: 57.2px;
    text-align: center;
    position: relative;
}

.relativ-btn {
    position: relative;
    z-index: 100;
}

#big-orange-cicle {
    /* width: 600px;
    height: 600px;
     */
    width: 45vw;
    height: 45vw;

    background-image: radial-gradient(rgba(254, 137, 52, 0.4) 1%,rgba(254, 137, 52, 0.4) 10%,  white 70%);
    /* background-repeat: no-repeat;
    background-attachment: fixed;
      background-position: center; */

    position: absolute;
    z-index: -1;

    left: -100px;
    top: 249px;
}

#big-blue-cicle {
    width: 45vw;
     height: 45vw;

    background-image: radial-gradient(rgba(48, 149, 190, 0.4) 1%, rgba(48, 149, 190, 0.4) 10%, white 70%);
    /* background-repeat: no-repeat;
    background-attachment: fixed;
      background-position: center; */

    position: absolute;
    z-index: -1;

    right: -100px;
    top: 249px;
}

#illustration {
    position: absolute;
    top: 100px;
    left: 40px;
}

#content-align {
    max-width: 1600px;
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 40px;
    background-color: white;
    z-index: 10;
    border-radius: 15px;
}

#inside-content-align {
    margin-left: 30px;
    margin-top: 20px;
}

.flex-container {
    display:flex;
    flex-direction: row;
    width: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.header {
    margin-top: 10px;
    color: #007DB1;
    font-family: "Albert Sans";
    font-size: 33px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 39.6px */
}

.text {
    margin-top: 20px;
    color: #474748;
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    width: 70%;
}

.api_illustration {
    margin-right: 30px;
}

.benefits {
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 15px;
    
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.col {
    max-width: 25%;
    flex: 25%;
    padding-left: 15px;
    padding-right: 15px;
}

.benefits_image {
    margin-top: -80px;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.lower_header {
    margin-top: -120px;
    color: #007DB1;
    font-family: "Albert Sans";
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.3px;
    text-align: center;
}

.benefits_fliesstext {
    margin-top: 20px;
    color: #474748;
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    text-align: center;
}

.footer {
    background: rgba(0, 138, 194, 0.1);
    margin-top: 40px;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.footer_link {
    font-family: Figtree;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
    text-transform: uppercase;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    text-decoration: none;
    margin-right: 0px;
}

.footer_link:hover {
    text-decoration: underline;
}

@media (max-width: 1400px) {
    .col {
        flex: 50%;
        max-width: 50%;
    }
    .api_illustration {
        width: 300px;
        height: auto;
    }
}

@media (max-width: 800px) {
    .flex-container {
        flex-direction: column;
    }
    .api_illustration {
        margin-top: 60px;
    }
    .text {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .col {
        flex: 100%;
        max-width: 100%;
    }
}