/********** Template CSS **********/
@font-face {
    font-family: 'foundry';
    src: url('fonts/Foundry-Monoline-W04-Md.ttf') format('truetype');
}

:root {
    --primary: #b08878;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #fafafa;
    --dark: #0d004c;
    font-family: "foundry";
    --d: 2500ms;
    --angle: 90deg;
    --gradX: 100%;
    --gradY: 50%;
    --c1: rgba(176, 136, 120, 1);
    --c2: rgba(176, 136, 120, 0.1);
}

body {
    font-family: "foundry";
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.border-dark {
    color: var(--dark);
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
    font-family: "foundry";
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
    font-family: "foundry";
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
    font-family: "foundry";
}

a:hover {
    color: var(--dark);
}

.lnk {
    color: var(--light);
}

.lnk:hover {
    color: var(--primary);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    /* box-shadow: 0px 2px 15px var(--dark); */
}

.navbar .navbar-nav {
    border-radius: 8px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    /* padding: 25px 15px; */
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
    font-size: 17px;
    padding-left: 13px;
    padding-right: 13px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-brand img {
    width: 400px;
}

.cs-bread {
    margin-top: 150px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        /* background: #FFFFFF; */
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .cs-bread {
        margin-top: 85px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
    background: 
        linear-gradient(to bottom, rgba(12, 2, 76, 1), rgba(12, 2, 76, 0.5), rgba(12, 2, 76, 0), rgba(255, 255, 255, 0)),
        linear-gradient(to top, rgba(12, 2, 76, 0.4), rgba(12, 2, 76, 0.1), rgba(12, 2, 76, 0), rgba(255, 255, 255, 0));
    position: absolute;

}

.carousel-caption h1,
.carousel-caption h3 {
    color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

#header-carousel p {
    background-color: var(--dark);
}

/* #header-carousel .carousel-caption :before{
    content: "";
    background: rgba(217, 217, 217, 0.98);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
} */

#header-carousel .srv-lnk {
    color: var(--primary);
}

#header-carousel .srv-lnk:hover {
    color: var(--light);
}

.page-header {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}

@media (max-width: 468px) {
    .navbar-brand img {
        width: 200px;
        padding-top: 2px;
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #header-carousel .carousel-item video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    #header-carousel .carousel-caption .display-4{
        font-size: 23px;
    }
    .navbar-brand img {
        width: 150px;
        padding-top: 2px;
    }

    .page-header {
        padding-top: 0rem;
        padding-bottom: 5rem;
    }

    .cs-bread {
        margin-top: 75px;
    }
}


/*** Facts ***/
#facts {
    background: linear-gradient(rgba(13, 0, 76, .9), rgba(13, 0, 76, .95)), url(../img/pattern.png);
    /* background-image: url('../img/pattern.png'), linear-gradient(rgba(13, 0, 76, .9), rgba(13, 0, 76, .95)); */
    background-size: auto, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center;
}



/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
#services
{
    background-image: url('../img/pattern.png');
    background-color: #b0887808;
    background-size: auto;
    background-repeat: no-repeat;
}
#merge
{
    background-image: url('../img/pattern.png');
    background-color: #b0887808;
    background-size: auto;
    background-repeat: no-repeat;
}
.service .nav .nav-link {
    transition: .5s;
    background-color: #fff;
}

.service .nav .active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .active h5,
.service .nav .active h5 i {
    color: #FFFFFF !important;
}

.service .nav .nav-link:hover {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link:hover h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link:hover h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}
.project-item:hover .project-img a .fa {
    color: var(--dark);
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--dark);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--dark);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 7px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #f5f5f5;
    border-radius: 45px;
    font-size: 22px; 
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}

.project-carousel2 .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel2 .owl-nav .owl-prev,
.project-carousel2 .owl-nav .owl-next {
    margin: 0 7px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #f5f5f5;
    border-radius: 45px;
    font-size: 22px; 
    transition: .5s;
}

.project-carousel2 .owl-nav .owl-prev:hover,
.project-carousel2 .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
    color: var(--dark);
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}

.fix-logo {
    width: 250px;
}

.contact .info {
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
    overflow: hidden;
}

.contact .info h3 {
    font-weight: 600;
    font-size: 24px;
}

.contact .info p {
    color: var(--color-secondary-light);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact .info-item+.info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f2ddd6;
}

.contact .info-item i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-secondary-light);
}


.form {
    position: relative;
}

.form .fa-search {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary);

}

.form span {
    position: absolute;
    right: 17px;
    top: 13px;
    padding: 2px;
    border-left: 1px solid #d1d5db;

}

.left-pan {
    padding-left: 0px;
}

.left-pan i {
    padding-left: 10px;
}

.form-input {
    height: 55px;
    text-indent: 10px;
    border-radius: 10px;
    border-width: 2px;
    border-color: var(--primary);
}

.form-input:focus {
    box-shadow: none;
    border-color: var(--dark);
}

.common-services {
    border-radius: 8px;
    box-shadow: 2px 2px 5px 2px rgba(13, 0, 76, 0.3);

}

.common-services a {
    font-size: 17px;
}

.rqdocs ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.rqdocs ul li {
    padding-bottom: 15px;
    display: flex;
}

.rqdocs ul .featured {
    font-size: 20px;
}


.rqdocs ul i {
    font-size: 20px;
    padding-right: 0px;
    padding-top: 3px;

}

.progresses {
    display: flex;
    align-items: center;
}

.line {
    width: 120px;
    height: 6px;
    background: var(--primary);
}

.line2 {
    width: 120px;
    height: 6px;
    background: #d1d5db;
}

.steps {
    display: flex;
    background-color: var(--primary);
    color: #fff;
    font-size: 14px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.steps2 {
    display: flex;
    background-color: #d1d5db;
    color: #6d6d6d;
    font-size: 14px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.steps i,
.steps2 i {
    font-size: 19px;
}

.highlighted {
    color: #0d004c;

}

.footer p {
    margin-bottom: 0;
}

.dropdown-divider {
    margin: 0rem 0;
}

#services .card {
    border: 1px solid #b08878;
    border-radius: 0px;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 90deg;
    inherits: true;
}

@property --gradX {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: true;
}

@property --gradY {
    syntax: '<percentage>';
    initial-value: 0%;
    inherits: true;
}

#services .card:hover {
    border: 0.35rem solid;
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
    animation: borderRotate var(--d) linear infinite forwards;
    transition: .3s;
}

#services .anime {
    border: 2px solid;
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
    animation: borderRotate var(--d) linear infinite forwards;
}

.cborder {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

@keyframes borderRotate {
    100% {
        --angle: 420deg;
    }
}

@keyframes borderRadial {
    20% {
        --gradX: 100%;
        --gradY: 50%;
    }

    40% {
        --gradX: 100%;
        --gradY: 100%;
    }

    60% {
        --gradX: 50%;
        --gradY: 100%;
    }

    80% {
        --gradX: 0%;
        --gradY: 50%;
    }

    100% {
        --gradX: 50%;
        --gradY: 0%;
    }
}

.navbar-light .navbar-toggler {
    background-color: transparent; 
    /* #fbfbfb; */
}

.eservice-card {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
    width: 100%;
    transition: border-color 0.5s ease;
}

.eservice-card:hover {
    border-color: #b08878;
}

.blue-bar {
    width: 8px;
    height: 40%;
    background-color: #0d004c;
    border-radius: 5px;
    position: absolute;
    left: 13px;
    top: 30%;
    bottom: 0;
}

.service-content {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    /* Offset for blue bar */
}

.service-title {
    font-size: 0.9rem;
    color: #b08878;
    margin: 0;
}

.service-name {
    font-weight: bold;
    margin: 2px 0;
    color: #0d004c;
}

.service-description {
    font-size: 0.85rem;
    color: #6c757d;
}




.closebtn {
    margin: 51px 54px 10px 10px;
    float: right;
}

.closebtn:hover {
    color: #fff;
}
#navbarSupportedContent {

    height: 0;
    width: 500px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgba(12, 2, 76,0.95);
    overflow-x: hidden;
    transition: 0.5s;
    overflow: hidden;
}

#overlay-content {

    position: relative;
    top: 15%;
    width: 100%;
    text-align: left;
    margin-top: 30px;
    margin-left: 90px;
}


#navbarSupportedContent a {
    padding: 8px;
    text-decoration: none;
    font-size: 4vh;
    display: block;
    transition: 0.3s;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: block;
    }
    
}
@media (max-width: 992px) {
    #navbarSupportedContent {

        height: 0;
        width: 100%;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: rgba(12, 2, 76,0.9);
        overflow-x: hidden;
        transition: 0.5s;
        overflow: hidden;
    }

    #overlay-content {

        position: relative;
        top: 15%;
        width: 100%;
        text-align: center;
        margin-top: 30px;
        margin-left: 0;
    }
}
.service-card {
    padding: 30px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #ffffff;
    transition: transform 0.3s;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 20px;
}

.service-card:hover {
    border-color: #b08878;
}

.service-icon img {
    min-height: 70px;
    max-height: 70px;
    margin-bottom: 15px;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.navbar-light .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b18978' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-light .navbar-toggler{
    border: none;
    border-color: transparent;
    outline: none;
}
.navbar-light .navbar-toggler :focus{
    outline: none;
}