@font-face {
    font-family: 'MavenPro';
    src: url('./../fonts/MavenPro-VariableFont_wght.ttf');
}

html {
  font-size: 14px;

  font-family: 'MavenPro';
  
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.fa-icon {
    width: 20px;
}

a{
    /*color: unset;*/
    text-decoration: none;
}

.fadable-header {
    font-size: 40px;
}

@media screen and (max-width:767px) {
    .small-screen-margin {
        margin-top: 30px
    }

    .small-screen-fix {
        justify-content: center
    }
}

@media screen and (max-width:500px) {
    .fadable-header {
        font-size: 30px;
    }
}

.contact-form label{
    color: white;
}

.contact-form-button {
    background-color: #ccaa14;
}


.form-control:focus {
    border-color: #66717E;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(204, 170, 20, 1);
}


.image-box {
    /*    width: 500px;
    height: 400px;*/
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*a:hover {
    color: #66717E;
}*/

.theme-sec {
    color: #66717E;
}

.bg-theme-sec {
    background-color: #66717E;
}

.active-link {
    color: #ccaa14 !important;
}

.content-item {
    


    animation-duration: 3s;
    animation-name: slidein;
    animation-iteration-count: infinite;
    animation-direction: alternate;

}


html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.home-header {
    background-size: cover;
    background-position: center;
    background: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.70)), url('./../business-g9e9808f86_1920.jpg');
    height: 100vh;
    color: white;
}

.about-us-header {
    background-size: cover;
    background-position: center;
    background: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.70)), url('./../pexels-pixabay-326569.jpg');
    height: 50vh;
    color: white;
}


.home-header-name {
    font-size: 80px;
}

.home-header-contact{
   
}

.section-dark {
    background-color: #383c45;
}

.section-dark-link {
    color: #bec9cc;    
}

.section-dark-link:hover {
    color: #909899;
}

.color-white {
    color: white;
}

@keyframes highlightLinkHoverIn {
    from {
        letter-spacing: 0;
        color: #bec9cc;
    }

    to {
        letter-spacing: 1px;
        color: #ccaa14;
    }
}

@keyframes highlightLinkHoverOut {
    from {
        letter-spacing: 1px;
        color: #ccaa14;
    }

    to {
        letter-spacing: 0;
        color: #bec9cc;
    }


}

.service-box li {
  
    text-transform: uppercase;
    text-align: left;
    font-weight: bold;
    padding-bottom: 10px;
    padding-top: 10px;
}


.service-box li:not(:last-child) {
    border-bottom: 1px solid #ccaa14;
}

video {
    height: 70vh;
    width: 100%;
    object-fit: fill;
}

.link-hover-highlight:hover {
    animation-fill-mode: forwards;
    animation-name: highlightLinkHoverIn;
    animation-duration: 0.5s;
}


.link-hover-highlight:not(:hover) {
    animation-fill-mode: forwards;
    animation-name: highlightLinkHoverOut;
    animation-duration: 0.5s;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem #ccaa14 !important;
}

.accordion-button:not(.collapsed) {
    color: #ccaa14;
    background-color: #2e3138;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);

}

.accordion-button {
    color: #ccaa14;
    background-color: #2e3138;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #bec9cc;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(170, 170, 170, 1);
}

.accordion-button::after {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: #383c45;
    color: white;
}

.accordion-body table {
    color: white;
}


    .accordion-body table td {
        border-color: #918a6e;
    }

.accordion-body table td:first-child {
    width: 150px;
}


/*ul {
  list-style: none;*/ /* Remove default bullets */
/*}*/

/*ul li::before {
  content: "\2022";*/  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  /*color: red;*/ /* Change the color */
  /*font-weight: bold;*/ /* If you want it to be bold */
  /*display: inline-block;*/ /* Needed to add space between the bullet and the text */
  /*width: 1em;*/ /* Also needed for space (tweak if needed) */
  /*margin-left: -1em;*/ /* Also needed for space (tweak if needed) */
/*}*/

