@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.float-animation {
    animation-name: float;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    animation-delay: 0s;

}

header .top {
    background: rgba(32, 32, 32, 1);
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
}

header .mobile-nav-button {
    display: none !important;
}

header {
    transition: all 0.5s ease-in-out;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transform: translateY(0);
}

header .fixed .contaienr {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

header .dropdown-nav {
    opacity: 100%;
}

header .dropdown-nav a {
    padding: 0 !important;
}

header .dropdown-nav .d-menu a:hover {
    text-decoration: underline !important;
}

header .dropdown-nav .col {
    font-size: 0.8rem !important;
    padding: 1rem 0 !important;
}

header .dropdown-nav .d-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    overflow: hidden;
    border-bottom: solid 1px #ccc;
    transform: translateY(-100%);
    transition: transform 1s ease;
}

header .dropdown-nav:hover .d-menu {
    transform: translateY(0);
}


header .dropdown-nav .d-menu .d-menu-cont {
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    background: rgb(245, 245, 245);

}

header .dropdown-nav .d-menu .d-menu-cont::-webkit-scrollbar {
    display: none;
    /* Chrome / Safari */
}

/* header .dropdown-nav:hover .d-menu {
    transform: scaleY(1);
    opacity: 1;
} */
header .dropdown-nav .d-menu .col-sm-3 {
    background-repeat: no-repeat;
    background-position: 80% bottom;
}


header .dropdown-nav .d-menu>div {
    padding: 3rem 0;


}


header .dropdown-nav .d-menu .m a {
    opacity: 100%;
    display: block;
    padding: 0.3rem 0;
}

header .dropdown-nav .d-menu .items {
    display: flex;
    gap: 2rem;
}

header .dropdown-nav .d-menu .items .item {
    opacity: 100%;
    font-size: 14px;
}

header .dropdown-nav .d-menu .items .item img {
    width: 180px;
    transition: scale 1s ease;
}

header .dropdown-nav .d-menu .items .item:hover img {
    scale: 0.95;
}

header .dropdown-nav .d-menu .items .item span {
    display: block;
    margin-top: 4px;
}

header.bg {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

}

header.shadow {
    box-shadow: 0px 0px 10px rgba(19, 19, 19, 0.1);

}

.header-fixed {
    z-index: 999;
    left: 0;
    right: 0;
}

header .logo {
    display: inline-block;
    height: 40px;
    width: 120px;
    background-image: url('../img/logo.svg');
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

header .menu a {
    opacity: 50%;
    letter-spacing: 2px;
    font-size: 1rem !important;
    transition: opacity 0.5s ease-in;
}

header .dropdown-nav,
header .menu a {
    padding: 1.5rem 0;

}

header .menu a.active {
    opacity: 100%;
}

header .menu a:hover {
    opacity: 100%;
}

header .nav a,
header .nav .btn {
    font-size: 14px;
}






footer {
    background: #d9d9d931;
}

footer .menu {
    padding: 3rem;
}

footer .menu .title {
    display: block;
    font-size: 14px;
    opacity: 50%;
}

footer .menu a {
    display: block;
    padding: 10px 0px;
    font-size: 14px;
}

footer hr,
footer .border-end,
footer.border-top {
    border-color: #ccc !important;
    opacity: 100% !important;
}

footer .bottom a {
    padding: 10px;
    display: block;
    font-size: 14px;
    opacity: 50%;
}

footer .bottom a:hover {
    opacity: 100%;
}

footer .bottom .copyright {
    font-size: 14px;
    opacity: 50%;
}

footer .bottom .copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .subscribe {
    padding: 3rem;
}

footer .subscribe .title {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

footer .subscribe p {
    font-size: 12px;
    opacity: 50%;
    padding: 1rem 0;
}

footer .subscribe form {
    display: flex;
}

footer .subscribe form input {
    background-color: transparent;
    border-radius: 0;
    border-width: 0;
    border-bottom: solid 1px #ccc;
}

footer .subscribe .text {
    font-size: 12px;
    padding-top: 0.5rem;
}

.hexagon {
    position: relative;
    width: 80px;
    height: 46.19px;
    background-color: #ffffff;
}

.hexagon::before {
    bottom: 100%;
    border-bottom: 23.09px solid #ffffff;
    left: 0;
    content: "";
    position: absolute;
    width: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
}

.hexagon::after {
    top: 100%;
    left: 0;
    width: 0;
    border-top: 23.09px solid #ffffff;
    content: "";
    position: absolute;
    width: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
}

.hexagon-dark {
    background-color: var(--bs-primary);
}

.hexagon-dark::before {
    border-bottom-color: var(--bs-primary);

}

.hexagon-dark::after {
    border-top-color: var(--bs-primary);
}

.hexagon-accent {
    background-color: var(--bs-accent);
}

.hexagon-accent::before {
    border-bottom-color: var(--bs-accent);

}

.hexagon-accent::after {
    border-top-color: var(--bs-accent);
}

section {
    padding: 3rem 0;
}

.main-title {
    border-bottom: solid 2px var(--bs-accent);
    display: inline-block;
    padding: 1rem;
    margin-bottom: 2rem;
}

.title-container {
    width: 70%;
    display: inline-block;
}

.stars .s {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-size: 100%;
    background-image: url('../img/icons/star.svg');
    background-repeat: no-repeat;
}

.stars .active {
    background-image: url('../img/icons/star_active.svg');

}

.testimonial-container .item {
    position: relative;
}

.testimonial-container .item::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('../img/icons/quote.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    right: 0%;
    top: 0;
    opacity: 5%;
}

.home-contact-us-from {
    width: 70%;
    display: inline-block;
}

.home-contact-us-from select,
.home-contact-us-from input,
.home-contact-us-from textarea {
    background-color: white !important;
}

.home-contact-container {
    background-color: white;
}
.solution-container .item .logo{
    height: 40px;
    margin-bottom: 1rem;
    width: auto !important;
}
.solution-container .img-right{float: right;margin-left: 3rem;
width: 50%;}
.solution-container .img-left{float: left;margin-right: 3rem;
width: 50%;}
.product-banner{overflow: hidden;padding-top: 6rem;}
.product-banner .logo{height: 50px;margin-bottom: 1rem;}
.product-banner .img{width: 150%;}