/* solution-demo */
.solution-demo{
    position: relative;
}
.solution-demo-single{
    border: 1px solid #2486F21A;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: 0.3s;
}
.solution-demo-single:hover{
    box-shadow: 0px 30px 58px 0px rgba(0, 10.999999999999996, 40, .05);
}
.solution-demo-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.solution-demo-icon img{
    width: 100%;
    height: 100%;
}
.solution-demo-content p{
    margin: 10px 0 20px;
}
.solution-demo-btn .theme-btn {
    font-size: 15px;
    padding: 8px 22px;
    border-radius: 30px;
}

/* solution-demo */
.text-warning,
.color {
    color: #f6a200 !important;
}
.text-warning {
    --bs-text-opacity: 1;
    color: #FF9800 !important;
}
.color-pastel-red{
    color: #F76B6A !important;
}
.color-bg-pastel-red{
    background-color: #F76B6A !important;
}
.color-dark-orange{
    color: #FE8D00 !important;
}
.color-bg-dark-orange{
    background-color: #FE8D00 !important;
}
.color-outrageous-orange{
    color: #FE6A44 !important;
}
.color-bg-outrageous-orange{
    background-color: #FE6A44 !important;
}
.color-heliotrope{
    color: #DB6DFF !important;
}
.color-bg-heliotrope{
    background-color: #DB6DFF !important;
}
.color-Malachite{
    color: #09cc71 !important;
}
.color-bg-Malachite{
    background-color: #09cc71 !important;
}
.color-Blue-Bolt{
    color: #0cb1ff !important;
}
.color-bg-Blue-Bolt{
    background-color: #0cb1ff !important;
}
.color-Brandeis-Blue{
    color: #046BEE !important;
}
.color-bg-Brandeis-Blue{
    background-color: #046BEE !important;
}


.step .step-content {
    /*margin-top: -40px;*/
}

/*----------------------------------------------
Easy Contact Start
----------------------------------------------*/
.easy-contact {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 999;
    padding-top: 45px;
}

.easy-contact:hover .close-btn {
    visibility: visible;
    opacity: 1;
}

.easy-contact ul li:hover a {
    display: flex;
    gap: 15px;
}

.easy-contact .close-btn {
    position: absolute;
    top: 0;
    right: 20px;
    background: #000;
    border: 1px solid #2e8af3;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    mix-blend-mode: exclusion;
    transition: all 200ms ease-in-out;
    cursor: pointer;
}

@media (min-width: 576px) {
    .easy-contact .close-btn {
        visibility: hidden;
        opacity: 0;
        transition: all 200ms ease-in-out;
    }
}

.easy-contact .close-btn i {
    color: #fff;
}

.easy-contact ul {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    list-style: none;
}

.easy-contact ul li {
    margin-bottom: 10px;
    transition: all 200ms ease-in-out;
}

.jump-ami {
    animation: comeFromRight 0.6s ease forwards;
    opacity: 0;
    transform: translateY(-120px);
}

.easy-contact ul li:nth-child(1) {
    animation-delay: 1s;
}

.easy-contact ul li:nth-child(2) {
    animation-delay: 0.6s;
}

.easy-contact ul li:nth-child(3) {
    animation-delay: 0.2s;
}

.easy-contact ul li:last-child {
    margin-bottom: 0;
}

.easy-contact ul li a {
    background: linear-gradient(90deg, #c7cdf9 0%, #fad5d9 100%);
    border-radius: 40px 0 0 40px;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    padding: 5px 13px 5px 5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.contact-two {
    background: #000 !important;
    color: #fff !important;
}

.contact-three {
    background: linear-gradient(90deg, #2e8af3 0%, #8754e6 100%) !important;
    color: #fff !important;
}

.easy-contact ul li a span {
    background: #ffffff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.sm-icon {
    width: 50px;
    height: 50px;
    background: #8754e6;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 999;
}

@media (min-width: 576px) {
    .sm-icon {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .easy-contact {
        display: none;
        bottom: 40px;
    }
}

/* Hover show */
.sm-icon:hover + .easy-contact {
    display: block;
}

/* Mobile */
@media (min-width: 576px) {
    .easy-contact {
        visibility: visible;
    }
}

/* Desktop */
@media (min-width: 576px) {
    .sm-icon {
        display: none;
    }
}

@keyframes comeFromRight {
    0% {
        transform: translateX(120px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.sm-icon svg {
    animation: tossing 1.5s ease-in-out infinite;
}

@keyframes tossing {
    0%   { transform: rotate(0deg) translateY(0); }
    25%  { transform: rotate(-8deg) translateY(-2px); }
    50%  { transform: rotate(8deg) translateY(2px); }
    75%  { transform: rotate(-6deg) translateY(-1px); }
    100% { transform: rotate(0deg) translateY(0); }
}

/*----------------------------------------------
Easy Contact End
----------------------------------------------*/
