/*  Start Reset CSS  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

*:focus {
    outline: none;
}

html, body {
    font-family: 'Poppins', sans-serif;
}

input {
    outline: 0;
    -webkit-appearance: none;
    box-shadow: unset;
}

textarea {
    -webkit-appearance: none;
}

img {
    max-width: 100%;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: unset;
    word-break: break-word;
}
/*  End Reset CSS  */

.container-fluid{
    padding: 0 16px;
}
.container{
    width: 1248px;
    margin: auto;
    padding: 0 24px;
}
@media only screen and (max-width: 1250px) {
    .container{
        width: 944px;
    }
}
@media only screen and (max-width: 1024px) {
    .container{
        width: 728px;
        padding: 0 16px;
    }
}
@media only screen and (max-width: 767px) {
    .container{
        width: 100%;
    }
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    min-width: 200px;
    height: 48px;
    border: 2px solid #0F62FE;
    background-color: #0F62FE;
}

/***************  START MAIN CONTENT  **************/
.main-content-wrap{
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.main-content{
    flex: 0 0 calc(100% - 312px);
    width: calc(100% - 312px);
    padding: 0 24px;
    background-color: #F2F4F8;
}
/****************  END MAIN CONTENT  ***************/

/***************  START Magnific Popup  **************/
.white-popup {
    position: relative;
    background: #FFF;
    padding: 130px 100px;
    width: auto;
    max-width: 620px;
    margin: 20px auto;
}
.mfp-close-btn-in .mfp-close{
    color: #060B26;
    opacity: 1;
    width: 48px;
    height: 48px;
}
.mfp-close-btn-in .mfp-close:after{
    content: "";
    background-image: url(../icons/close.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 24px;
    right: 24px;
}
.mfp-bg.mfp-ready{
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.popup-title{
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 16px;
    text-align: center;
}
.popup-input-wrap{
    position: relative;
    margin-bottom: 16px;
}
.popup-input{
    width: 100%;
    height: 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
    padding: 12px 16px;
    border: 1px solid #B5B5B5;
}
.error-msg{
    display: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #DE291D;
    margin-top: 8px;
}
.popup-input-wrap.error .popup-input{
    border-color: #DE291D;
}
.popup-input-wrap.error .error-msg{
    display: block;
}

.popup-btn-wrap{
    margin-top: 32px;
}
.popup-btn{
    width: 100%;
    font-weight: 400;
    background-color: #2F80ED;
    border: none;
    cursor: pointer;
}
/****************  END Magnific Popup  ***************/