/*TABLE OF CONTENTS*/
/*=====================
01. RESET CSS
02. BASE TYPOGRAPHY
03. PRE DEFINE CLASS CSS
04. HEADER CSS
05. HERO SECTION CSS
06. PROMO SECTION CSS
07. FEATURE SECTION CSS
08. FOOTER CSS
09. BACK TO TOP CSS
=======================*/


/* -----------------------------------------
                01. RESET CSS
-------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
* {
    scrollbar-width: thin;
    scrollbar-color: #623a96 #999999;
}
  
/* Width and color for webkit-based browsers */
*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #999999;
}

*::-webkit-scrollbar-thumb {
    background: #623a96;
    border-radius: 5px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
html{
    overflow-y: scroll;
    font-size: 15px;
}

/* -----------------------------------------
                02. BASE TYPOGRAPHY
-------------------------------------------- */

body, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, .navbar, .brand, .btn, .btn-simple, a, .td-name, td {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #707070;
    font-weight: 400;
    line-height: 1.75;
}

p:not(:last-child) {
    margin-bottom: 1.25em;
}

h1, h2, h3, h4, h5 {
    margin: 0 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.21;
    color: initial;
}

h1 {
    margin-top: 0;
    font-size: 3.052em;
}

h2 {
    font-size: 2.441em;
}

h3 {
    font-size: 1.953em;
}

h4 {
    font-size: 1.563em;
}

h5 {
    font-size: 1.25em;
}

small, .text_small {
    font-size: 0.8em;
}

strong, b{
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}
.badge {
    display: inline;
    padding: .25rem .5rem;
    font-size: 80%;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .375rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.badge-pill {
    padding-right: .875em;
    padding-left: .875em;
    border-radius: 50rem;
}
/*========================================
        03. PRE DEFINE CLASS CSS
==========================================*/
.rounded {
    border-radius: 1rem!important;
}
.ptb-100{
    padding: 100px 0;
}
.pt-100{
    padding-top: 100px;
}
.pt-150{
    padding-top: 150px;
}
.pb-100{
    padding-bottom: 300px;
}
.mt--120{
    margin-top: -400px !important;
}
.mb--120{
    margin-bottom: -100px !important;
}
.gray-light-bg{
    background: #f7f7f7;
}
.primary-bg{
    background: #21174D;
}
.secondary-bg{
    background: #623A96;
}
.color-primary{
    color: #21174D;
}
.color-secondary{
    color: #623A96;
}
.gradient-bg{
    background-image: linear-gradient(to bottom, rgba(31, 15, 53), rgba(124, 75, 187)) !important;
}

.white-bg{
    background: #ffffff;
}

a{
    color: #21174D;
}
a:hover{
    color: #623A96;
    text-decoration: none;
}

.color-1{
    color: #fff;
}
.color-1-bg{
    background: #21174D;
}

.color-2{
    color: #fff;
}
.color-2-bg{
    background: #623A96;
}

.color-3{
    color: #1F164C;
}
.color-3-bg{
    background: #BBB6C6;
}
.color-4, .ratting-color{
    color: #ff7c3f;
}
.color-4-bg{
    background: rgba(255, 124, 63, 0.15);
}

.color-5, .success-color{
    color: #2ebf6d;
}
.color-5-bg{
    background: rgba(46, 191, 109, 0.15);
}
.color-6{
    color: #1F164C;
}
.color-6-bg{
    background: #D3CAE5;
}
.is-invalid {
    color: #dc3545;
}
.is-valid {
    color: #2ebf6d;
}
.form-group label {
    font-weight: 600;
    color: #623A96;
}
.animated-btn{
    transition: all .25s ease-in-out;
}
.animated-btn:hover{
    transform: scale(1) translateY(-4px) translateZ(20px);
}
.outline-btn, .solid-btn, .primary-solid-btn{
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif
}

.primary-solid-btn{
    border-color: #3264f5;
    background: #3264f5;
    color: #ffffff;
}
.primary-solid-btn:hover{
    background: transparent;
    color: #202877;
    border-color: #202877;
}
.solid-btn{
    color: #fff;
    -webkit-box-shadow: 0 20px 30px 0 rgba(67,37,204,.2);
    box-shadow: 0 20px 30px 0 rgba(67,37,204,.2);
    background: #623A96;
    border-radius: 30px;
    font-weight: 600;
}

.solid-btn:hover{
    background: #21174D;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.outline-btn{
    border-radius: 30px;
    color: #623A96;
    display: inline-block;
    border: 2px solid #623A96;
}
.outline-btn:hover{
    color: #fff;
    background: #623A96;
    -webkit-box-shadow: 0 10px 30px 0 rgba(67,37,204,.12);
    box-shadow: 0 10px 30px 0 rgba(67,37,204,.12);
}

.primary-bg h1, .primary-bg p{
    color: #fff;
}
.solid-white-btn, .outline-white-btn{
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.solid-white-btn{
    background: #ffffff;
    border-color: #ffffff;
    color: #623A96;
    border-radius: 30px;
}
.solid-white-btn:hover{
    background: transparent;
    color: #ffffff;
}
.outline-white-btn{
    border-radius: 30px;
    color: #ffffff;
    border-color: #ffffff;
}
.outline-white-btn:hover{
    background: #ffffff;
    color: #623A96;
}

/*icon size*/
.icon-sm {
    font-size: 25px;
    line-height: 25px;
}

.icon-md {
    font-size: 40px;
    line-height: 40px;
}

.icon-lg {
    font-size: 50px;
    line-height: 50px;
}

/*form field css*/
.g-recaptcha {
    width: 100%; /* Adjust the width as needed */
    margin: 0 auto; /* Center the reCAPTCHA widget */
}
.form-control{
    border-color: #ebebeb;
    padding: .75rem 0.85rem;
    height: calc(2.56em + .75rem + 2px);
}
.form-control:focus{
    outline: none;
    box-shadow: none;
}

input[type]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
select.form-control.has-value{
    color: #b1b1b1 !important;
    font-size: 13px;
}

input[type]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder,
select.form-control.has-value{
    /* Firefox 18- */
    color: #b1b1b1;
    font-size: 13px;
}

input[type]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder,
select.form-control.has-value{
    /* Firefox 19+ */
    color: #b1b1b1;
    font-size: 13px;
}

input[type]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
select.form-control.has-value{
    color: #b1b1b1;
    font-size: 13px;
}

.section-heading h2 span{
    font-weight: 400;
    font-size: 2rem;
}

.z-index{
    z-index: 9;
}

/*=========================================
            04. HEADER CSS
============================================*/
.affix {
    background-color: #202877;
    -webkit-transition: padding 0.2s ease-out;
    -moz-transition: padding 0.2s ease-out;
    -o-transition: padding 0.2s ease-out;
    transition: padding 0.2s ease-out;
}

.white-bg.affix, .custom-nav.affix {
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
}

.white-bg.affix ul li a {
    color: #081d43 !important;
    opacity: 0.8;
}

.white-bg.custom-nav ul li a:hover {
    opacity: 1;
}

.bg-transparent ul li a:hover, .white-bg.affix ul li a:hover {
    opacity: 1;
}

.bg-transparent.affix {
    background-image: linear-gradient(to left, #3264f5, #4a54e8, #5b42db, #682ccb, #623A96) !important;
}

.navbar-toggler{
    color: #ffffff;
}

/*main menu new style*/
.header nav.navbar{
    padding: 0 1rem;
    transition: all .3s ease-in-out;
}
.navbar-brand {
    font-size: inherit;
    height: auto;
    margin-bottom: -8px;
}

.menu {
    display: block;
}

.menu li {
    display: inline-block;
    position: relative;
}

.menu li:first-child {
    margin-left: 0;
}

.menu li a {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
    padding: 20px 10px;
    display: block;
    transition: all 0.3s ease-in-out 0s;
    color: #ffffff;
    opacity: 0.8;
}

.menu li a:hover, .menu li:hover>a {
    opacity: 1;
}
.menu li a.active{
    color: #623A96;
}

.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 200px;
    position: absolute;
    left: 0;
    background: #fff;
    z-index: 9;
    border-radius: 4px;
    transform: translate(0,20px);
    transition: all 0.3s ease-out;
    -webkit-box-shadow: 0 4px 10px rgba(0,0,0,.15);
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.menu ul.sub-menu li{
    border-bottom: 1px solid #ebebeb;
}
.menu ul.sub-menu li:last-child{
    border-bottom: 0;
}
.menu ul:after {
    bottom: 100%;
    left: 35px;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border: solid transparent;
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px;
}
.menu li a.dropdown-toggle::after {
    position: relative;
    left: 2px;
    vertical-align: middle;
}


.menu ul li {
    display: block;
    float: none;
    background: none;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-transform: inherit;
    font-size: 13px;
    display: block;
    color: #424141;
    padding: 8px 15px;
    font-family: 'Montserrat', sans-serif;
}
.menu ul li a:hover, .menu ul li:hover>a {
    color: #ffffff;
    background: #623A96;
}

.menu ul.sub-menu li:first-child a:hover,
.menu ul.sub-menu li:last-child ul li:first-child a:hover{
    border-radius: 4px 4px 0 0;
}
.menu ul.sub-menu li:last-child a:hover,
.menu ul.sub-menu li:last-child ul li:last-child a:hover{
    border-radius: 0 0 4px 4px;
}
.menu ul.sub-menu li:last-child ul li a:hover{
    border-radius: 0;
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}

.menu ul ul {
    left: 200px;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transform: translate(20px,20px);
    transition: all 0.2s ease-out;
}

.menu ul.sub-menu ul:after {
    left: -8px;
    top: 10px;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border: solid transparent;
    border-right-color: #fff;
    border-width: 8px;
}

.menu li>ul ul:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}
.responsive-menu {
    display: none;
    width: 100%;
    padding: 20px 15px;
    background: #374147;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.responsive-menu:hover {
    background: #374147;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 320px) and (max-width: 992px) {
    .navbar {
        background-image: linear-gradient(to left, #3264f5, #305be4, #3b4fe2, #4740de, #623A96) !important;
        padding: .85rem 1rem !important;
    }
    .menu li{
        display: block;
    }

    .white-bg.affix, .custom-nav.affix, .navbar.white-bg {
        background: #ffffff !important;
        border-bottom: 1px solid #ebebeb;
    }

    .white-bg.custom-nav ul li a, .custom-nav ul li a {
        color: #081d43 !important;
    }

    .white-bg.navbar .navbar-toggler span {
        color: #202877;
    }
}

@media (min-width: 992px) {
    .navbar {
        border-bottom: 1px solid rgba(0, 0, 0, 0);
        background: transparent;
        -o-transition: border-bottom .3s ease-in-out, background .3s ease-in-out, padding .3s ease-in-out;
        -webkit-transition: border-bottom .3s ease-in-out, background .3s ease-in-out, padding .3s ease-in-out;
        -moz-transition: border-bottom .3s ease-in-out, background .3s ease-in-out, padding .3s ease-in-out;
        transition: border-bottom .3s ease-in-out, background .3s ease-in-out, padding .3s ease-in-out;
        -webkit-backface-visibility: hidden;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
    .mainWrap {
        width: 768px;
    }

    .menu ul {
        top: 37px;
    }

    .menu li a {
        padding: 8px 15px;
    }

    a.homer {
        background: #374147;
    }
}

@media (max-width: 767px) {
    .responsive-menu{
        display: block;
    }
    .header nav.navbar{
        padding: 0.5rem 1rem;
    }
    .mainWrap {
        width: auto;
        padding: 50px 20px;
    }

    nav {
        margin: 0;
        background: none;
    }

    .menu li {
        display: block;
        margin: 0;
    }

    .menu li a {
        padding: 8px 15px;
    }

    .menu li a:hover,.menu li:hover>a {
        background: #3264f5;
        color: #fff;
    }

    .menu ul {
        visibility: hidden;
        opacity: 0;
        top: 0;
        left: 0;
        width: 100%;
        transform: initial;
    }

    .menu li:hover>ul {
        visibility: visible;
        opacity: 1;
        position: relative;
        transform: initial;
    }

    .menu ul ul {
        left: 0;
        transform: initial;
    }

    .menu li>ul ul:hover {
        transform: initial;
    }
}

.custom-badge{
    position: absolute;
    right: 10px;
}

/*==================================
        05. HERO SECTION CSS
========================================*/
.hero-equal-height {
    position: relative;
    min-height: 900px;
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.gradient-overlay {
    position: relative;
    width: 100%;
}

.gradient-overlay .title {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 10px;
}

.gradient-overlay .lead {
    font-size: 1.25em;
    font-weight: 600;
}
.hide-sm {
    display: none;
}
.action-btns.download-btn {
    margin-top: 8rem !important;
    display: flex;
    justify-content: center;
}
.action-btns.download-btn a {
    display: block;
}
.action-btns.download-btn a img {
    max-height: 70px;
}

.triangle-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-right: 100px solid transparent; /* Adjust the size to control the triangle's width */
    border-bottom: 100px solid #ffffff; /* Adjust the size and color to match the container */
}

.curve-left {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    background-image: linear-gradient(to bottom, rgb(114 69 173), rgb(124 75 187));
    border-bottom-left-radius: 100px;
}
.triangle-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 100px solid transparent; /* Adjust the size to control the triangle's width */
    border-bottom: 100px solid #ffffff; /* Adjust the size and color to match the container */
}

.curve-right {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100px;
    height: 100px;
    background-image: linear-gradient(to bottom, rgb(114 69 173), rgb(124 75 187));
    border-bottom-right-radius: 100px;
}

.gradient-overlay:before{
    position: absolute;
    content: '';
    background-image: linear-gradient(to bottom, rgba(31, 15, 53), rgba(124, 75, 187));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/*======================================
        06. PROMO SECTION CSS
==================================*/
.promo-new .promo-mobile {
    max-width: 400px;
}

.single-promo-hover{
    transition: all .2s ease-out;
    will-change: transform;
}
.single-promo-hover:hover {
    transform: translateY(-10px);
}

/*==========================================
        07. FEATURES CSS
=======================================*/
.screen-slider-content {
    position: relative
}
.screen-slider-content .features-container {
    margin: 0 20px;
    background-color: #fff;
    min-height: 235px;
    margin-bottom: 10px;
}
.owl-theme .owl-nav {
    margin-top: -10px;
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block;
}

.owl-stage-outer {
    position: relative;
}
.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.owl-carousel .owl-nav {
    display: grid !important;
    justify-content: space-between;
    align-items: center;
}
.owl-carousel .owl-nav .owl-prev {
    grid-column: 1;
    justify-self: left;
    margin-left: -50px;
}
.owl-carousel .owl-nav .owl-next {
    grid-column: 2;
    justify-self: right;
    margin-right: -50px;
}
.owl-carousel .owl-nav .owl-next:focus-visible,
.owl-carousel .owl-nav .owl-next:focus,
.owl-carousel .owl-nav .owl-prev:focus-visible,
.owl-carousel .owl-nav .owl-prev:focus {
    box-shadow: none;
    border: none;
    outline: none;
}
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    line-height: 1 !important;
    font-size: 4em !important;
    background-color: #ffffff !important;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    box-shadow: -1px 1px 10px #e3e3e3;
}
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:hover {
    background-color: #623A96 !important;
    color: #fff !important;
}
.owl-carousel .owl-prev span, 
.owl-carousel .owl-next span {
    position: relative;
    top: -10px;
    font-weight: 300;
    color: #623A96;
} 
.owl-carousel .owl-next span {
    left: 2px;
}
.owl-carousel .owl-prev span {
    left: -2px;
}
.owl-carousel .owl-nav .owl-next:hover span,
.owl-carousel .owl-nav .owl-prev:hover span {
    color: #fff !important;
}
.slider-title {
    color: #623A96;
    min-height: 46px;
}
.screen-carousel p {
    color: #747474;
    font-weight: 500;
}

@media (min-width: 320px) and (max-width: 1200px){
    .screenshot-frame{
        display: none;
    }
}
.screen-carousel .owl-item img {
    -webkit-transform: scale(.85);
    transform: scale(.85);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #ebebeb;
    border-radius: 30px
}

.screen-carousel .owl-item.active.center img {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.dot-indicator.owl-theme button.owl-dot span{
    display: inline-block;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    background: #d8d8d8;
    border-radius: 50%;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    transition: 0.3s;
}
.dot-indicator.owl-theme button.owl-dot:focus{
    border: none;
    outline: none;
}
.dot-indicator.owl-theme button.owl-dot.active span{
    background: #623A96;
    border: 2px solid transparent;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}
.screen-carousel.dot-indicator.owl-theme .owl-nav.disabled+.owl-dots{
    margin-top: 20px;
}

/*=========================================
            08. BACK TO TOP CSS
============================================*/

.scroll-top.open {
    bottom: 30px;
}
button.scroll-top:focus{
    outline: none;
}
.scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    bottom: 105%;
    right: 50px;
    font-size: 16px;
    border-radius: 4px;
    z-index: 999;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: #623A96;
    transition: 1s ease;
    border: none;
}
.scroll-top span {
    color: #fff;
}

.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

/*404 page*/
.error-content .notfound-404 {
    position: relative;
    height: 280px;
    z-index: 2;
    margin-bottom: 30px;
}
.error-content .notfound-404 h1 {
    font-size: 230px;
    font-weight: 700;
    margin: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-size: cover;
    background-position: center;
}


@media (min-width: 320px) and (max-width: 767px){
    .error-content .notfound-404{
        height: auto;
        display: block;
        position: relative;
    }
    .error-content .notfound-404 h1{
        font-size: 80px;
        position: relative;
    }

}

/*=========================================
           09. FOOTER CSS
============================================*/
.copyright-text a:hover {
    opacity: 1;
    text-decoration: none;
}

.copyright-text {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
.modal-title {
    color: #623A96;
    font-weight: 700;
    text-transform: uppercase;
}
.modal-header, .modal-footer {
    border-color: #f0f0f0;
}
.full-screen{
    min-height: 100vh;
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*404 page*/
.error-content .notfound-404 {
    position: relative;
    height: 280px;
    z-index: 2;
    margin-bottom: 30px;
}
.error-content .notfound-404 h1 {
    font-size: 230px;
    font-weight: 700;
    margin: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-size: cover;
    background-position: center;
}

@media (min-width: 320px) and (max-width: 767px){
    .error-content .notfound-404{
        height: auto;
        display: block;
        position: relative;
    }
    .error-content .notfound-404 h1{
        font-size: 80px;
        position: relative;
    }
    .modal-content {
        width: 90%;
        margin: auto;
    }

}
@media (min-width: 320px) and (max-width: 576px) {
    .modal-content div[class*='col-']:not(:last-of-type) {
        margin-bottom: 0px !important;
    }
}
@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 650px;
    }
}
.text-dark {
    color: #000000 !important;
}
.font-weight-bold {
    font-weight: 600 !important;
}
.modal-title, .solid-btn, .outline-btn {
    font-size: 16px;
}
.form-group label {
    font-size: 13px;
}