/* @import "../assets/fonts/fonts.css";
@import "reset.css";
@import "flexboxgrid.min.css";
@import "variables.css"; */

/***********
*   GLOBAL
***********/

#wrap {
    /*fallback for IE*/
    color: #f7f6f7;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background: url("../images/bg-1440.svg") no-repeat -80% 100%, -webkit-linear-gradient(135.05deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
    background: url("../images/bg-1440.svg") no-repeat -80% 100%, -o-linear-gradient(135.05deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
    background: url("../images/bg-1440.svg") no-repeat -80% 100%, linear-gradient(314.95deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
}

.row {
    margin: 0;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.wrapped-item {
    max-width: 620px;
}

.content-body {
    /*fallback for IE*/
    background-color: #ffffff;
    color: #3e3a94;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    border-radius: 25px;
    text-align: center;
}

.error-page-icon {
    margin: 40px auto 20px;
    height: 54px;
}

.error-message-title {
    /*fallback for IE*/
    font: 400 24px/40px "Montserrat", Helvetica, Arial, sans-serif;
    color: #C91B3C;
    margin-top: 3px;
    margin-bottom: 3px;
    font-weight: bold;
}

.error-message-text {
    /*fallback for IE*/
    font: 400 16px/22px "Montserrat", Helvetica, Arial, sans-serif;
    color: #666469;
    max-width: 420px;
    width: 460px;
    letter-spacing: 0;
    line-height: 25px;
}

/**************
*   RESPONSIVE
**************/

 @media screen and (max-width: 1440px) {
    #wrap {
        background: url("../images/bg-1440.svg") no-repeat -80% 100%, -webkit-linear-gradient(135.05deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
        background: url("../images/bg-1440.svg") no-repeat -80% 100%, -o-linear-gradient(135.05deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
        background: url("../images/bg-1440.svg") no-repeat -80% 100%, linear-gradient(314.95deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
    }
}

@media screen and (max-width: 1024px) {
    #wrap {
        background: url("../images/bg-1024.svg") no-repeat -80% 100%, -webkit-linear-gradient(135.05deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
        background: url("../images/bg-1024.svg") no-repeat -80% 100%, -o-linear-gradient(135.05deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
        background: url("../images/bg-1024.svg") no-repeat -80% 100%, linear-gradient(314.95deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
    }
}

@media screen and (max-width: 768px) {
    #wrap {
        background: url("../images/bg-768.svg") no-repeat -80% 100%, -webkit-linear-gradient(135.05deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
        background: url("../images/bg-768.svg") no-repeat -80% 100%, -o-linear-gradient(135.05deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
        background: url("../images/bg-768.svg") no-repeat -80% 100%, linear-gradient(314.95deg, rgb(10, 152, 231) 0%, rgb(62, 58, 148) 100%);
    }
}

@media screen and (max-width: 425px) {
    #wrap {
        /*fallback for IE*/
        background: #ffffff;
    }

    .wrapper {
        height: auto;
    }

    .content-body{
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px){
    body {
        padding: 0 !important
    }
}