/* ===================================
    Crafto - Hosting
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* variable */
:root {      
    --alt-font: 'Open Sans', sans-serif;
    --primary-font: 'Open Sans', sans-serif;
    --main-color: #2c3190;
    --second-color: #24abe2;
    --dark-gray: #181b31;
    --green: #0fc978;
    --medium-gray: #6e7982;
}
/* reset */
::-webkit-input-placeholder {
    color: #6e7982 !important;
    text-overflow: ellipsis; 
}
::-moz-placeholder {
    color: #6e7982 !important;
    text-overflow: ellipsis;
    opacity: 1; 
}
:-ms-input-placeholder {
    color: #6e7982 !important;
    text-overflow: ellipsis;
    opacity: 1; 
}
body{
    line-height: 30px;
}


/* datatable */
#dataTable {
    width: 100%;
    border-collapse: collapse;
}
#dataTable thead th {
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    font-weight: bold;
}
#dataTable tbody tr {
    border-bottom: 1px solid #ddd;
}
#dataTable tbody td {
    text-align: center;
    vertical-align: middle;
}
#dataTable img {
    border-radius: 5px;
}
.dataTables_wrapper .dataTables_length, 
.dataTables_wrapper .dataTables_filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_length label, 
.dataTables_wrapper .dataTables_filter label {
    margin-bottom: 0;
}

.dataTables_wrapper .dataTables_length select {
    margin-left: 5px;
    margin-right: 5px;
    width: auto;
    display: inline-block;
}

.dataTables_wrapper .dataTables_length select {
    padding: 3px !important;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 5px !important;
    width: auto;
    display: inline-block;
}

.dataTables_wrapper .dataTables_paginate.paging_simple_numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_paginate.paging_simple_numbers .paginate_button {
    padding: 5px 10px !important;
    margin: 0 3px !important;
    border-radius: 3px !important;
    border: 1px solid #ddd !important;
    background-color: #f8f9fa !important;
    color: #333 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background-color 0.3s, color 0.3s !important;
}

.dataTables_wrapper .dataTables_paginate.paging_simple_numbers .paginate_button.disabled {
    background-color: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
}

@media screen and (max-width: 768px) {
    #dataTable {
        font-size: 12px; 
    }
}

@media screen and (max-width: 600px) {
    #dataTable thead th:nth-child(3),
    #dataTable tbody td:nth-child(3),
    #dataTable thead th:nth-child(5),
    #dataTable tbody td:nth-child(5) {
        display: none; 
    }
    
    #dataTable {
        font-size: 11px;
    }
}

.card-2-title {
    font-size: 17px;
    line-height: 20px;
}

@media (max-width: 768px) {
    .card-2-title {
        font-size: 14px;
    }
}

/* condensed spacing */
.condensed-spacing {
    line-height: 1.7;
    text-align: justify;
    margin-top: 0.5em; 
    margin-bottom: 0.5em; 
    padding: 0; 
    overflow-wrap: break-word; 
    word-spacing: -0.05em; 
}


/* ckeditor list */
.content.description-list ul li{
    list-style: disc;
}

/* whatsapp float */
.cbh-phone {
    display: block;
    position: fixed;
    left: -50px;
    bottom: -55px;
    visibility: hidden;
    background-color: transparent;
    width: 200px;
    height: 200px;
    cursor: pointer;
    z-index: 999;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility .5s;
    -moz-transition: visibility .5s;
    -o-transition: visibility .5s;
    transition: visibility .5s
}

.cbh-phone.cbh-show {
    visibility: visible
}

.cbh-phone.cbh-static1 {
    opacity: .6
}

.cbh-phone.cbh-hover1 {
    opacity: 1
}

.cbh-ph-circle {
    width: 110px;
    height: 110px;
    top: 40px;
    left: 40px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30,30,30,.4);
    opacity: .1;
    -webkit-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -o-animation: cbh-circle-anim 1.2s infinite ease-in-out;
    animation: cbh-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.cbh-phone.cbh-active .cbh-ph-circle1 {
    -webkit-animation: cbh-circle-anim 1.1s infinite ease-in-out!important;
    -moz-animation: cbh-circle-anim 1.1s infinite ease-in-out!important;
    -ms-animation: cbh-circle-anim 1.1s infinite ease-in-out!important;
    -o-animation: cbh-circle-anim 1.1s infinite ease-in-out!important;
    animation: cbh-circle-anim 1.1s infinite ease-in-out!important
}

.cbh-phone.cbh-static .cbh-ph-circle {
    -webkit-animation: cbh-circle-anim 2.2s infinite ease-in-out!important;
    -moz-animation: cbh-circle-anim 2.2s infinite ease-in-out!important;
    -ms-animation: cbh-circle-anim 2.2s infinite ease-in-out!important;
    -o-animation: cbh-circle-anim 2.2s infinite ease-in-out!important;
    animation: cbh-circle-anim 2.2s infinite ease-in-out!important
}

.cbh-phone.cbh-hover .cbh-ph-circle {
    border-color: rgba(0,175,242,1);
    opacity: .5
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle {
    border-color: rgba(117,235,80,1);
    opacity: .5
}

.cbh-phone.cbh-green .cbh-ph-circle {
    border-color: rgba(0,175,242,1);
    opacity: .5
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle {
    border-color: rgba(204,204,204,1);
    opacity: .5
}

.cbh-phone.cbh-gray .cbh-ph-circle {
    border-color: rgba(117,235,80,1);
    opacity: .5
}

.cbh-ph-circle-fill {
    width: 74px;
    height: 74px;
    top: 58px;
    left: 58px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .1;
    -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.cbh-phone.cbh-active .cbh-ph-circle-fill {
    -webkit-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out!important;
    -moz-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out!important;
    -ms-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out!important;
    -o-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out!important;
    animation: cbh-circle-fill-anim 1.7s infinite ease-in-out!important
}

.cbh-phone.cbh-static .cbh-ph-circle-fill {
    -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out!important;
    -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out!important;
    -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out!important;
    -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out!important;
    animation: cbh-circle-fill-anim 2.3s infinite ease-in-out!important;
    opacity: 0!important
}

.cbh-phone.cbh-hover .cbh-ph-circle-fill {
    background-color: rgba(0,175,242,.5);
    opacity: .75!important
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle-fill {
    background-color: rgba(117,235,80,.5);
    opacity: .75!important
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
    background-color: rgba(0,175,242,.5);
    opacity: .75!important
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle-fill {
    background-color: rgba(204,204,204,.5);
    opacity: .75!important
}

.cbh-phone.cbh-gray .cbh-ph-circle-fill {
    background-color: rgba(117,235,80,.5);
    opacity: 1!important
}

.cbh-ph-img-circle1 {
    width: 50px;
    height: 50px;
    top: 70px;
    left: 70px;
    position: absolute;
    background-image: url(../../../assets/public/images/whats.png);
    background-size: 40px 40px;
    background-color: rgba(30,30,30,.1);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    -o-animation: cbh-circle-img-anim 1s infinite ease-in-out;
    animation: cbh-circle-img-anim 1s infinite ease-in-out
}

.cbh-phone.cbh-active .cbh-ph-img-circle1 {
    -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out!important;
    -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out!important;
    -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out!important;
    -o-animation: cbh-circle-img-anim 1s infinite ease-in-out!important;
    animation: cbh-circle-img-anim 1s infinite ease-in-out!important
}

.cbh-phone.cbh-static .cbh-ph-img-circle1 {
    -webkit-animation: cbh-circle-img-anim 0 infinite ease-in-out!important;
    -moz-animation: cbh-circle-img-anim 0 infinite ease-in-out!important;
    -ms-animation: cbh-circle-img-anim 0 infinite ease-in-out!important;
    -o-animation: cbh-circle-img-anim 0 infinite ease-in-out!important;
    animation: cbh-circle-img-anim 0 infinite ease-in-out!important
}

.cbh-phone.cbh-hover .cbh-ph-img-circle1 {
    background-color: rgba(0,175,242,1)
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-img-circle1:hover {
    background-color: rgba(117,235,80,1)
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
    background-color: rgba(0,175,242,1);
    background-color: rgba(0,175,242,1)
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-img-circle1 {
    background-color: rgba(204,204,204,1)
}

.cbh-phone.cbh-gray .cbh-ph-img-circle1 {
    background-color: rgba(117,235,80,1)
}

@-moz-keyframes cbh-circle-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: .1
    }

    30% {
        -moz-transform: rotate(0deg) scale(.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: .5
    }

    100% {
        -moz-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: .1
    }
}

@-webkit-keyframes cbh-circle-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
        -webkit-opacity: .1
    }

    30% {
        -webkit-transform: rotate(0deg) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }

    100% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-o-keyframes cbh-circle-anim {
    0% {
        -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
        -o-opacity: .1
    }

    30% {
        -o-transform: rotate(0deg) scale(.7) skew(1deg);
        -o-opacity: .5
    }

    100% {
        -o-transform: rotate(0deg) scale(1) skew(1deg);
        -o-opacity: .1
    }
}

@keyframes cbh-circle-anim {
    0% {
        transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0deg) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .1
    }
}

@-moz-keyframes cbh-circle-fill-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2
    }

    50% {
        -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes cbh-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2
    }

    50% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2
    }
}

@-o-keyframes cbh-circle-fill-anim {
    0% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2
    }

    50% {
        -o-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2
    }
}

@keyframes cbh-circle-fill-anim {
    0% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2
    }
}

@keyframes cbh-circle-img-anim {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,50% {
        transform: rotate(0deg) scale(1) skew(1deg)
    }
}

@-moz-keyframes cbh-circle-img-anim {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg)
    }

    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,50% {
        -moz-transform: rotate(0deg) scale(1) skew(1deg)
    }
}

@-webkit-keyframes cbh-circle-img-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,50% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg)
    }
}

@-o-keyframes cbh-circle-img-anim {
    0% {
        -o-transform: rotate(0deg) scale(1) skew(1deg)
    }

    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,50% {
        -o-transform: rotate(0deg) scale(1) skew(1deg)
    }
}

.cbh-phone.cbh-green .cbh-ph-circle {
    border-color: #00f2a4
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
    background-color: #00f2a4
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
    background-color: #2ecb71
}



/* password input */

#togglePassword {
    position: absolute;
    right: 45px;
    top: 0;
    bottom: -40px;
    background-color: transparent; 
    border: none; 
    box-shadow: none; 
    outline: none; 
    padding: 0; 
    cursor: pointer; 
}

#togglePassword:focus,
#togglePassword:active {
    outline: none; 
    box-shadow: none; 
    background-color: transparent;
}

.bg-stripped {
    background-color: #F7F9FC;
}
/* header */
.header-icon .icon > a {
    font-size: 15px;
}
.header-transparent .header-button .btn {
    background-color: var(--main-color);
    color: var(--white);
}
.header-transparent .header-button .btn:hover {
    border-color: var(--main-color);
}
/* bg background color */
.bg-midnight-dark-blue {
    background-color: #191d3c;
}
.bg-dark-blue {
    background-color: #0d1229; 
}
.bg-arsenic-grey {
    background-color: #3c414a !important; 
}
.bg-transparent-white-light {
    background-color: rgba(255, 255, 255, .1) !important;
}
/* btn */
.btn { 
    text-transform: initial;
    letter-spacing: 0px;
}
.btn i,
.btn.btn-hover-animation-switch .btn-icon {
    margin-left: 6px;
}
/* button type */  
.btn.btn-switch-text.btn-extra-large > span {
    font-size: 17px; 
    padding: 16px 36px;
}
.btn.btn-switch-text.btn-large > span {
    font-size:15px;
    padding: 14px 34px;
}
.btn.btn-switch-text.btn-medium > span {
    font-size: 14px;
    padding: 12px 28px;
}
.btn.btn-switch-text.btn-small > span {
    font-size: 13px;
    padding: 8px 20px;
}
.btn.btn-switch-text.btn-very-small > span {
    font-size: 12px;
    padding: 6px 20px;
}
.btn.btn-link {
    padding: 0 0 2px;
}
.btn-yellow {
    background-color: var(--yellow);
    color: var(--dark-gray);
}
.btn-yellow:hover { 
    background-color: transparent;
    border-color: var(--yellow);
    color: var(--yellow); 
}
.btn.btn-box-shadow.btn-yellow:hover {
    background-color: var(--yellow) !important;
    color: var(--dark-gray) !important;
}
.btn-green {
    background-color: var(--green);
    color: var(--white);
}
.btn-green:hover { 
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark-gray); 
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
}
/* page title */
.page-title-extra-small h2 {
    font-size: 3.25rem;
    line-height: 3.425rem;
}
/* checkbox */
.form-check-input:checked {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}
.form-check-input:focus {
    outline: none;
    box-shadow: none;
}

.custom-toast-container {
    z-index: 9999 !important;
}

.custom-toast-container .swal2-title {
    line-height: 1.2;
}

.icon-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px; 
    border-radius: 50%;
    text-align: center;
    line-height: 30px; 
    background-color: #dc3545;
    border: none; 
    color: white;
    padding: 0; 
}

.icon-link i {
    font-size: 14px; 
    margin: 0; 
}

@media (max-width: 768px) {
    .icon-link {
        width: 20px;
        height: 20px; 
        line-height: 20px; 
    }
    
    .icon-link i {
        font-size: 11px; 
    }
}

.bg-safe-success {
    background-color: #E5F6F3;
    color: #11AE9A;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.bg-warn-danger {
    background-color: #E5F6F3;
    color: #FE0701;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
}


.category-database .category-title {
    font-size: 14px;
}

@media (max-width: 768px) {
    .category-database .category-title {
        font-size: 13px;
    }
}

.category-database .data-count {
    font-size: 15px;
}

@media (max-width: 768px) {
    .category-database .data-count {
        font-size: 13px;
    }
}

.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container .image {
    width: 100%;
    height: 200px;
    max-height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .image-container {
        width: 100%;
        height: 150px;
    }
    
    .image-container .image {
        width: 100%;
        height: 150px;
    }
}

.image-container-col-full {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container-col-full .image {
    width: 100%;
    min-height: 250px;
    height: auto;
}

@media (max-width: 768px) {
    .image-container-col-full {
        width: 100%;
        height: 300px;
    }
    
    .image-container-col-full .image {
        width: 100%;
        min-height: 300px;
        height: auto;
    }
}


.image-container-col-2-full {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container-col-2-full .image {
    width: 100%;
    min-height: 250px;
    height: auto;
}

@media (max-width: 768px) {
    .image-container-col-2-full {
        width: 100%;
        height: 200px;
    }
    
    .image-container-col-2-full .image {
        width: 100%;
        min-height: 200px;
        height: auto;
        margin-bottom: 10px;
    }
}

.page-title {
    font-size: 50px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 30px !important;
    }
}


ul.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.pagination li.pagination-item {
    margin: 0 5px;
}

ul.pagination li.pagination-item a.pagination-link {
    display: block;
    padding: 8px 16px;
    color: var(--main-color);
    text-decoration: none;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

ul.pagination li.pagination-item a.pagination-link:hover,
ul.pagination li.pagination-item a.pagination-link:focus {
    background-color: var(--main-color);
    color: #fff;
}

ul.pagination li.pagination-item.pagination-active a.pagination-link {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
    cursor: default;
}

ul.pagination li.pagination-item.pagination-disabled a.pagination-link {
    color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    pointer-events: none; 
}

ul.pagination li.pagination-item.pagination-disabled span.pagination-link {
    background-color: #f8f9fa; 
    border-color: #e9ecef; 
}

.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: #e7ebf3; 
    color: #BABFC1; 
    border-radius: 50%;
    font-size: 16px; 
}


.hero-title {
    font-size: 40px;
}

.hero-subtitle {
    font-size: 23px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

/* footer */
footer {
    padding-top: 100px;
}

.footer-dark a:hover {
    color: var(--white);
}
footer ul li {
    margin-bottom: 0;
}

.copyright p {
    font-size: 11px;
}

@media (max-width: 768px) {
    .copyright p {
        font-size: 10px;
    }
}

.layer-background-dark {
    position: relative;
}

.layer-background-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(0, 0, 0, 0.5);
}

.custom-overlay {
    position: relative;
}
.custom-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(44, 49, 144, .55);
}

.gray-overlay {
    position: relative;
    z-index: 2;
}
.gray-overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(30, 55, 100, 0.5); 
}


/* background image custom */
.first-background-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.first-background-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/first-background-section.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.45;
}
.second-background-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.second-background-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(47, 79, 170, 0.7), rgb(47, 79, 170, 0.7)), 
                url('../images/second-background-section.webp') no-repeat center center/cover;
    z-index: -1; 
}

/* slider */

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}

picture {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0; 
    padding: 0; 
}

@media (max-width: 767px) {
    .swiper-slide {
        height: auto;
    }
    .slide-image {
        height: auto;
        object-fit: contain; 
    }
}

/* welcome text */

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background-color: var(--main-color);
    opacity: 0.8;
    z-index: -1;
}

.section-heading {
    font-size: 28px !important;
    line-height: 30px;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 23px !important;
    }
}

@media (max-width: 768px) {
    .subs-heading {
        text-align: center;
    }
    
    .subs-sub-heading {
        text-align: center;
    }
}

.section-subheading {
    font-size: 18px !important;
    line-height: 20px;
}

@media (max-width: 768px) {
    .section-subheading {
        font-size: 14px !important;
    }
}

.custom-hover-scale-img {
    transition: 0.3s;
}
.custom-hover-scale-img .image {
    transition: .3s;
}
.custom-hover-scale-img:hover {
    transform: translateY(-10px);
}
.custom-hover-scale-img:hover .image {
    transform: scale(1.05);
}

/* contact-btn */
.floating_btn {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
  }
  
  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  .contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
  }

@media (max-width: 768px) {
    .subscribe-section .feature-box .feature-box-content {
        text-align: center;
    }
    .subscribe-section .feature-box .feature-box-content h5{
        font-size: 22px !important;
    }
    .subscribe-section .feature-box .feature-box-content p {
        font-size: 15px !important;
        line-height: 20px;
    }
}

  

/* media query responsive */
@media (max-width: 991px) {
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner {
        background-color: var(--main-color);
    }
}
@media (max-width: 1199px) {
    .btn.btn-switch-text.btn-small > span {
        padding: 6px 18px;
    }
    footer {
        padding-top: 80px;
    }
    .btn.btn-switch-text.btn-extra-large > span { 
        padding: 16px 30px;
    }
    .btn.btn-switch-text.btn-large > span { 
        padding: 14px 30px;
    }
}
@media (max-width: 767px) {
    footer {
        padding-top: 50px;
    }
}