@font-face {
    font-family: 'RubicBold';
    /* Name your font */
    src: url('fonts/Rubik/Rubik-Bold.ttf'),
        /* Define the path to your font files */
        /* Add additional src lines for other formats if necessary */
        /* You can also specify font-weight and font-style here */
}
@font-face {
    font-family: 'RubicBoldItalic';
    /* Name your font */
    src: url('fonts/Rubik/Rubik-BlackItalic.ttf'),
        /* Define the path to your font files */
        /* Add additional src lines for other formats if necessary */
        /* You can also specify font-weight and font-style here */
}
@font-face {
    font-family: 'Sansation_Bold';
    /* Name your font */
    src: url('fonts/sansation/Sansation_Bold.ttf'),
        /* Define the path to your font files */
        /* Add additional src lines for other formats if necessary */
        /* You can also specify font-weight and font-style here */
}
@font-face {
    font-family: 'Sansation_Regular';
    /* Name your font */
    src: url('fonts/sansation/Sansation_Regular.ttf'),
        /* Define the path to your font files */
        /* Add additional src lines for other formats if necessary */
        /* You can also specify font-weight and font-style here */
}
@font-face {
    font-family: 'Sansation_Light';
    /* Name your font */
    src: url('fonts/sansation/Sansation_Light.ttf'),
        /* Define the path to your font files */
        /* Add additional src lines for other formats if necessary */
        /* You can also specify font-weight and font-style here */
}
.custom-container {
    padding-right: 0;
    padding-left: 0;
}
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: none;
    color: #EEEEEE;
    background-color: #0A2647;
    border: none;
    border-radius: 50%;
}
#scrollToTopBtn:hover {
    background-color: #678983;
}
.navbar-nav .nav-item .nav-link {
    color: #EEEEEE;
    font-family: 'Sansation_Bold';
}
h1 {
    color: #2C74B3;
    font-family: 'Sansation_Bold';
}
.navbar-brand {
    color: #EEEEEE;
}
#whole_navbar {
    background: #0A2647;
}
.header-span {
    font-family: 'Sansation_Light';
}
.navbar-brand-span {
    color: #EEEEEE;
    font-family: 'Sansation_Light';
}
.header-about-text {
    font-family: 'Sansation_Regular';
    letter-spacing: .1em;
    word-spacing: .1em;
    line-height: 2rem;
    color: #EEEEEE;
    background: #0A2647;
    padding: 6%;
}
.card-body h5 {
    color: #2C74B3;
    font-family: 'Sansation_Bold';
}
.card-body p {
    color: #678983;
    font-family: 'Sansation_Regular';
    line-height: 1.5rem;
}
footer h3 {
    color: #EEEEEE;
}
footer {
    background: #0A2647;
    color: #EEEEEE;
}
#btn-primary {
    background-color: #0A2647;
    border: #0A2647;
    color: #EEEEEE;
    font-family: 'Sansation_Bold';
    font-size: .9rem;
}
.footer-column p {
    font-family: 'Sansation_Regular';
    letter-spacing: .05em;
    word-spacing: .1em;
}
.footer-column a {
    text-decoration: none;
    color: #EEEEEE;
}
.footer-column a:hover {
    text-decoration: none;
    color: #678983;
}
#copy-company {
    color: #EEEEEE;
    font-family: 'Sansation_Bold';
}
#copy-text {
    font-size: .9rem;
}
#contact-title {
    color: #EEEEEE;
    font-family: 'Sansation_Bold';
}
table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    vertical-align: middle;
}
td {
    padding: 5px;
}
#icon-email {
    color: #EEEEEE;
    font-size: 1.3rem;
}
#icon-phone {
    color: #EEEEEE;
    font-size: 2rem;
}
#icon-marker {
    color: #EEEEEE;
    font-size: 2rem;
}
td:nth-child(1) {
    color: #EEEEEE;
    font-family: 'Sansation_Bold';
}
td:nth-child(2) {
    color: #EEEEEE;
    font-family: 'Sansation_Light';
}
.footer-cont-text {
    font-family: 'Sansation_Light';
}
.card:hover {
    animation: zoomOutAnimation 2s forwards;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Box-shadow on hover */
}
@keyframes mymove {
    50% {
        box-shadow: 10px 10px 10px #EEEEEE
    }
}
@keyframes zoomOutAnimation {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}
.whatsapp-icon {
    position: fixed;
    left: 10px;
    /* Adjust as needed */
    bottom: 20px;
    /* Adjust as needed */
    z-index: 1000;
    /* Ensure it's above other elements */
}
.whatsapp-icon img {
    width: 60px;
    /* Adjust icon size as needed */
    height: auto;
    border-radius: 50%;
    /* Makes the icon round */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    /* Adds a shadow effect */
    transition: transform 0.3s ease;
    /* Adds a smooth transition effect */
}
.whatsapp-icon img:hover {
    transform: scale(1.1);
    /* Scales up the icon on hover */
}
@keyframes leftToRight {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes topToDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.left-to-right {
    animation: leftToRight 1s ease forwards;
}
.top-to-down {
    animation: topToDown 1s ease forwards;
}
#particles-js {
   /* width: 95vw;*/
    width: 100%;
    position: absolute;
    top: 10vh;
    left: 0;
    overflow: hidden;
}
.card_pan {
    background-color: transparent;
}
.navbar-toggler {
    border: none;
    height: 30px;
    width: 30px;
}
.open {
    background-color: #007bff;
    /* Background color when open */
    color: #fff;
    /* Text color when open */
}
.close {
    background-color: #ff0000;
    /* Background color when closed */
    color: #fff;
    /* Text color when closed */
}
.carousel-item {
    transition: transform 0.5s ease;
    /* Adjust the speed of the transition */
}
.footer-ser-link {
    color: #0A2647;
}
#service-one-footer,
#service-two-footer,
#service-three-footer,
#service-four-footer {
    color: #0A2647;
}
#service-one-footer:hover,
#service-two-footer:hover,
#service-three-footer:hover,
#service-four-footer:hover {
    background-color: #0A2647;
    color: #eeeeee;
}
#service-one:hover,
#service-two:hover,
#service-three:hover,
#service-four:hover {
    background-color: #0A2647;
    color: #eeeeee;
}
#font-aw-one {
    color: #0000FF;
    font-size: 1.2rem;
}
#font-aw-two {
    color: #0000FF;
    font-size: 2rem;
}
#font-aw-three {
    color: #0000FF;
    font-size: 1.9rem;
}
.footer-about {
    font-size: .9rem;
}
.center-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container {
    width: 50%;
}
.dropmenuheader--active {
    display: block;
    visibility: visible;
  }
  .mt-alerts {
    position:fixed;
    z-index: 99999;
}
#contactForm  .form-control {
border-width: 0.1px;
border-style: outset;
  border-color: #212529;
}
#submit_id {
background-color: #212529;
width: 100px;
}
.stm_cont{
color: #2C74B3;
}
/* */
@media (min-width: 992px) {
    .dropdown .dropdown-menu.show {
        display: none;
    }

    .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0px;
        position: absolute;
    }

    .navbar .dropdown-menu {
        right: auto;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);        
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
/* arrow symbol */
.nav-link.dropdown-toggle:hover::after {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

}

 .navbar-toggler {
    padding: 1px 5px;
    font-size: 18px;
    line-height: 0.3;
    background: #0A2647;//var(--nav-background-color);//var(--color-all-f); //#fff;
}

/* to define shape and color of the hamburger lines */
.navbar-toggler span {
    display: block;
   background-color: white;//var(--nav-toggler-background);
    height: 3px;
    width: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all 0.34s ease-out;
    transform-origin: center left;
}


/* top line needs a little padding */
.navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
}

/**
 * Animate collapse into X.
 */

/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(15%, -33%) rotate(45deg);
}

/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg);
}

/**
 * Animate collapse open into hamburger menu
 */

/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg);
}

/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
    opacity: 1;
}

/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg);
}

/* separate to remove outline  */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: 0;
    border: none;
    box-shadow: none;
}

.dropdown-item:hover {
    /* Hover background color */
	//background-color: var(--nav-background-color);
    //color: #eeeeee;
}

.dropdown-item {
    display: block;
    //color: #1f2632 !important;
    padding: 0 !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    white-space: nowrap !important;
    position: relative !important;
    /* background: none !important;*/
    font-size: 15px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
	
}
/* .dropdown a:hover {
    color: red;
    background-color:var(--nav-background-color);

} */

.dropdown-menu {
    //background-color: #f8f9fa;
  background-color: #ffffff;
    /* Background color */
    // border: 1px solid #ced4da;
    border: none;
    list-style: none;
    white-space: nowrap;
    /* Border color */
    /* box-shadow:
    inset 3px 3px 5px rgb(255 255 255 / 50%),
    inset -3px -3px 5px rgb(0 0 0 / 50%); */
}

.dropdown-menu a {
    text-align: center;
}