/*******************************/
/********* General CSS *********/
/*******************************/

:root{

    --color-white: rgb(255, 255, 255);
    --color-dark: rgb(3, 44, 103);
    --color-orange: rgb(250, 62, 62);
    --color-maroon: rgb(139, 20, 20);
    --color-maroon-faint: rgb(154, 65, 65);
    --color-blue: rgb(225, 249, 250);
    --font-family-1: 'IBM Plex Serif', serif;
    --font-family-1: 'Poppins', sans-serif;
    --font-family-1: 'IBM Plex Sans Condensed', sans-serif;
    --font-family-1: 'Montserrat', sans-serif;
  



    
    --fontsize-large: 1.8rem;
    --fontsize-XXL: 3rem;
    --fontsize-XL: 2.5rem;
    --fontsize-L: 1.8rem;
    --fontsize-M: 1.3rem;
    --fontsize-S: 1rem;
    --fontsize-maelezo: .85rem;
    --fontsize-small: .75rem;


}





body {
    color: #666666;
    background: #dddddd;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
h1,h2,h3,h4,p,span, li {
    line-height: 1.6rem ;
}






#spinner {
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: spinner-grow .75s linear infinite;
}

@keyframes spinner-grow {
  0% { transform: scale(0); }
  50% { opacity: 1; transform: none; }
}






.logos{
    padding: 1px; 
    margin-right: 45px; 
    border-radius: 0px;
    border: .5px solid var(--color-white); 
    height: 50px; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos a {
  position: relative;
  height: 100%;
  
}
.logos img {
    position: relative;
    height: 100%;
    max-width: 145px;
    object-fit: cover;
    border-radius: 0px;
}

/* Initially, show logo-2 and hide logo-1 */
.logo-1 {
    display: none;
}

.logo-2 {
    display: inline-block; /* or whatever you had */
}

/* When scrolling: swap logos */
.logo-1.nav-sticky {
    display: inline-block;
}

.logo-2.nav-sticky {
    display: none;
}

.gears{
    position: relative;
    gap: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0; 
    opacity: .3;
}
.gear-1 {
    font-size: 25px;
    position: relative;
    margin: 0;
    padding: 0;
    animation: rotate-cw 8s linear infinite;
}
.gear-2 {
    font-size: 40px;
    position: relative;
    margin: 0;
    padding: 0;
    color: var(--color-maroon-faint) !important;
    animation: rotate-acw 10s linear infinite;
}
/* Clockwise rotation */
@keyframes rotate-cw {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Anti-clockwise rotation */
@keyframes rotate-acw {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}




/* HAMBURGER when closed (button has .collapsed) */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 30px 30px !important;
  transition: background-image 0.2s linear;
}

/* X when menu is open (button does NOT have .collapsed) */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round' d='M6 6L24 24M24 6L6 24'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 30px 30px !important;
}

.navbar-toggler {
    width: 75px;
  height: 75px;
  padding: 0;
  border-radius: 0;
  border: .0px solid rgba(155, 153, 153, 0.1);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  outline: none;
}
.navbar-toggler:focus {
  outline: none;
}
.navbar-toggler-icon {
  display: flex;
  width: 45px;
  height: 45px;
  position: relative;
  border: .2px solid rgba(174, 171, 171, .4);
}




.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: var(--color-white);
    padding: 0;
}

.container{
    position: relative;
    margin: 35px auto;
    padding: 4px  20px;
    border-bottom: .5px solid var(--color-dark); 
    box-shadow: -1px -2px 4px rgba(0, 0, 0, .1);
    
    
}







a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #fdbe33;
    outline: none;
    text-decoration: none;
}


.btn-1-box{
    width: 100%;
    display: flex; 
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    
}

a.btn-1 {
    position: relative;
    margin: 2px;
    padding: 15px 30px;
    font-size: var(--fontsize-maelezo);
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-white);
    border-radius: 0;
    background: var(--color-maroon);
    border: 1.5px solid transparent;   /* keep border from the start to avoid shake */
    transition: all .3s ease;
    box-shadow: 3px 3px 4px rgba(35, 1, 1, 0.5);
}

a.btn-1:hover {
    color: var(--color-dark);
    background: transparent;
    border: 1.5px solid var(--color-dark);
}


.btn:focus, 
.btn-1:focus {
    box-shadow: none;
}




.back-to-top {
    position: fixed;
    display: none;
    background: var(--color-blue);
    color: var(--color-dark);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 1;
    font-size: 20px;
    right: 15px;
    bottom: 40px;
    z-index: 9;
    opacity: .2;
    animation: action-2 1.4s infinite alternate;
    transition: all 0.3s ease;
}

.back-to-top i {
    padding-top: 10px; 
    font-size: 18px;
}

.back-to-top:hover {
    color: var(--color-white);
    background: var(--color-dark);
    border: .5px solid var(--color-white);
    opacity: 1;
}


@keyframes action-2 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}




.btn {
    transition: all .3s ease;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 100%;
    
}

.top-bar .logo {
    padding: 15px 0;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.top-bar .logo h1 {
    margin: 0;
    color: var(--color-maroon);
    font-size: var(--fontsize-large);
    font-weight: 700;
    font-family: var(--font-family-1);
    text-transform: uppercase;
    line-height: 1.8rem;
}
.top-bar .logo h3 {
    margin: 0;
    color: var(--color-dark);
    font-size: var(--fontsize-maelezo);
    font-weight: 500;
    font-family: var(--font-family-1);
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
}

.top-bar .top-bar-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.place-here-time .top-bar-icon,
.place-here-call .top-bar-icon,
.place-here-email .top-bar-icon,
.top-bar .top-bar-icon{
    width: 40px; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
}


.place-here-time .top-bar-icon [class^="flaticon-"]::before,
.place-here-call .top-bar-icon [class^="flaticon-"]::before,
.place-here-email .top-bar-icon [class^="flaticon-"]::before,
.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    margin-right: 10px;
    color: var(--color-maroon);
    font-size: 30px;
}

.top-bar .top-bar-text {
    padding-left: 0px;
}

.top-bar-text h3 {
    margin: 0px;
    margin-bottom: 3px;
    color: var(--color-dark);
    font-size: var(--fontsize-small);
    font-weight: 300;
    line-height: 1rem;
}

.top-bar-text p {
    margin: 0;
    margin: 0;
    color: var(--color-maroon);
    font-size: var(--fontsize-small);
    font-weight: 300;
    line-height: 1.2rem;
}

.place-here-time,.place-here-time *, 
.place-here-call,.place-here-call *, 
.place-here-email,.place-here-email * {
  color: var(--color-white) !important;
  font-size: var(--fontsize-small) !important; 
  line-height: 1rem;
  display: flex; 
  margin: 2px 0;
}
.place-here-time .top-bar-text,
.place-here-call .top-bar-text,
.place-here-email .top-bar-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  padding: 2px 5px;
  height: 100%; 
}




@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: var(--color-white);
    transition: .3s;
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}



.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 8px;
    color: var(--color-white);
    font-size: var(--fontsize-small);
    text-transform: uppercase;
    text-align: left;
    transition: all .2s ease;
    
  
}

.nav-link i{
    margin: auto;
    margin-right: 4px;
    padding: 0;
}


.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--color-orange);
    
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border-radius: 0;
    background: var(--color-blue);
    padding: 5px;
    border: none;
}

.nav-bar .dropdown-menu a {
    color: var(--color-dark);
    font-family: var(--font-family-1);
    font-size: var(--fontsize-small);
    font-weight: 400;
    transition: color 0.3s ease-in-out;
}

.nav-bar .dropdown-menu a:hover {
    color: var(--color-maroon) !important;
}

.nav-bar .dropdown-menu .dropdown-item:hover {
    background: rgba(129, 127, 127, 0.5);
}




.nav-bar .btn {
    color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 0;
    font-family: var(--font-family-1);
    font-size: var(--fontsize-maelezo);
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

.nav-bar .btn:hover {
    color: var(--color-dark);
    background: #fdbe33;
    border-color: #fdbe33;
}

.nav-bar .dropdown-menu-1 .dropdown-item {
    display: flex;
    align-items: center;
    border-bottom: .1px solid rgba(105, 102, 102, .1);
    border-top: .1px solid rgba(105, 102, 102, .1);
    margin: 5px auto;
    padding: 5px;
    gap: 10px;
    white-space: normal;   /* allow text to wrap */
    word-wrap: break-word; /* break long words if needed */
   
}
/* images inside dropdown-items */
.nav-bar .dropdown-menu-1 .dropdown-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 0px;
    margin: 2px;
    flex-shrink: 0;   /* 🔑 prevents image from being squished */
    transition: transform 0.3s ease-in-out;
}

.nav-bar .dropdown-menu-1 .dropdown-item img:hover {
    transform: scale(.95);
}

.nav-bar .nav-item:hover {
    background: var(--color-blue);   
}


.nav-bar .navbar {
    height: 100%;
    background: var(--color-dark) !important;
    margin: 0 !important;
    padding: 0 15px !important;
    border: none !important;
    transition: all 0.4s ease;
}


/* Target the collapsible menu */
.navbar-collapse {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 50px;
    width: 100%;
    height: calc(100vh - var(--navbar-height, 60px));
    z-index: 9999;
    transition: all 0.4s ease;
}

.nav-bar .nav-contact-box {
        display: none;
}

@media (min-width: 992px) {

    .navbar-collapse {
        height: unset;  
        overflow-y: unset;    
        -webkit-overflow-scrolling: unset; 
        padding-bottom: unset;
     
        
    }

    /* ensure navbar is the reference box */
    .nav-bar { 
        position: relative; 
    }

    .nav-bar .nav-item {
        margin: 0  4px;
        height: 100%;
        min-height: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s ease-in-out;
    }

    /* make the dropdown parent not create a containing block */
    .nav-bar .nav-item.dropdown-1 {
        position: static; 
    }


        
    .nav-bar .dropdown-menu{
        opacity: 0;           /* initially invisible */
        visibility: hidden;   /* prevent interaction */
        transform: translateY(50px); /* small slide-up effect */
        display: block;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* full-width dropdown aligned to .nav-bar */
    .nav-bar .dropdown-menu-1 {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        min-width: unset;
        display: none;  /* keep hidden until hover/show */              
        z-index: 99;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;             /* spacing between items */
        padding: 1rem;
        display: grid;

            
    }


    .nav-bar .nav-item.dropdown:hover > .dropdown-menu,
    .nav-bar .nav-item.dropdown.show > .dropdown-menu,
    .nav-bar .nav-item.dropdown:hover > .dropdown-menu-1,
    .nav-bar .nav-item.dropdown.show > .dropdown-menu-1 {
        opacity: 1 ;
        visibility: visible ;
        transform: translateY(0); /* slide down into place */
    }

    .nav-bar .dropdown-menu-1 .dropdown-item {
        display: flex; 
        flex-direction: column;
        box-shadow: 3px 3px 2px rgba(76, 6, 6, 0.1);
        border-top: .05px solid var(--color-white);
        border-left: .05px solid var(--color-white);
        transition:  all .3s ease-in-out;
        background: var(--color-white);
    }
    .nav-bar .dropdown-menu-1 .dropdown-item:hover {
        transform: translate(4px, -4px);
    }
    .nav-bar .dropdown-menu-1 .dropdown-item:hover a {
        color: var(--color-white);
        transition: color 0.3s ease-in-out; /* smooth text color change */
    }
   
    /* images inside dropdown-items */
    .nav-bar .dropdown-menu-1 .dropdown-item img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        border-radius: 0px;
        margin-bottom: 8px;
    }






    .nav-bar {
        padding: 0 75px;
    }
    
    .nav-bar.nav-sticky {
        padding: 0;
    }

     
    
    .nav-bar .navbar {
        padding: 20px;
    }
    
    .nav-bar .navbar-brand{
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
       
    }
}


@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .nav-contact-box {
        display: inline-block;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(80vh - 170px);
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}
/*
.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
    min-height: 400px;
    background: rgb(28, 1, 1, .5);
}
*/

.carousel .carousel-caption {
    position: absolute; /* usually absolute inside carousel */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 80%;
    width: 80%;
    background: rgba(28, 1, 1, 0.5); /* ✅ fixed */
}


.carousel .carousel-caption p {
    color: var(--color-blue);
    font-size: var(--fontsize-M);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
    color: var(--color-white);
    font-size: var(--fontsize-large);
    font-weight: 700;
    line-height: 2.7rem;
    margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
    padding: 10px 20px;
    font-size: var(--fontsize-maelezo);
    font-weight: 500;
    font-family: var(--font-family-1);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    background: transparent;
    border: 1px solid var(--color-white);
    border-radius: 0;
    transition: all .3s ease;
}

.carousel .carousel-caption .btn:hover {
    color: var(--color-dark);
    background: var(--color-white);
    border-color: var(--color-dark);
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }




}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}


/* Make the arrows darker and bigger 
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 1rem 1rem; 
  filter: invert(1) grayscale(100); /* makes them black instead of white *
}
*/
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* remove Bootstrap default */
}

.carousel-control-prev-icon::after {
  content: "\f104"; /* Font Awesome left arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 2rem;
  color: white;
}

.carousel-control-next-icon::after {
  content: "\f105"; /* Font Awesome right arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 2rem;
  color: white;
}



/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    padding: 10px 15px;
    text-align: center;
    background: linear-gradient(rgba(1, 23, 66, .4), rgb(111, 13, 13, 04)), url(../img/12.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 300px;
}

.page-header h2 {
    position: relative;
    color: var(--color-white);
    font-size: var(--fontsize-XL);
    font-family: var(--font-family-1);
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 5px;
    line-height: 2.2rem !important;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 150px;
    height: 1.5px;
    left: 50%; transform: translateX(-50%);
    bottom: -15px;
    background: var(--color-white);
}

.page-header p {
    position: relative;
    padding: 15px 12px;
    font-size: var(--fontsize-M);
    font-weight: 400;
    color: var(--color-white);
    font-family: var(--font-family-1);
}
/*
.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}
*/

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px  0 !important; 
}

.section-header p {
  color: var(--color-maroon);
  font-size: var(--fontsize-M);
  font-weight: 500;
  margin: 15px auto;
  padding-bottom: 5px;
  position: relative;
  width: fit-content;          /* Make width follow content */
  display: inline-block;       /* Ensure width fits text, not full line */
  font-family: var(--font-family-1);
  border-bottom: 0.2px solid;
 
}


.section-header h2 {
    margin: 0;
    position: relative;
    font-size: var(--fontsize-L) !important;
    font-weight: 700;
    color: var(--color-dark);
    font-family: var(--font-family-1);
    line-height: 2.6rem;
}

.section-header h4 {
    margin: 15px auto;
    padding: 15px;
    position: relative;
    font-size: var(--fontsize-maelezo);
    font-weight: 400;
    color: var(--color-dark);
    font-family: var(--font-family-1);
}





@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature,
.msg-from-dg {
    position: relative;
    width: 100%;
    padding: 15px;
    margin: 45px 0; border-radius: 0;
    box-shadow: 4px 4px 10px rgba(1, 39, 44, 0.4);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch; /* makes children stretch full height */
}


.feature .col-md-12{
    padding: 5px;
}
    
.feature .feature-item {
    min-height: 250px;
    padding: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    background: var(--color-dark);
    border-radius: 8px;
    box-shadow: -2px -2px 4px rgba(1, 17, 20, 0.4);
    transition: all .3s ease-in-out;
} 

.feature .feature-item:hover {
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.35); /* x, y, blur, color */
    transform: translateY(-5px);
} 

.feature .col-md-12:nth-child(2n) .feature-item{
    color: var(--color-dark);
    background: var(--color-blue);
}


.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -8px;
    left: -10px;
    border: 2px dotted #f00505;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -7px;
    left: -8px;
    background: var(--color-dark);
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: var(--color-blue);
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: var(--color-white);
    font-size: 45px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-text {
    padding: 0px;
}

.feature .feature-text p,
.feature .feature-text h3 {
    margin: 10px  5px;
    color: var(--color-white);
    font-size: var(--fontsize-S); 
    font-family: var(--font-family-1);
    font-weight: 500;
}

.feature .feature-text h3 {border-bottom: .5px solid;}

.feature .feature-text p {
    font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: var(--color-dark);
}


/*******************************/
/********** About CSS **********/
/*******************************/

/* CSS */
  

.msg-from-dg h2{
    font-size: var(--fontsize-M);
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 8px;
    font-family: var(--font-family-1);
    color: var(--color-dark);
    font-weight: 500;
    margin: 20px auto;
}
.msg-from-dg i{
    margin: 1px auto;
    color: var(--color-dark);
    
}

  .msg-from-dg-img-box {
    position: relative;
    display: flex;
    min-height: 450px;
    width: 65%;
    overflow: hidden;
    box-shadow: 4px 4px 10px rgba(35, 3, 3, 0.2);
}

.msg-from-dg-img-box img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.msg-from-dg-text-1 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  right: 20px;
  bottom: 110px;  
  /*transform: translateX(0) translateY(0);
  /*transition: transform 0.1s linear;*/
  width: 50%;
  height: 55%;
  background: var(--color-blue);
  padding: 20px;
  border-radius: 4px;
  box-shadow: 4px 4px 5px rgba(30, 8, 8, 0.2);
  animation: action-cont1 10s infinite alternate;
}
@keyframes action-cont1  {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-50px);
  }
}

@media (max-width: 767.98px) {
  .msg-from-dg-img-box {
    width: 100%;
  }
  .msg-from-dg-text-1 {
    width: 80%;
    left: 50% !important; /* center horizontally relative to parent */
    transform: translateX(-50%); 
  }
  @keyframes action-cont1 {
  0% {
    transform: translateX(-50%) translateY(100px);
  }
  100% {
    transform: translateX(-50%) translateY(-50px);
  }
}

}


.msg-from-dg-text-1 h3,
.msg-from-dg-text-1 p {
    font-size: var(--fontsize-maelezo);
    font-family: var(--font-family-1);
    color: var(--color-dark);
    font-weight: 400;
    text-align: left ;
}






.feature .row,
.about .row {
  display: flex ; 
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
}

.general-col {
  display: flex;          
  flex-direction: column;
  margin: 0;
  padding: 15px;
  
}

.about {
    position: relative;
    width: 100%;
    padding: 0;
    
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
    box-shadow: 3px 3px 4px rgba(7, 31, 31, 0.5);
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text p,
.about-text li  {
    font-size: var(--fontsize-maelezo);
    color: var(--color-dark);
    font-family: var(--font-family-1);
}

 .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #030f27;
    border-radius: 0;
    background: #fdbe33;
    transition: .3s;
}

 .about-text a.btn:hover {
    color: #fdbe33;
    background: #030f27;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .counters {display: flex; height: 100%;}

.fact .row > div {
    box-shadow: 2px 4px 12px rgba(156, 153, 153, 0.4); /* x, y, blur, color */
    transition: all .3s ease;
} 
.fact .row > div:hover {
    box-shadow: 2px 4px 12px rgba(151, 43, 43, 0.4); /* x, y, blur, color */
    transform: translateY(-5px);
} 


.fact .col-6 {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center; width: 100% ;
    
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(var(--color-white), var(--color-maroon-faint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(var(--color-maroon-faint), var(--color-dark));
}

.fact .fact-left,
.fact .fact-right {
    padding: 6px ;
    display: flex;
    height: 100%;
    justify-content: center;

}

.fact .fact-text h2 {
    font-size: var(--fontsize-M);
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: var(--fontsize-small);
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;
}

.fact .fact-left {
    color: var(--color-white);
    background: var(--color-dark);
}

.fact .fact-right {
    color: var(--color-dark);
    background: var(--color-blue);
}

.fact .fact-left h2 {
    color: var(--color-white);
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}


.service .row{
    display: flex;
    align-items: center;
    justify-content: center;
}


.service .row > div{
    display: flex;       
    align-items: stretch;
    padding: 10px;
}

.service .service-item {
    flex: 1;     
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    text-align: center;
    box-shadow: 4px 4px 4px rgba(28, 10, 10, 0.7);
    border-radius: 8px;
    overflow: hidden;
    transition: all .3s ease;
} 
.service .service-item i {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%) scale(0.5);
  color: white;
  font-size: 28px; /* adjust size */
  z-index: 99;
  font-size: 1.5rem;
  color: var(--color-maroon-faint);
  animation: tap-bounce 3s infinite ease-in-out;
}

/* bouncing/tapping effect */
@keyframes tap-bounce {
  0%, 100% {
    transform: translateY(0)  scale(.9);
  }
  50% {
    transform: translateY(2px) scale(1);
  }
}

/* ripple effect */
.service .service-item i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 40px;
  height: 40px;
  background: rgba(246, 244, 244, 0.75);
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  animation: ripple 3s infinite ease-out;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.88;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}



.service .service-item:hover {
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.35);
    transform: translateY(-5px);
} 
.service .service-item:hover i{
    display: none;
} 


.service .service-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 100%;
}

.service .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .8);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: var(--color-white);
    font-size: var(--fontsize-maelezo);
}

.service .service-text {
    display: flex;
    align-items: center;
    flex: 1;  
    min-height: 60px; 
    background: var(--color-dark);
    border-radius: 0;
    padding: 2px;

}


.service .service-text h3 {
    margin: 0;
    padding: 10px  15px;
    width: calc(100% - 60px);
    font-size: var(--fontsize-S);
    font-family: var(--font-family-1);
    font-weight: 300;
    color: var(--color-white);
    text-align: left;
    

}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: var(--color-dark);
    background: var(--color-blue);
    border-radius: 0;
    transition: all .3s ease;
}

.service .service-item:hover a.btn {
    color: var(--color-white);
    background: var(--color-maroon);
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 65px;
    position: relative;

}
/*******************************/
.video-container .col-md-6{
    display: flex;position: relative;
    align-items: center;
    justify-content: center;
    padding: 10px; 
    margin: 5px auto;

}

.image-box{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    max-height: 400px;
    width: 100;
    overflow: hidden;
    border-radius: 8px;
    margin: 12px auto; 
}


.video {
    position: relative;
    margin: 12px auto !important;
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    /*background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .4)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
}

.image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

.video video {
  position: relative;   
  width: 100%;
  height: 100%;
  object-fit: cover;    /* keeps aspect ratio while filling */
  z-index: 1;
}


.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#fdbe33, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #030f27;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 25px 5px;
    margin: 20px auto;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.team .row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}


.team .row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.team .team-item {
    position: relative;
    overflow: hidden;
    border: .0px solid var(--color-dark);
    border-radius: 0px; 
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.6);
    transition: all .3s ease ;
}

.team .team-item:hover {
    transform: translateY(-5px);
    box-shadow: 2px 4px 5px rgba(45, 8, 8, 0.35);
}

.team .team-img {
    position: relative;
    height: 280px;
    padding: 1px;
    background: var(--color-dark);
}

.team .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
   
}

.team .team-text {
    position: relative;
    padding: 10px;
    text-align: center;
    justify-content: center;
    background: var(--color-dark);
    transition: all .3s ease;
}

.team .team-text h2 {
    font-size: var(--fontsize-S);
    font-weight: 400;
    font-family: var(--font-family-1);
    color: var(--color-white);
    border-bottom: .1px solid rgba(78, 81, 80, 0.2);
    transition: all .3s ease;
}

.team .team-text h3{
   border-bottom: .1px solid rgba(89, 114, 108, .2);
}

.team .team-text h3,
.team .team-text p, 
.team .team-text p a {
    margin: 0;
    line-height: 1.5rem;
    color: var(--color-blue);
    font-size: var(--fontsize-small);
    font-weight: 400;
    font-family: var(--font-family-1);
}
.team-text .download-cv {
    border: .0px solid var(--color-maroon); 
    width: 40%; 
    margin: 2px auto;
    background: rgb(63, 98, 121);
}

.team .team-item:hover .team-text {
    background: var(--color-white);
    color: var(--color-dark);
    border-top: .02px solid var(--color-dark);
}

.team .team-item:hover .team-text h2 {
    color: var(--color-dark);
    letter-spacing: .8px;
}

.team .team-item:hover .team-text h3,
.team .team-item:hover .team-text p,
.team .team-item:hover .team-text p a  {
    color: var(--color-maroon);
    letter-spacing: .8px;
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--color-white);
    transition: all .3s ease;
}

.team .team-social a:hover {
    background: transparent !important;
    color: var(--color-dark);
    border: .1px solid var(--color-dark);
    transform: translateX(4px);
}

.team .team-item:hover .team-social a:first-child {
    background: #4770c9;
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #cd5f5f;
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0f2835;
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #074c89;
    left: 50px;
    transition: .3s .3s;
}
.team .team-item:hover .team-social a:nth-child(5) {
    background: #6c3240;
    left: 50px;
    transition: .3s .4s;
}

/*@media (max-width: 767.98px) {   small screens and below 
  .team-row .col-lg-3:nth-child(1) { order: 4; }
  .team-row .col-lg-3:nth-child(2) { order: 3; }
  .team-row .col-lg-3:nth-child(3) { order: 2; }
  .team-row .col-lg-3:nth-child(4) { order: 1; }
}
*/
@media (max-width: 500px) {
    .team .row {
        display: flex;          /* flex container */
        flex-direction: column; /* stack columns vertically */
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
        gap: 5px;               /* optional spacing */
    }

    .team .row > .col-6.col-lg-3 {
        flex: 1 1 100%;         /* full width */
        max-width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

}



/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    width: 100%;          
    position: relative;
    padding: 15px  0; 
    margin: 20px auto; 
    box-sizing: border-box;
    
}

.faqs .row {
    position: relative;
    margin-left: 0;        /* override Bootstrap row negative margins */
    margin-right: 0;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: var(--color-dark);
}

.faqs #accordion-1,
.faqs #accordion-3 {
    padding-right: 5px;
}

.faqs #accordion-2,
.faqs #accordion-4 {
    padding-left: px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2,
    .faqs #accordion-3,
    .faqs #accordion-4 {
        padding: 0;
    }
    
    .faqs #accordion-2,
    .faqs #accordion-4 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0; 
    width: 100%; 
    
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: .1px solid var(--color-dark);
    background: var(--color-blue);
    position: relative;
    display: flex; 
    width: 100%;
    height: 100%; 
    border-radius: 0;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
}

.faqs .card-header a {
    display: block;
    padding: 15px 30px  15px  10px;
    margin: 0;
    width: 100%;
    color: var(--color-dark);
    font-size: var(--fontsize-maelezo);
    font-family: var(--font-family-1);
    transition: all .3s ease;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: var(--color-maroon);
    color: var(--color-white);
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    color: var(--color-dark);
    font-size: .9rem;
    font-weight: 600;
    position: absolute;
    right: 8px;
    top: 50%; transform: translateY(-50%);

    transition: all .5s ease;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    right: 8px;
    top: 50%; transform: translateY(-50%);
    color: var(--color-white);
    font-size: .9rem;
    font-weight: 600;
    transition: all .5s ease;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: var(--fontsize-maelezo);
    font-family: var(--font-family-1);
    color: var(--color-dark);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 0;
    padding: 15px 0;
    text-align: center;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 760px;
}

.testimonial .section-header p{
    color: rgb(208, 4, 4);
}

.testimonial .section-header h2{
    color: var(--color-blue);
    font-size: var(--fontsize-maelezo);
    font-family: var(--font-family-1);
    font-weight: 400;
    line-height: 1.8rem;
}


.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: .4;
    transform: scale(1.2);
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.8);
    opacity: 1;
    z-index: 1; 
}

.testimonial .testimonial-slider-nav .slick-center img {
    border-radius: 10%; /* change shape for center image */
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
  position: absolute;
  content: "\f10d"; /* Font Awesome quote-left icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* required for solid icons */
  font-size: 30px;
  color: var(--color-maroon); /* your theme color */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}


.testimonial .testimonial-slider h3 {
    color: var(--color-blue);
    font-size: var(--fontsize-M);
    font-weight: 500;
    font-family: var(--font-family-1);
}

.testimonial .testimonial-slider h4 {
    font-size: var(--fontsize-maelezo);
    font-weight: 300;
    color: var(--color-white);
    font-family: var(--font-family-1);
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-slider p {
    color: var(--color-white);
    font-family: var(--font-family-1);
    font-size: var(--fontsize-maelezo);
    font-weight: 300;
    margin: 0;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 15px 0px;
}

.blog .row{
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .row > div{
    display: flex;       
    align-items: stretch;
    padding: 10px;
}

.blog .blog-item {
    flex: 1;     
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(83, 18, 18, 0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: all .3s ease;
} 


.projects .blog-item {
  box-shadow: 3px 3px 5px rgba(0, 12, 12, 0.5);
    border-radius: 0px;
    
} 



.blog .blog-item:hover {
    box-shadow: 2px 2px 8px rgba(139, 132, 132, 0.5);
    transform: translate(3px, -3px);
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog .blog-title {
    display: flex;
    align-items: center;
    min-height: 60px;
    background: var(--color-dark);
}


.blog .blog-title h3 {
    margin: 0;
    padding: 10px;
    width: 100%;
    font-family: var(--font-family-1);
    font-size: var(--fontsize-S);
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
}

.blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: var(--color-white);
    background: var(--color-maroon);
    border-radius: 0;
    transition: all .3s ease;
}

.blog .blog-item:hover a.btn {
    color: var(--color-dark);
    background: var(--color-white);
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: #f3f6ff;
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #fdbe33;
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #666666;
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 15px;
    background: var(--color-blue);
    flex: 1;     
    display: flex;
}

.blog .blog-text p {
    margin: 0;
    font-family: var(--font-family-1);
    font-size: var(--fontsize-maelezo);
    font-weight: 400;
    color: var(--color-dark);
    text-align: center;
}

.blog .pagination .page-link {
    color: #030f27;
    border-radius: 0;
    border-color: #fdbe33;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #fdbe33;
    background: #030f27;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}





.projects-slider {
  position: relative;
  background: rgb(245, 234, 213);
  padding: 2px;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  height: 400px; /* 👈 set any fixed height or use vh units */
  box-sizing: border-box;
}

.projects-slider .owl-item,
.projects-slider .post-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  width: 100%;
  height: 395px;
  box-sizing: border-box;
}

.projects-slider .post-img {
 position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.projects-slider .post-img img,
.projects-slider .post-img video,
.projects-slider .post-img embed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; 
}

.projects-slider .view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: 1px solid white;
  border-radius: 0px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: var(--fontsize-maelezo);
  display: none; /* shown only on hover via JS */
}

#mediaModal-project{
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%;
    background:rgba(0,0,0,0.6); 
    align-items:center; 
    justify-content:center; 
    z-index:9999;
}
#closeModal-project{
    position:absolute; 
    top:20%; 
    right:20%; 
    color:white; 
    font-size: 45px; 
    cursor:pointer;
    z-index: 10;
}
.modal-content-project{
    display:flex; 
    align-items:center; 
    justify-content:center; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width:80%; 
    max-height:80%;
    background: rgb(240, 234, 225); 
    padding: 5px;
    overflow: hidden; 
    box-sizing: border-box;
}



.projects-slider .owl-nav {
    position: absolute;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    display: none; 
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-direction: column;
    transition: all .3s ease;
}

.blog .blog-item:hover .projects-slider .owl-nav {
    display: flex;
}

.projects-slider .owl-nav .owl-prev,
.projects-slider .owl-nav .owl-next {
    margin: 2px auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    background: var(--color-white);
    font-size: 20px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    transition: all .3s ease;
}

.projects-slider .owl-nav .owl-prev:hover,
.projects-slider .owl-nav .owl-next:hover {
    color: var(--color-white);
    background: #fdbe33;
}


















/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 5px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030f27;
    background: #fdbe33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #030f27;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #fdbe33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #030f27;
    background: #fdbe33;
}

.single .comment-form .btn:hover {
    color: #fdbe33;
    background: #030f27;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar-widget {
    position: relative;
    margin: 5px auto; padding: 2px;
    background: rgb(249, 240, 223, .25);
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #fdbe33;
}

.sidebar-widget .search-widget {
    position: relative;
    display: flex;
    height: 35px;
    padding: 0px; 
    margin: 0;
}

.search-widget input {
    display: flex;
    height: 100%; 
    width: 100%; 
    border: 1px solid #dddddd;
    border-radius: 0;
    font-size: var(--fontsize-maelezo);
    font-family: var(--font-family-1);
}


.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 100%;width: 45px;
    padding: 0; margin: 0;
    font-size: 25px;
    color: #fdbe33;
    background: red;
    border-radius: 0;
    border: none;
    transition: .3s;
}

 .search-widget .btn:hover {
    color: #030f27;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #fdbe33;
    background: #030f27;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #030f27;
    background: #fdbe33;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fdbe33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: #fdbe33;
    background: #030f27;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/


#portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #030f27;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #fdbe33;
    border: none;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #030f27;
    color: #fdbe33;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #fdbe33;
    background: #030f27;
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: .3s;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: #ffffff;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #fdbe33;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #ffffff;
    border-radius: 0;
    transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: #ffffff;
    background: #fdbe33;
}




/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 0;
}

.contact .col-md-6 {
    padding: 15px;
    margin: 15px 0;
}


.contact-info,
.contact-form {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 4px rgba(1, 18, 81, 0.2);
}
.contact-info {
    background: var(--color-dark);
}
.contact-form {
    background: var(--color-blue);
}
.contact-map-box {
    display: flex; 
    width: 100%; 
    height: 100%;
}
.contact-map-box iframe{
    width: 100%; 
    height: 100%;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    border: 0px solid rgba(256, 256, 256, .2);
}

.icon-title{
    display: flex;
    gap: 20px; 
    padding: 0; margin: 0;
    position: relative;
    width: 100%;
    align-items: center;
    border-bottom: .2px solid;
}
.icon-title i{
    position: relative;
    height: 100%;
    margin: 0 !important;
    padding: 0;
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    color: var(--color-blue);
    font-size: 30px;
}

.contact .contact-text {
    position: relative;
    width: 100%;
    margin: 0;
    padding-left: 0px;
}

.contact .contact-text i {
    font-size: .8rem;
}

.contact .contact-item h2 {
    margin: 0;
    padding: 0;
    color: var(--color-white);
    font-size: var(--fontsize-M);
    font-weight: 500;
    font-family: var(--font-family-1);
}

.contact .contact-text p {
    margin: 0;
    color: var(--color-white);
    font-size: var(--fontsize-maelezo);
    font-family: var(--font-family-1);
    font-weight: 400;
}

.moving-h {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px; 
    margin: 0;
    font-size: var(--fontsize-M);
    color: var(--color-dark);
    font-family: var(--font-family-1);
    font-weight: 400;
    line-height: 1.8rem;
    box-shadow: 2px 2px 4px rgba(50, 2, 2, 0.5);
    background: var(--color-white);
    animation: action-cont 10s infinite alternate;
    transition: all 0.3s ease;
}

@keyframes action-cont  {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-100px);
  }
}

#contactForm {
    width: 100%;
    height: 100%;
}
.control-group{
    margin: 10px auto;
    width: 100%;
}

.contact .contact-form input,
.contact .contact-form textarea{
    color: var(--color-dark);
    min-height: 40px;
    border-radius: 0;
    border: 1px solid var(--color-white);
    background: rgb(238, 237, 237);
}

.contact .contact-form textarea {
    min-height: 150px;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    box-shadow: none;
    background: var(--color-white);
}
/* After typing (not empty): white */
.contact .contact-form input:not(:placeholder-shown),
.contact .contact-form textarea:not(:placeholder-shown) {
  background: var(--color-white);
}

.contact .contact-form .form-control::placeholder {
    font-size: var(--fontsize-maelezo);
    color: var(--color-maroon-faint);
    font-family: var(--font-family-1);
    font-weight: 400;
    opacity: .7;
}

.contact .contact-form .form-control::-ms-input-placeholder{
     color: var(--color-maroon-faint);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: var(--color-dark);
    font-size: var(--fontsize-small);
    font-family: var(--font-family-1);
    font-weight: 300;
}
.Indicates-required-fields {
  display: flex; justify-content: flex-start;
  align-items: center;
  font-family: var(--font-family-1);
  font-size: var(--fontsize-small);
  color: var(--color-dark);
  font-weight: 300;
  padding: 5px  4px  0px  4px;
}

.contact .btn {
    padding: 10px 30px;
    font-size: var(--fontsize-maelezo);
    font-weight: 500;
    color: var(--color-white);
    background: var(--color-maroon);
    font-family: var(--font-family-1);
    border: .25px solid var(--color-white);
    border-radius: 0;
    transition: all .3s ease-in-out;
}

.contact .btn:hover {
    color: var(--color-dark);
    background: var(--color-white);
    border-color: var(--color-dark);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin: 0px;
    padding-top: 20px;
    background: var(--color-dark);
    color: var(--color-white);
}

.footer .row{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 5px;
    margin-top: 35px;
}

.footer h2 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: var(--fontsize-M);
    font-weight: 500;
    color: var(--color-orange);
    font-family: var(--font-family-1);
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: .5px;
    left: 0;
    bottom: 0;
    background: var(--color-orange);
}

.footer .footer-link a,
.footer  .contact-item a {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-family-1);
    font-size: var(--fontsize-small);
    font-weight: 400;
    color: var(--color-white);
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer a:hover {
    color: var(--color-orange);
    letter-spacing: .2px;
}

.contact-item {
  display: flex;
  align-items: flex-start;  
  gap: 8px;                 
  margin: 6px 0;
  font-size: var(--fontsize-small);
}

.contact-item i {
    width: 25px; 
    font-size: 1.0rem;
    min-width: 20px;          
    margin-top: 6px;        
}



.footer-social{
    position: relative;
    margin-top: 20px;
    display: flex;
    gap: 5px;
    width: 100%;
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
    transition: all .3s ease;
}

.footer-social a{
    position: relative;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 8px;
    transition: all .3s ease;
}

.footer-social a i {
    font-size: 18px;
    margin: 0;
    padding: 0;
    color: var(--color-white);
}

.footer-social a:hover {
    background: var(--color-maroon-faint);
    border-color: transparent;
}

.footer-social a:hover i {
    color: var(--color-dark);
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    background: rgb(249, 236, 213);
    padding: 2px;
}


.footer .newsletter input {
    position: relative;
    height: 40px;
    padding: 2px;
    padding-right: 95px;
    border: 1px solid var(--color-maroon-faint);
    border-radius: 0;
    box-sizing: border-box;
}

.footer .newsletter .btn {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px; 
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    font-size: var(--fontsize-small);
    font-weight: 500;
    font-family: var(--font-family-1);
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-maroon-faint);
    border-radius: 0;
    border: 0px solid var(--color-white);
    transition: all .3s ease;
}

.footer .newsletter p{
    font-size: var(--fontsize-small);
    font-weight: 400;
    color: var(--color-white);
    font-family: var(--font-family-1);

}

.footer .newsletter .btn:hover {
    color: var(--color-dark);
    background: #fdbe33;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 10px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: var(--color-white);
    font-size: var(--fontsize-small);
    font-family: var(--font-family-1);
    font-weight: 400;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: var(--color-orange);
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 10px 15px;
    margin: 0 auto;
}

.footer .copyright p {
    margin: 0;
    color: var(--color-white);
    font-size: var(--fontsize-small);
    font-family: var(--font-family-1);
    font-weight: 400;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: var(--color-orange);
    font-family: var(--font-family-1);
    font-weight: 400;
}

.footer .copyright p a:hover {
    color: var(--color-blue);
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}
