
.fixed-button{
    position: fixed;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(90deg);
    z-index: 998;
}

.fixed-button a{
    padding: 5px 20px;
    background-color: #003d20;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid #fff;
    display: inline-block;
    animation: headShake 1s infinite;
    opacity: .7;
    transition: all 0.4s;
}
.fixed-button a:hover{
    opacity: 1;
}

.fixed-contact-btn{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}  
.fixed-contact-btn a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* font-size: 20px; */
    font-weight: 700;
    justify-content: center;
    width: 50%;
    text-align: center;
    padding: 14px 20px;
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
}
.fixed-contact-btn a:nth-child(2n){
    background-color: #003d20;
    color: #fff;
}
@media (max-width:768px){
    .fixed-contact-btn{
        display: flex;
    }
}
footer{
    position: relative;
}
footer .top-footer{
    background-color: #000;
    padding: 70px 0;
}
footer .top-footer .brand img{
    width: 240px;
    padding: 3px;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 20px;
}
footer .top-footer p.text{
    color: #F5F3E7;
    font-size: 18px;
    margin-bottom: 20px;
}
footer .top-footer .social svg{
    width: 18px;
    height: 18px;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #F5F3E7;
    color: #F5F3E7;
    margin-right: 4px;
    transition: all 0.4s;
}
footer .top-footer .social svg:hover{
    background-color: #F5F3E7;
    color: #003d20;
}
footer .top-footer h6{
    color: #F5F3E7;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}
footer .top-footer h6::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #F5F3E7;
}
footer .top-footer ul li a{
    display: block;
    margin-bottom: 16px;
    color: #F5F3E7;
    font-size: 18px;
}
footer .top-footer .contact-col a{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #F5F3E7;
    margin-bottom: 20px;
    font-size: 18px;
}
footer .top-footer .contact-col a svg{
    width: 16px;
    height: 16px;
    padding: 6px;
    background-color: #F5F3E7;
    color: #003d20;
    border-radius: 4px;
}
footer .top-footer .disclaimer{
    border: 1px solid rgba(255,255,255,0.3);
    margin-top: 40px;
    padding: 20px;
    border-radius: 4px;
}
footer .top-footer .disclaimer p{
    position: relative;
    font-size: 18px;
}
footer .top-footer .disclaimer p span{
    display: inline-block;
    padding: 4px 10px;
    background-color: #F5F3E7;
    color: #003d20;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 7px;
}
footer .copyright{
    background-color: #003d20;
    padding: 10px 0;
}
footer .copyright p{
    text-align:center;
    margin-bottom: 0;
    color: #F5F3E7;
}
footer .copyright p a{
    color: #fff;
    font-weight: 600;
}


@media (max-width:992px){
    footer .about-col{
        margin-bottom: 30px;
    }
}
