html,
body {
    font-family: 'Roboto', sans-serif;
    background-color: #EFF5FD;
}
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 8vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('./../img/bg.jpg');
}
.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.icon-error {
    display: flex;
    align-items: flex-end;
    position: relative;
    height: auto;
    z-index: 3;
}
.icon-error img {
    display: block;
    width: 100%;
}
.right_box{
    width: 35%;
    text-align: left;
}

.right_box img{
    width: 100%;
}

.title {
    margin-top: 11vw;
    margin-bottom: 5vw;
    color: #e66775;
    font-weight: 600;
    font-stretch: normal;
    font-family: 'Roboto-Medium', sans-serif;
    line-height: 6vw;
    letter-spacing: 0;
}
.description {
    color: #535353;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-family: 'Roboto-Regular', sans-serif;
    text-align: left;
    line-height: 30px;
    letter-spacing: 0;
}
.serviceBtn a{
    display: inline-flex;
    justify-content: center;
    background: linear-gradient(153deg, #86A7FF , #3880E5 );
    color: white;
    padding: 10px 24px;
    border-radius: 10px;
    margin-top: 20px;
}

.serviceBtn .icon{
    margin-right: 10px;
}

.serviceBtn .text{
    font-size: 18px;
    font-weight: 500;
}
@media (max-width: 1000px) {
    .main {
        padding: 8% 0;
    }

    .container {
        flex-wrap: wrap-reverse;
    }

    .right_box{
        width: 60%;
        margin-bottom: 5%;
    }

    .description{
        font-size: 16px;
        line-height: 25px;
    }
}



@media (max-width: 475px){
    .right_box {
        width: 80%;
        margin-bottom: 8%;
    }

    .description{
        font-size: 14px;
        line-height: 20px;
    }
}
