@import url('default.css');

/* header */

header #top-bar {
    color: white;
    background-color: #24053B;
    height: 50px;
}

header #nav-bar {
    height: 80px;
    overflow: hidden;
    z-index: 1;
    background-color: white;
    transition: 500ms;
}

header #nav-bar #nav-links a {
    color: rgb(28, 28, 28);
}

header #nav-bar #nav-links a:hover,
header #nav-bar #nav-links a.active {
    color: blueviolet !important;
}

/* sticky nav bar */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px !important;
}

/* end header */

/******************* main ************/

.page-title {
    background-image: url("../img/section-banner.png");
    height: 200px;
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: contain;
    /* Resize the background image to cover the entire container */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* social icons */

ul.social-icons li {
    background-color: white;
    border: 1px solid rgb(39, 39, 39);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 200ms;
}

ul.social-icons li:hover {
    background-color: black;
}

ul.social-icons li a {
    color: black;
}

ul.social-icons li:hover a {
    color: white;
}

/* light */

ul.social-icons-light li {
    background-color: transparent;
    border: 1px solid rgb(80 80 80);
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 200ms;
}


ul.social-icons-light li a {
    color: rgb(193 193 193);
}

ul.social-icons-light li:hover {
    background-color: rgb(255, 255, 255);
}

ul.social-icons-light li:hover a {
    color: rgb(0, 0, 0);
}


/* footer */
footer {
    background-color: #252833;
}

footer a {
    color: #9A9EB3;
}

footer a:hover {
    color: rgb(121, 121, 121);
}

footer ul.links a::before {
    content: ">> ";
    font-size: 10pt;
    margin-right: 6px;
}


/* mobile menu */
#mobile-menu {
    height: 100vh;
    width: 80vw;
    position: fixed;
    background-color: #F4EBFF;
    padding: 20px;
    z-index: 999;
    top: 0;
    left: -100%;
    transition: ease-in-out 500ms;
}

#mobile-menu .header-wrapper {
    position: relative;
}

#mobile-menu .menu-header {
    position: relative;
    margin: 5px;
    padding: 0 10px;
}

#mobile-menu .menu-header i {
    font-size: 16pt;
    cursor: pointer;
}

#mobile-menu .nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    padding-top: 10px;
    border-top: 2px solid #b83dc3;
}


#mobile-menu .nav a {
    display: block;
    color: #4A148C;
    width: 100%;
    margin: 10px 0px;
    padding-left: 20px;
    transition: 100ms;
}

#mobile-menu .nav a.active,
#mobile-menu .nav a:hover {
    font-weight: bold;
    border-left: 2px solid #4A148C;
}


/* home */

/* slider */

#home-slider .carousel-inner .carousel-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: fit-content;
    height: 500px;
    color: white;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}

/* our services */

ul.service_categories li {
    padding: 10px 20px;
}

ul.service_categories li:hover,
ul.service_categories li.active {
    background-color: #6A0DAD;
}

ul.service_categories li a {
    display: block;
    color: white;
}