:root{
  --app-primary: #D52941; /*#0052cc*/
  --app-primary-dark: #990D35;
  --app-secondary: #FCD581;
  --app-secondary-dark: #FCC652;
  --app-secondary-lite: #FFF3D6;
  --app-info: #0052cc80;
  --app-body-font: 'Inter Tight', -apple-system, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --app-heading-font: 'Bricolage Grotesque', var(--app-body-font);
  --app-link: #0052cc;
  --app-dark: #050D0F;
  --app-lite: #FAFAFA;
  --app-white: #ffffff;
  --app-silver: #737373;
}
*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html[dir="rtl"] {
    text-align: right;
}
*::-moz-selection {
    color: var(--app-white);
    background-color: var(--app-primary);
}
*::selection {
    color: var(--app-white);
    background-color: var(--app-primary);
}
::-webkit-input-placeholder {
    color: var(--app-silver) !important;
}
:-ms-input-placeholder {
    color: var(--app-silver) !important;
}
::placeholder {
    color: var(--app-silver) !important;
}
::-webkit-scrollbar {
    width: .5rem;
}
::-webkit-scrollbar:horizontal {
    height: 3px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 .5rem var(--app-silver); 
  border-radius: 2rem;
}
::-webkit-scrollbar-thumb {
  background: var(--app-lite); 
  border-radius: 1rem;
  -webkit-transition: all ease-in-out .5s;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--app-secondary); 
  -webkit-transition: all ease-in-out .5s;
}
::-webkit-scrollbar-button:horizontal:end:increment,
::-webkit-scrollbar-button:horizontal:start:decrement,
::-webkit-scrollbar-button:vertical:end:increment,
::-webkit-scrollbar-button:vertical:start:decrement {
    display: block;
}
::-webkit-scrollbar-button:horizontal:start {
    width: 3px;
}
::-webkit-scrollbar-button:horizontal:end {
    width: 3px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--app-lite);
  font-size: 14px;
  font-family: var(--app-body-font);
  color: var(--app-dark);
  padding:1rem;
  transition: all ease-in-out .65s;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 0;
  font-family: var(--app-heading-font);
  font-weight: 900;
  color: var(--app-dark);
}
a,
a.nav-link{
  color: var(--app-link);
  text-decoration: none;
  transition: all ease-in-out .65s;
}
a:hover,
a.nav-link:hover{
  color: var(--app-link);
  text-decoration: underline;
  transition: all ease-in-out .65s;
}
@media (min-width: 1200px) {
  .container {
    width: 970px;
  }
}

header {
  background: var(--app-white); 
  -webkit-box-shadow: inset 0 -2px 5px rgba(36, 78, 115, .1);
  box-shadow: inset 0 -2px 5px rgba(36, 78, 115, .1);
  border-bottom: inset rgba(0, 0, 0, 0.12) !important;
  border-radius: 0 0 1rem 1rem;
  margin-bottom: 2rem;
  transition: all ease-in-out .65s;
}
.v-menu{
 margin-top: .2rem;
}
header .nav-item, 
header .nav-link,
.v-menu .nav-item,
.v-menu .nav-link{
  font-weight: 500;
  color: var(--app-silver);
  text-decoration: none;
  justify-content: center;
  text-align: center;
  align-items: center;
  transition: all ease-in-out .65s;
}
.v-menu .nav-link{ text-align: start; }
header .nav-item .nav-link:hover,
header .nav-item .nav-link:focus,
.v-menu .nav-item .nav-link:hover,
.v-menu .nav-item .nav-link:focus{
  color: var(--app-dark);
  text-decoration: none;
  transition: all ease-in-out .65s;
}
header .nav-item .nav-link.active,
.v-menu .nav-item .nav-link.active{
  color: var(--app-primary-dark);
  font-weight: 900;
  text-decoration: none;
  transition: all ease-in-out .65s;
}
.v-menu .nav-item .nav-link.active{ 
  text-align: start; 
  background: var(--app-primary);
  color: var(--app-white);
}
.accordion-button:not(.collapsed) {
    color: var(--app-primary-dark);
    background-color: rgba(252, 213, 129,.5);
    box-shadow: inset 0 calc(-1* 1px) 0 rgba(252, 213, 129,.5);
}
.navbar.bg-body-white{
  background-color: rgba(255, 255, 255,.7);
  backdrop-filter: blur(5px);
}
.jumbotron {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: .9rem;
  background-repeat: no-repeat; 
  background-size: contain; 
  background-position: top;
  transition: all ease-in-out .65s;
}
.carousel .carousel-inner{
  border-radius: 1rem;
  transition: all ease-in-out .65s;
}
.carousel-item img{
  max-width: 100%;
  max-height: 350px;
  transition: all ease-in-out .65s;
}
.carousel .carousel-caption{
  background: rgba(255, 255, 255, .8);
  max-width: max-content;
  border-radius: 1rem;
  box-shadow: -.1rem 1rem 1rem .2rem rgba(0,0,0, .7);
}
.modal-header,
.modal-footer {
    background: var(--app-bg) !important;
}
.modal-header {
    border-bottom: 2px groove var(--app-bg);
    border-top: none;
}

.modal-header .modal-title {
    font-weight: 600;
    cursor: default;
    user-select: none;
}

.modal-footer {
    border-top: 2px groove var(--app-bg);
    border-bottom: none;
}

.modal-body {
    background: #fff !important;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}
.page-title {
  margin-top: 30px;
  margin-bottom: 0;
}
.page-description {
  color: var(--app-dark)
}

.bg-lite {
  background: var(--app-lite);
}

.blog-main {
  line-height: 1.5;
}

.widget {
  padding: 15px;
  margin: 0 -15px 15px;
}
.widget-inset {
  padding: 1rem;
  border-radius: .9rem;
  background: #dfdfdf;
  border: 2px ridge var(--app-lite);
  transition: all ease-in-out .65s;
}
.widget-inset p:last-child,
.widget-inset ul:last-child,
.widget-inset ol:last-child {
  margin-bottom: 0;
}
.status-badge{
  user-select: none;
}
.notation{
  animation: notation 2s infinite;
}
@keyframes notation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.blog-post {
  margin-bottom: 60px;
}
.blog-post-title {
  margin-bottom: 5px;
}
.blog-post-meta {
  margin-bottom: 20px;
}
.form-check-input {
    border-color: var(--app-primary);
}
.form-check-input:checked {
    background-color: var(--app-primary);
    border-color: var(--app-primary-dark);
}
.form-check-input:focus {
    border-color: var(--app-primary-dark);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(153, 13, 53, .25);
}
.form-control:disabled,
.form-control:read-only{
  background: rgba(192, 192, 192, .4);
  border-color: var(--app-primary-dark);
  cursor: not-allowed;
}
footer {
  padding: 10px 0;
  text-align: left;
  background: var(--app-lite);
  border-top: 2px dotted var(--app-silver);
  transition: all ease-in-out .65s;
}
footer .page-nav-item {
  display: inline-block;
  padding: 10px;
  color: var(--app-link);
  text-decoration: none;
}
footer .page-nav-item:hover,
footer .page-nav-item:focus {
  color: var(--app-link);
  text-decoration: underline;
}
.gotop{
    width:32px; 
    height:32px;
    padding:0; 
    border: 0;
    text-align:center; 
    background: transparent;
    font-weight: var(--app-fw-bolder);
    color: var(--app-primary-dark);
    text-decoration: none;
    position:fixed;
    bottom:1rem;
    right:1rem;
    display:none;
    transition: opacity .3s ease,color .3s ease, 
                background .3s ease,
                transform .3s ease,
                visibility .3s ease;
  }
  .gotop:hover,
  .gotop:focus{
  background: transparent;
  font-weight: var(--app-fw-bolder);
  color: var(--app-tertiary);
  text-decoration:none;
  }
  .badge-icon img{
    width: 100px;
    max-height: 100px;
    filter: grayscale(100%);
    transition: all .6s ease-in-out;
  }
  .badge-icon:hover img{
    filter: grayscale(0);
    transition: all .6s ease-in-out;
  }
.btn-primary{
    background: var(--app-primary);
    box-sizing: border-box;
    color: var(--app-lite);
    border: 1px solid var(--app-primary);
    text-wrap: inherit;
    word-break: normal;
    transition: all ease-in-out .65s;
}
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:not(:disabled):active, 
.btn-primary:focus-within{
    background: var(--app-primary-dark);
    color: var(--app-white);
    border: 1px solid var(--app-primary-dark);
    text-decoration: none;
    transition: all ease-in-out .65s;
}
.btn-secondary{
    background: var(--app-secondary);
    box-sizing: border-box;
    color: var(--app-dark);
    border: 1px solid var(--app-secondary);
    text-wrap: inherit;
    word-break: normal;
    transition: all ease-in-out .65s;
}
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary:not(:disabled):active, 
.btn-secondary:focus-within{
    background: var(--app-secondary-dark);
    color: var(--app-primary-dark);
    border: 1px solid var(--app-secondary-dark);
    text-decoration: none;
    transition: all ease-in-out .65s;
}
#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 7100;
    background: rgba(252, 198, 82, .8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(.7rem);
    transition: all ease-in-out .65s;
}

.loader {
    z-index: 7700;
    position: fixed;
    top: 50%;
    left: 50%;
    color: var(--app-primary);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all ease-in-out .65s;
}
.profile .profile-header {
    position: relative;
    border-radius: 1rem;
    transition: all ease-in-out .65s;
}
.profile .profile-header .profile-header-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 10.625rem;
    position: relative;
    border-radius: .7rem;
    margin-top: 2rem;
    transition: all ease-in-out .65s;
}
.profile .profile-header{
    position: relative;
    top: -2.5rem;
    left: 1rem;
    border-radius: .7rem;
}
.profile .profile-header .profile-header img {
    max-width: 100%;
    width: 90px;
    -webkit-border-radius: 6px;
    border-radius: .7rem;
    background: var(--app-lite);
    border: 3px ridge var(--app-lite);
    transition: all ease-in-out .65s;
}
.form-control {
    background-color: var(--app-lite);
    border-color: 2px solid var(--app-silver);
    outline: 0;
    transition: all ease-in-out .65s;
}
.form-control:focus {
    background-color: var(--app-white);
    border-color: 2px solid var(--app-dark);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(115, 115, 115, .25);
    transition: all ease-in-out .65s;
}
.btn,
.navbar-toggler {
    transition: all ease-in-out .65s;
}
.btn:focus, 
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0;
    transition: all ease-in-out .65s;
}
button:focus:not(:focus-visible) {
    outline: 0;
}
.border-primary{
    border-color: var(--app-primary) !important
}
.text-primary{
  color: var(--app-primary) !important;
}
.text-secondary{
  color: var(--app-secondary-dark) !important;
}
.text-silver{
  color: var(--app-silver) !important;
}
.searchbox{
  width: 400px;
  transition: all ease-in-out .65s;
}
.section {
  margin: 2rem 0 2rem;
  transition: all ease-in-out .65s;
}
.section .section-heading{
  color: var(--app-primary)
}
.section .btn-more{
  text-decoration: none;
  transform: translateX(0);
  transition: all ease-in-out .65s;
}
.section .btn-more:hover{
  text-decoration: none;
  transform: translateX(5px);
  transition: all ease-in-out .65s;
}
.modal .form-label{
  font-weight: bold;
}
@media screen and (max-width: 900px){
  header .navbar-collapse{
    padding: .8rem;
    border: 2px solid var(--app-silver);
    border-top: none;
    margin-top: 1rem;
    border-radius: 0 0 1rem 1rem;
  }
  header .navbar-collapse .nav-link{
    text-align: left;
    justify-items: start;
  }
  .searchbox{
    width: 240px;
    transition: all ease-in-out .65s;
  }
  .profile-header .flex-grow-2{
    display: block;
    position: sticky;
  }
  .main{
    padding: 3rem;
    overflow: hidden;
  }
} 
@media screen and (min-width: 1px) and (max-width: 500px){
  .carousel-caption{ display: none !important;}
} 