/*START VIDEO SLIDER*/
.swiper-container {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #000; */
    overflow: hidden;
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 640 / 480;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: none;
}

@media (max-width: 768px) {
    .video-container {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .video-container {
        aspect-ratio: 16 / 9;
    }
}

/*END VIDEO SLIDER*/

/*START MESSAGE*/

.db-team-section {
    padding: 20px 20px;
    background: #f3f3f3;
}

.db-team-container {
    max-width: 1200px;
    margin: auto;
}

.db-team-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

/* GRID */

.db-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.db-team-card {
    border-radius: 40px;
    overflow: hidden;
    background: #ffeae6;
    position: relative;
    cursor: pointer;
    transition: 0.4s;
}

/* IMAGE */

.db-team-img {
    position: relative;
    overflow: hidden;
}

.db-team-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* OVERLAY */

.db-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(187 40 85 / 46%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

/* READ MORE BUTTON */

.db-team-read {
    background: #282245;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transform: translateY(20px);
    transition: 0.4s;
}

/* CONTENT */

.db-team-content {
    padding: 25px;
    text-align: center;
}

.db-team-content h3 {
    font-weight: 600;
    color: #282245;
    margin-bottom: 8px;
}

.db-team-content p {
    color: #333;
    font-size: 16px;
}

/* HOVER EFFECT */

.db-team-card:hover .db-team-overlay {
    opacity: 1;
}

.db-team-card:hover .db-team-read {
    transform: translateY(0);
}

.db-team-card:hover {
    transform: translateY(-10px);
}

.db-heading-wrapper {
    text-align: center;
    padding: 10px 20px 40px;
}

/* MAIN HEADING */

.db-main-heading {
    font-size: 36px;
    font-weight: 700;
    /* color: #4b3aa5; */
    position: relative;
    display: inline-block;
    line-height: 1.3;
    background: -webkit-linear-gradient(136deg, #2b1d44, #b82f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MAIN UNDERLINE */

.db-main-heading::after {
    content: "";
    width: 70%;
    height: 4px;
    background: linear-gradient(90deg, #4b3aa5, #7a6cf0);
    position: absolute;
    left: 15%;
    bottom: -14px;
    border-radius: 10px;
}

/* CENTER DOT */

.db-main-heading::before {
    content: "";
    width: 16px;
    height: 16px;
    background: #4b3aa5;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -21px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #7a6cf0;
}


/* RESPONSIVE */

@media(max-width:992px) {
    .db-main-heading {
        font-size: 30px;
    }

    .db-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .db-team-grid {
        grid-template-columns: 1fr;
    }

    .db-main-heading {
        font-size: 22px;
    }
}

/*END MESSAGE*/

/*START NEWS*/
.db-scroll-section {
    padding: 40px 20px;
    background: #3c002d;
}

.db-scroll-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* BOX */

.db-scroll-box {

    background: #f3f3f3;
    border-radius: 8px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    height: 400px;

}


/* HEADER */

.db-scroll-header {

    color: #fff;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;

}

.news-header {
    background: #d33b3b;
}

.time-header {
    background: #1678a2;
}

.mag-header {
    background: #117a7a;
}


/* BODY */

.db-scroll-body {

    flex: 1;
    overflow: hidden;
    position: relative;

}


/* SCROLL AREA */

.db-scroll-content {

    position: absolute;
    width: 100%;

}


/* ITEM */

.db-scroll-item {

    padding: 12px 15px;
    border-bottom: 1px dashed #ccc;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #f9f9f9;

}


/* DOT */

.db-dot {

    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;

}


/* DATE */

.db-date {

    background: #ffc107;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 4px;

}


/* IMAGE */

.db-scroll-item img {

    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;

}


/* SEE ALL */

.db-see {

    padding: 8px;
    text-align: right;
    font-weight: bold;
    cursor: pointer;

}


/* RESPONSIVE */

@media(max-width:992px) {

    .db-scroll-container {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .db-scroll-container {

        grid-template-columns: 1fr;

    }

}

















.db-scroll-section {
    padding: 50px 20px;
}

.db-scroll-container {
    max-width: 1425px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BOX */
.db-scroll-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* HEADER */
.db-scroll-header {
    padding: 15px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.red {
    background: #d63b46;
}

.blue {
    background: #1678a5;
}

.green {
    background: #147a7e;
}

/* CONTENT */
.db-scroll-content {
    height: 300px;
    overflow: hidden;
    position: relative;
    padding: 15px;
}

.db-scroll-content ul {
    padding: 0;
    margin: 0;
}

.db-scroll-content li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
}

/* MAGAZINE */
.db-magazine-item {
    text-align: center;
    margin-bottom: 20px;
}

.db-magazine-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .db-scroll-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .db-scroll-container {
        grid-template-columns: 1fr;
    }
}

/*END NEWS*/

/*START LOGO*/
/* Container */
/* .db-logo-container {
    padding: 15px 0;
} */

/* Wrapper */
.db-logo-wrapper {
    text-align: center;
    overflow: hidden;
}

/* Logo Image */
.db-logo-img {
    margin: 15px;
    max-width: 100%;
    height: auto;

    /* Responsive size control */
    width: auto;
    max-height: 135px;

    /* Animation */
    opacity: 0;
    transform: translateY(-40px);
    animation: dbLogoFadeDown 1s ease forwards;

    /* Smooth hover */
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover animation */
.db-logo-img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Entry Animation */
@keyframes dbLogoFadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .db-logo-img {
        max-height: 70px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .db-logo-img {
        max-height: 60px;
        width: 80%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .db-logo-img {
        max-height: 50px;
        width: 75%;
    }
}

/*END LOGO*/


/*START ABOUT US*/
/* Section */
.db-about {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fbff, #ffffff);
    overflow: hidden;
}

/* Row alignment */
.db-about-row {
    align-items: center;
}

/* Content */
.db-about-content {
    padding-right: 30px;
    animation: dbFadeUp 1s ease;
}

/* Title */
.db-about-title {
    font-size: 22px;
    font-weight: 700;
    color: #0d2f57;
    margin-bottom: 15px;
    position: relative;
    text-align: left;
}

/* Title underline */
.db-about-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #007bff;
    display: block;
    margin-top: 10px;
    border-radius: 5px;
}

/* Subtitle */
.db-about-subtitle {
    background: -webkit-linear-gradient(136deg, #2b1d44, #b82f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 33px;
    /* color: #2b1d44; */
    margin-bottom: 15px;
    font-weight: 700;
    text-align: left;
}

/* Text */
.db-about-text {
    text-align: justify;
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

/* Image wrapper */
.db-about-image-wrapper {
    position: relative;
    text-align: center;
    animation: dbFadeLeft 1s ease;
}

/* Background Shape */
.db-about-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #007bff, #00c6ff); */
    background: linear-gradient(135deg, #2b1d44, #722548);
    top: 20px;
    left: 20px;
    border-radius: 20px;
    z-index: 0;
}

/* Image */
.db-about-image {
    position: relative;
    max-width: 100%;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

/* Hover animation */
.db-about-image:hover {
    transform: scale(1.05);
}

/* Button */
.db-about-readmore-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #2b1d44, #b82f56);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover */
.db-about-readmore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}



/* Animation */
@keyframes dbFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dbFadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Tablet */
@media (max-width: 992px) {
    .db-about {
        padding: 60px 0;
    }

    .db-about-title {
        font-size: 28px;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .db-about-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .db-about-bg-shape {
        top: 15px;
        left: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .db-about-title {
        font-size: 24px;
    }

    .db-about-subtitle {
        font-size: 18px;
    }
}

/*END ABOUT US*/


/*START WHY CHOOSE US*/

/* Section */
.db-choose-us {
    padding: 25px 0;
    background:
        linear-gradient(rgba(248, 251, 255, 0.95), rgba(248, 251, 255, 0.95)),
        url('assets/images/school-pattern.png');
    background-size: cover;
    background-position: center;
}

/* Heading */
.db-choose-us-heading {
    text-align: center;
    margin-bottom: 50px;
}

/* .db-choose-us-title {
    font-size: 36px;
    font-weight: 700;
    background: -webkit-linear-gradient(136deg, #2b1d44, #b82f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.db-choose-us-title {
    font-size: 36px;
    font-weight: 700;
    background: -webkit-linear-gradient(136deg, #2b1d44, #b82f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

/* MAIN GRADIENT LINE */

.db-choose-us-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 210px;
    height: 4px;
    background: linear-gradient(90deg, #4b3aa5, #7a6cf0);
    border-radius: 10px;
}

/* CENTER DIAMOND */

.db-choose-us-title::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: #4b3aa5;
    box-shadow: 0 0 0 4px #fff;
}

/* OPTIONAL ANIMATION */

.db-choose-us-title:hover::after {
    width: 180px;
    transition: 0.4s;
}

.db-choose-us-subtitle {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

/* Row flex equal height */
.db-choose-us-row {
    display: flex;
    flex-wrap: wrap;
}

/* Column spacing */
.db-choose-us-col {
    margin-bottom: 30px;
    display: flex;
}

/* Card */
.db-choose-us-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hover animation */
.db-choose-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image */
.db-choose-us-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}

/* Zoom image hover */
.db-choose-us-card:hover .db-choose-us-img {
    transform: scale(1.05);
}

/* Content */
.db-choose-us-content {
    padding: 25px;
    flex-grow: 1;
}

/* Title */
.db-choose-us-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.db-choose-us-card-title a {
    color: #0d2f57;
    text-decoration: none;
}

.db-choose-us-card-title a:hover {
    color: #007bff;
}

/* Text */
.db-choose-us-card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Tablet */
@media (max-width: 992px) {
    .db-choose-us-title {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .db-choose-us {
        padding: 60px 20px;
    }
}

@media(max-width:600px) {

    .db-choose-us-title {
        font-size: 22px;
    }

}

/* Small Mobile */
@media (max-width: 480px) {
    .db-choose-us-img {
        height: 200px;
    }
}

/*END WHY CHOOSE US*/

/*START GALLERY*/
/* SECTION */
.db-gallery-wrapper{
    overflow:hidden;
    width:100%;
    position:relative;
}

.db-gallery-track{
    display:flex;
    transition:transform 0.5s ease;
    will-change:transform;
}

.db-gallery-item{
    min-width:25%;
    padding:10px;
    box-sizing:border-box;
    flex-shrink:0;
}

.db-gallery-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:6px;
    cursor:pointer;
}

/* arrows BELOW */
.db-gallery-arrows{
    text-align:center;
    margin-top:20px;
}

.db-gallery-arrows button{
    background:#b63d32;
    color:#fff;
    border:none;
    padding:10px 18px;
    margin:0 5px;
    cursor:pointer;
    font-size:18px;
}

/* popup */
.db-gallery-popup{
    display:none;
    position:fixed;
    z-index:999999999999;
    inset:0;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
}

.db-gallery-popup-img{
    max-width:90%;
    max-height:90%;
}

.db-gallery-close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}


/* RESPONSIVE */
@media(max-width:992px){
.db-gallery-item{min-width:33.33%;}
}

@media(max-width:768px){
.db-gallery-item{min-width:50%;}
}

@media(max-width:500px){
.db-gallery-item{min-width:100%;}
}
/*END GALLERY*/

/*START  VIDEOS*/
/* MAIN ITEM */
.item{
    padding:12px;
}

.item .inner{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    background:#fff;

    box-shadow:0 8px 25px rgba(0,0,0,0.08);

    transition:all 0.4s ease;
}


/* IMAGE */
.item .inner img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;

    transition:transform 0.6s ease;
}


/* OVERLAY */
.item .inner::after{
    /* content:"View Image"; */

    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.1)
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:600;

    opacity:0;
    transition:0.4s ease;
}


/* HOVER EFFECT */
.item .inner:hover img{
    transform:scale(1.12);
}

.item .inner:hover::after{
    opacity:1;
}

.item .inner:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.18);
}


/* OPTIONAL BORDER ACCENT */
.item .inner::before{
    content:"";

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(90deg,#b63d32,#f39c12);
}


/* RESPONSIVE */

/* desktop */
@media(max-width:1200px){

.item .inner img{
height:220px;
}

}

/* tablet */
@media(max-width:768px){

.item .inner img{
height:200px;
}

}

/* mobile */
@media(max-width:500px){

.item{
padding:8px;
}

.item .inner img{
height:180px;
}

.item .inner::after{
font-size:16px;
}

}
/*END VIDEOS*/

/*START COUNTER*/
/* MAIN SECTION */
.db-counter{

    position:relative;
    background-size:cover;
    background-position:center;
    padding:80px 0;

}

/* DARK OVERLAY */
.db-counter-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(20,20,40,0.85),
        rgba(40,20,80,0.85)
    );

}

/* CONTAINER FIX */
.db-counter .container{
    position:relative;
    z-index:2;
}


/* COUNTER BOX */
.db-counter-box{

    text-align:center;
    padding:30px 15px;

    border-radius:12px;

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(6px);

    border:1px solid rgba(255,255,255,0.08);

    transition:all 0.4s ease;

}


/* HOVER EFFECT */
.db-counter-box:hover{

    transform:translateY(-10px) scale(1.05);

    background:rgba(255,255,255,0.12);

}


/* NUMBER */
.db-counter-number{

    font-size:42px;
    font-weight:700;

    color:#fff;

    margin-bottom:10px;

    position:relative;

}


/* NUMBER ACCENT LINE */
.db-counter-number::after{

    content:"";

    display:block;

    width:40px;
    height:3px;

    background:#f39c12;

    margin:10px auto;

    border-radius:10px;

}


/* TITLE */
.db-counter-title{

    font-size:18px;

    color:#ddd;

    font-weight:500;

    letter-spacing:0.5px;

}


/* RESPONSIVE */

/* tablet */
@media(max-width:992px){

.db-counter{
padding:60px 0;
}

.db-counter-number{
font-size:34px;
}

.db-counter-title{
font-size:16px;
}

}


/* mobile */
@media(max-width:576px){

.db-counter{
padding:40px 0;
}

.db-counter-box{
padding:20px 10px;
margin-bottom:15px;
}

.db-counter-number{
font-size:28px;
}

.db-counter-title{
font-size:14px;
}

}
/*END COUNTER*/

/*START FOOTER*/
/* MAIN FOOTER */
.db-footer{

    /* background:linear-gradient(135deg,#14142b,#1f1f4d); */
    background-image: url("/assets/images/home/footer-bg.png");

    color:#fff;

    padding:60px 0 40px;

    position:relative;

}


/* TITLE */
.db-footer-title{

    font-size:20px;
    font-weight:600;

    margin-bottom:20px;

    position:relative;

    padding-bottom:10px;
    

}

/* underline */
.db-footer-title::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:40px;
    height:3px;

    background:#f39c12;

    border-radius:5px;

}


/* ABOUT TEXT */
.db-footer-about{

    color:#ccc;

    line-height:1.7;

    margin-bottom:20px;

}


/* LINKS */
.db-footer-link{

    margin-bottom:10px;

}

.db-footer-link a{

    color:#ccc;

    text-decoration:none;

    transition:0.3s;

}

.db-footer-link a:hover{

    color:#f39c12;

    padding-left:5px;

}


/* CONTACT */
.db-footer-contact{

    display:flex;

    align-items:center;

    margin-bottom:12px;

}

.db-footer-contact i{

    width:30px;
    height:30px;

    background:#f39c12;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    margin-right:10px;

}


/* SOCIAL MEDIA */
.db-footer-social{

    margin-top:20px;

}

.db-footer-social a{

    display:inline-flex;

    width:38px;
    height:38px;

    background:rgba(255,255,255,0.1);

    color:#fff;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    margin-right:8px;

    transition:0.3s;

}

.db-footer-social a:hover{

    background:#f39c12;

    transform:translateY(-5px);

}


/* RESPONSIVE */
@media(max-width:992px){

.db-footer{
text-align:center;
}

.db-footer-title::after{
left:50%;
transform:translateX(-50%);
}

.db-footer-contact{
justify-content:center;
}

.db-footer-social{
text-align:center;
}

}


@media(max-width:576px){

.db-footer{
padding:40px 0;
}

.db-footer-title{
font-size:18px;
}

}


/* QUICK LINKS CONTAINER */
.db-footer-link{

    position:relative;

    margin-bottom:12px;

    padding-left:22px;

    overflow:hidden;

}


/* LEFT ARROW */
.db-footer-link::before{

    content:"\f105";  /* FontAwesome arrow */

    font-family:"FontAwesome";

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    color:#f39c12;

    font-size:16px;

    transition:0.3s ease;

}


/* LINK STYLE */
.db-footer-link a{

    color:#ccc;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    letter-spacing:0.3px;

    display:inline-block;

    transition:all 0.3s ease;

}


/* HOVER EFFECT */
.db-footer-link:hover a{

    color:#fff;

    transform:translateX(8px);

}


/* ARROW HOVER ANIMATION */
.db-footer-link:hover::before{

    left:5px;

    color:#fff;

}


/* OPTIONAL UNDERLINE ANIMATION */
.db-footer-link a::after{

    content:"";

    display:block;

    width:0;

    height:2px;

    background:#f39c12;

    transition:0.4s;

}

.db-footer-link a:hover::after{

    width:100%;

}


/* RESPONSIVE */
@media(max-width:768px){

.db-footer-link{

padding-left:18px;

}

.db-footer-link a{

font-size:14px;

}

}
/*END FOOTER*/

/* MAIN FOOTER BOTTOM */
.footer-bottom{
    background: rgb(40 34 69);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    color: #ffffff;
    font-size: 15px;
}


/* FLEX SPLIT */
.db-footer-bottom-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

}


/* LEFT SIDE */
.db-footer-copy{

    text-align:left;

}


/* RIGHT SIDE */
.db-footer-dev{

    text-align:right;

}


/* ARCHER WEBSOL LINK */
.db-footer-dev a{

    color:#f39c12;

    text-decoration:none;

    font-weight:600;

    position:relative;

}


/* UNIQUE UNDERLINE EFFECT */
.db-footer-dev a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-3px;

    width:0;

    height:2px;

    background:#f39c12;

    transition:0.4s;

}


.db-footer-dev a:hover::after{

    width:100%;

}


.db-footer-dev a:hover{

    color:#fff;

}


/* RESPONSIVE */
@media(max-width:768px){

.db-footer-bottom-row{

flex-direction:column;

text-align:center;

}

.db-footer-copy{

text-align:center;

margin-bottom:8px;

}

.db-footer-dev{

text-align:center;

}

}