
@keyframes pulse-animation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.contactUsStickyMainBox{
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
}

.contactUsStickyBtn{
    width: 70px;
    height: 70px;
    background-color: #c4956a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.contactUsStickyBtn::before,
.contactUsStickyBtn::after{
    content: '';
    width: 84px;
    height: 84px;
    border-radius: 50px;
    position: absolute;
    left: -7px;
    top: -7px;
    z-index: -1;
    background-color: #c4956a;
    transform: scale(0);
    animation: pulse-animation 2s infinite;
}

.contactUsStickyBtn::after{
    animation-delay: .5s;
}

.contactUsStickyBtnStep1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .4s ease;
}

.contactUsStickyBtn svg{
    width: 24px;
    height: 24px;
}

.contactUsStickyBtn  p{
    font-weight: 100;
    font-size: 12px;
    color: #fff;
    margin-top: 2.5px;
    margin-bottom: 0;
}

.contactUsStickyBtnStep2{
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    transition: all .4s ease;
}

.contactUsStickyBtn.showStep2 .contactUsStickyBtnStep1{
    display: none;
}

.contactUsStickyBtn.showStep2 .contactUsStickyBtnStep2{
    display: flex;
}

.contactUsStickyList{
    width: 250px;
    background-color: #fff;
    position: absolute;
    top: -10px;
    transform: translateY(0%);
    border-radius: 7px;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease;
    padding: 10px 0;
}

.contactUsStickyList::before{
    content: '';
    position: absolute;
    bottom: -7px;
    right: 25px;
    left: auto;
    display: inline-block !important;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
}

.contactUsStickyList.show{
    transform: translateY(-100%);
    visibility: visible;
    opacity: 1;   
}

.contactUsStickyList > a{
    color: #000;
}

.contactUsStickyList > a:not(:last-child) >.contactUsStickyCard{
    margin-bottom: 5px;
} 

.contactUsStickyCard{
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s ease;
    padding: 10px;
}

.contactUsStickyCard:hover{
    background-color: #f0f0f0;
}

.contactUsStickyCardImage{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1680CA;
}

.contactUsStickyCardImage > svg,
.contactUsStickyCardImage > img{
    width: 24px;
}

/* Areas */

.showAreaMainBox{
    margin: 25px 0;
}

.showAreaMainHeader{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 25px;
}

.showAreaMainBody{
    padding: 0 15px;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Areas (END) */

/* Header */

.showContactModalBox{
    width: 379px;
    display: none;
    position: absolute;
    top: 40px;
    right: -178px;
    background-color: rgb(24 24 24);
    border-radius: 4px;
    box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
    overflow: hidden;
}

.SCM-card{
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    transition: all .4s ease;
    padding: 7px;
}

.SCM-card:hover{
    background-color: rgba(0, 0, 0, .1);
}

.showContactModalBox > a:not(:last-child){
    display: block;
    border-bottom: 1px solid #ccc;
    /* margin-bottom: 10px; */
}

.SCM-cardTitle{
    text-align: right;
}

.SCM-cardNum{
    text-align: left;
}

/* Header (END) */

.showMobileBottomMenu{
    width: 100%;
    height: 70px;
    display: none;
    align-items: center;
    background-color:#a53636;
    color: #fff;
    position: fixed;
    bottom: 0;
    z-index: 1078;
    padding: 10px;
}

.showMobileBottomMenu > a{
    width: calc(100% / 3);
    height: 100%;
    display: grid;
    place-items: center;
    color: #fff;
}

.showMobileBottomMenu > a:nth-child(2){
    border-right: 1px dashed #fff;
    border-left: 1px dashed #fff;
}

@media screen and (min-width:1450px) {
    .container{
        width: 80% !important;
        max-width: 1920px !important;
    }
}

@media screen and (max-width:999px) {
    
    .unit-spacing-lg{
        margin-left: 0 !important;
    }
    
    .list-classic .unit-left{
        margin-right: auto;
        margin-left: auto;
    }

    .aboutUsHomeBtn{
        width: 100%;
        white-space: unset;
    }

    .showContactModalBox{
        width: 231%;
        right: -102px;
    }


    #mainMenu ul li ul{
        position: static !important;
    }

    /* .contactUsStickyMainBox{
        display: none;
    } */

    .showMobileBottomMenu{
        display: flex;
    }

}

@media screen and (max-width:480px) {
    
    .aboutUsHomeBtn{
        width: 100%;
        white-space: unset !important;
    }

}