* {
    scroll-behavior: inherit !important;
}
:root {
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Inter', sans-serif;
    --theme-color: #f55344;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-dark: #023350;
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --transition: all .5s ease-in-out;
}
body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
}
h2{
    color: var(--color-dark);
    margin: 0px;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.2;
}
.py-100 {
    padding: 100px 0;
}
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}
.error-wrapper {
    text-align: center;
}
.error-wrapper img {
    width: 100%;
}
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}
.error-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}
p {
    margin: 0px;
}
.error-wrapper .theme-btn {
    margin-top: 30px;
}
a, a:active, a:focus, a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

.theme-btn {
    position: relative;
    font-size: 16px;
    background: var(--theme-color);
    color: var(--color-white);
    padding: 10px 20px;
    display: inline-block;
    vertical-align: middle;
    text-transform: capitalize;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 1;
}

@media (min-width: 768px) {
    .container{
        max-width: 720px;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }
}
.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-right: auto;
    margin-left: auto;
}
