.btn {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    outline: none;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-weight: bold;
    border-radius: 3px;
    background-color: rgba(47, 85, 212, 0.1);
    border: 1px solid rgba(47, 85, 212, 0.1);
    color: var(--blue);
    box-shadow: 0 3px 5px 0 rgb(47 85 212 / 30%);
}

.btn svg {
    width: 100%;
    height: 100%;
    fill: var(--blue);
}

.btn:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.btn:hover svg {
    fill: #fff !important;
}

.btn.btn-icon {
    height: 36px;
    width: 36px;
    line-height: 34px;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-icon svg {
    width: 52%;
    height: 52%;
}

.btn.btn-big svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.btn.btn-success {
    background-color: rgba(46, 202, 139, 0.1);
    border: 1px solid rgba(46, 202, 139, 0.1);
    color: var(--color3);
    box-shadow: 0 3px 5px 0 rgb(46 202 139 / 30%);
}

.btn.btn-success svg {
    fill: var(--color3);
}

.btn.btn-success:hover {
    background-color: var(--color3);
    border-color: var(--color3);
    color: #fff !important;
}

.btn-big {
    font-weight: 600;
    padding: 8px 23px;
    margin-bottom: 7px;
}

.btn-blue {
    background: var(--blue);
    border: solid 1px var(--blue);
    color: #fff;
}

.btn-blue svg {
    fill: #fff !important;
}

.btn-green {
    background: var(--color3);
    border: solid 1px var(--color3);
    color: #fff;
    box-shadow: 0 3px 5px 0 rgb(46 202 139 / 30%);
}

.btn.btn-icon.btn-green svg {
    fill: #fff !important;
}

.btn-green:hover {
    background: #25a06e;
    border-color: #25a06e;
}

.btn-blue:hover {
    background-color: #2443ac;
    border-color: #2443ac;
}

.btn-white {
    background: #fff;
    border: solid 1px var(--blue);
    color: var(--blue);
    box-shadow: none;
}

.btn-white:hover {
    background-color: var(--blue);
    border-color: var(--blue);
}

.btn span.badge {
    border-radius: 12px;
    display: inline-block;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    font-size: 0.8em;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #f17425;
    color: #ffffff;
}


/**********************************************************************/

.feature-box {
    box-shadow: var(--shadow);
    color: var(--blue);
    transition: all 0.5s ease;
    text-align: center;
    padding: 1.5rem 1.5rem 3rem 1.5rem;
    overflow: hidden;
    border: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .25rem;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box p {
    color: var(--color4);
    font-size: 1.1rem;
}

.feature-box-icon {
    height: 65px;
    width: 65px;
    border-radius: 6px;
    line-height: 65px;
    background-color: rgba(47, 85, 212, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-box-icon svg {
    fill: var(--blue);
    width: 50%;
    height: 50%;
}

.feature-box h4 {
    line-height: 1.5;
    font-weight: 600;
    font-size: 20px;
    margin: 1.5rem 0 1.1rem 0;
}

.feature-box .feature-box-bg-img,
.feature-box2 .feature-box-bg-img,
.feature-box3 .feature-box-bg-img{
    position: absolute;
    top: 10%;
    transform: translateY(20%) scale(2.3);
    opacity: 0;
    margin: 0 auto;
    z-index: -2;
    transition: all 0.5s ease;
    fill: var(--blue);
}

.feature-box:hover .feature-box-bg-img {
    opacity: 0.05;
}

.feature-box2 {
    box-shadow: none;
    background: #f8f9fc;
    margin-bottom: 11px;
    border-radius: 12px;
}

.feature-box2 {
    transform: translateY(0);
    background-color: rgba(47, 85, 212, 0.85);
}

.feature-box2 .feature-box-bg-img {
    opacity: 0.05;
    fill: red !important;
}

.feature-box2 h4 {
    color: #fff;
}

.feature-box2 p {
    color: #fff;
}

.feature-box2 .feature-box-icon svg {
    fill: rgba(255, 255, 255, 0.9);
}

.feature-box2 a{
    color: chartreuse;
}

.feature-box2 a:hover:not(.btn){
    color: chartreuse;
    text-decoration: underline;
}

.feature-box2 .feature-box-icon{
    color: #fff;
}

.feature-box2 .feature-box-bg-img{
    color: red;
}


.feature-box3 {
    transform: translateY(-10px);
    background-color: #fff;
    margin-bottom: 11px
}

/**********************************************************************/


/* ribbon */

.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 5px solid #f17425;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 15px 0;
    background-color: #f17425;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    color: #fff;
    font: 700 18px/1 'Lato', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    text-transform: uppercase;
    text-align: center;
}


/* top left*/

.ribbon-top-left {
    top: -10px;
    left: -10px;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}

.ribbon-top-left::before {
    top: 0;
    right: 0;
}

.ribbon-top-left::after {
    bottom: 0;
    left: 0;
}

.ribbon-top-left span {
    right: -25px;
    top: 30px;
    transform: rotate(-45deg);
}


/* top right*/

.ribbon-top-right {
    top: -10px;
    right: -10px;
}

.ribbon-top-right::before,
.ribbon-top-right::after {
    border-top-color: transparent;
    border-right-color: transparent;
}

.ribbon-top-right::before {
    top: 0;
    left: 0;
}

.ribbon-top-right::after {
    bottom: 0;
    right: 0;
}

.ribbon-top-right span {
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
}


/* bottom left*/

.ribbon-bottom-left {
    bottom: -10px;
    left: -10px;
}

.ribbon-bottom-left::before,
.ribbon-bottom-left::after {
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.ribbon-bottom-left::before {
    bottom: 0;
    right: 0;
}

.ribbon-bottom-left::after {
    top: 0;
    left: 0;
}

.ribbon-bottom-left span {
    right: -25px;
    bottom: 30px;
    transform: rotate(225deg);
}


/* bottom right*/

.ribbon-bottom-right {
    bottom: -10px;
    right: -10px;
}

.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.ribbon-bottom-right::before {
    bottom: 0;
    left: 0;
}

.ribbon-bottom-right::after {
    top: 0;
    right: 0;
}

.ribbon-bottom-right span {
    left: -25px;
    bottom: 30px;
    transform: rotate(-225deg);
}


/**********************************************************************/

.pagination {
    display: flex;
    border-radius: .25rem;
    margin: 20px 0;
    list-style: none;
}

.pagination .page-item:first-child .page-link {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.pagination .page-item .page-link {
    color: #3c4858;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination .page-item::before {
    content: '';
    background-image: none;
}

.pagination .page-item .page-link {
    color: #3c4858;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.pagination .page-item:last-child .page-link {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.pagination .page-item .page-link:hover {
    color: #ffffff;
    background: rgba(47, 85, 212, 0.9);
    border-color: rgba(47, 85, 212, 0.9);
}

.pagination2{
    display: flex;
    justify-content: center;
}


/**********************************************************************/

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
}

table td,
table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    vertical-align: middle;
    padding-bottom: 1rem;
    padding-top: 1rem;
    text-align: left;
}

table tbody tr:hover {
    color: #3c4858;
    background-color: #f8f9fa;
}


/**********************************************************************/

.badge {
    display: inline-block;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 12px;
}

.badge-danger {
    background-color: #e43f52;
    color: #ffffff;
}


/**********************************************************************/

dt {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03rem;
    margin: 3rem 0 1rem 0;
}

dt span {
    color: var(--color3);
}

dd {
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--color4);
}

.feature-box- .feature-box-icon{
    color: var(--blue);
}

.alert {
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
}

.alert-success {
    background-color: rgba(46, 202, 139, 0.9);
    color: #ffffff;
    border-color: #2eca8b;
}

.alert h4{
    font-size: 1.5rem;
    margin-bottom: 23px;
}

.alert hr{
    border-top: 1px solid #e9ecef;
    margin: 1rem 0;
    border-bottom: none;
}

.alert ul li {
    list-style: disc;
    margin-left: 40px;
}

.alert-danger {
    background-color: rgba(228, 63, 82, 0.9);
    color: #fff;
    border-color: #e43f52;
}

