:root{
    --primary: #ea9c38;
    --primary-foreground: #ffffff;
    --primary-hover: #d9933a;
    --primary-active: #c77a2d;
    --header: #3e3f43;
    --header-foreground: #8b8f9d;
    --navbar: #eef2ff;
    --navbar-foreground: #3e3f43;
    --border: #c8cbd5;
    --light-gray: #555c77;
    --light-border: #d5d5d5;
    --yellow: #ffc303;
    --footer-border: #5b5c5f;
}

.header-info{
    display: none;
    background: var(--header);
    color: var(--header-foreground);
    padding: 10px 0;
    font-weight: 300;
    font-family: "Raleway", sans-serif;
}

.header-info__side{
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.header-info__item{
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-info__icon{
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.navbar{
    background: var(--navbar);
    color: var(--navbar-foreground);
    font-family: "Raleway", sans-serif;

}

.navbar__logo-wrapper{
    width: 150px;
}

.navbar__logo-wrapper img{
    width: 100%;
}
.navbar__hamburger{
    width: 40px;
    height: 40px;
    background: var(--header);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.navbar__items-container{
    display: none;
    gap: 24px;
    text-transform: uppercase;
    font-size: 12px;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
}

.navbar__items-container li a{
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.navbar__items-container li button{
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    color: inherit;
    padding: 0 0;
}

.navbar__items-container li button:hover {
    color: var(--primary);
}

.navbar__items-container li button:active {
    color: var(--primary-active) !important;
}

.navbar__items-container li:hover {
    color: var(--primary);
}


.navbar__contact-container{
    display: none;
    align-items: center;
    gap: 20px;
}

.navbar__phone-wrapper{
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar__phone-wrapper img{
    width: 20px;
    height: 20px;
}

.navbar__phoneNum-wrapper{
    color: var(--primary);
}

.navbar__dropdown-menu{
    border: none;
    width: 250px;
    padding: 20px;
    font-size: 12px;
}

.navbar__dropdown-menu li a:hover{
    color: var(--primary-hover);
    background: none !important;

}
.dropdown-menu{
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: all 0.2s linear;
    margin-top: 12px;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.btn-primary{
    background: var(--primary);
    border: none;
    padding: 10px 15px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    text-wrap: nowrap;
    transition: background 0.2s ease-out;
}

.btn-primary:hover{
    background: var(--primary-hover);
}
.btn-primary:active{
    background: var(--primary-active) !important;
}

.mobile-menu__accordion-trigger{
    padding: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none !important;
}
.mobile-menu__accordion-trigger:focus{
    outline: none !important;
    box-shadow: none;
}

.mobile-menu__sub-menu{
    list-style: none;
    padding-left: 0;
}


.mobile-menu__list{
    list-style: none;
    font-family: "Raleway", sans-serif;
    padding-left: 0px;
}

.mobile-menu__list li{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
}
.mobile-menu__list li a{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    text-decoration: none;
    color: inherit;
}

.accordion{
    --bs-accordion-border-width: none;
}


.footer{
    background: var(--header);
    font-family: "Raleway", "sans-serif";
    color: var(--header-foreground)
}

.footer__top{
    padding: 150px 0;
}

.footer__logo-wrapper{
    width: 200px
}

.footer__logo-wrapper img{
    width: 100%;
    object-fit: contain;
}

.footer__items{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__items h2 {
    color: white;
    font-size: 25px;
    font-weight: 400;
}

.footer__icon-wrapper{
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--footer-border);
    cursor: pointer;
    transition: background 0.2s ease-out;
}

.footer__icon-wrapper:hover{
    background: var(--primary);
}

.footer__description{
    font-weight: 300;
    line-height: 1.6;
}

.footer__icon-wrapper img{
    width: 20px;
    height: 20px;
}

.footer__list-container{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.footer__list-container li{
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.footer__list-container li:hover{
    color: white
}

.footer__icon-wrapper--small{
    width: 16px;
    height: 16px;

}
.footer__icon-wrapper--small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer__bottom{
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid var(--footer-border);
}

@media screen and (min-width:576px){
    .custom-carousel-inner{
        display: flex;
    }
    .custom-carousel-inner__item{
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 3);
    }
}

.custom-carousel-inner{
    padding: 1em;
}

.star-icon{
    color: var(--yellow);
}

.card__avatar-wrapper{
    width: 60px;
    height: 60px;
}

.card__avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;

}
.card-body__comment{
    font-family: "Raleway", "sans-serif";
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
}
.out-client-card{
    margin: 0 0.5em;
}

@media (min-width: 576px) {

}

@media (min-width: 768px) {
    .header-info {
        display: block;
    }
    .btn-primary{
        font-size: 12px;
        padding: 10px 20px;
    }
}
@media (min-width: 992px) {
    .navbar__hamburger{
        display: none;
    }

    .navbar__items-container{
        display: flex;
    }

    .navbar__contact-container{
        display: flex;
    }
    .btn-primary{
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
}



@media (min-width: 1400px) {

}