.footer-box{
    padding: 120px 40px 40px 40px;
    background: #ffffff;
}

.footer-box__main{
    display: flex;
    justify-content: space-between;
    gap: 2vw;
}

.footer-box__main-left{
    display: flex;
    gap: 3vw;
    flex-wrap: wrap;
}

.footer-box__main-left-col {

}

.footer-box__main-left-col p{
    color: #505050;
    font-size: 15px;
    font-weight: 300;
    padding: 0 0 20px 0;
    margin: 0;
}

.footer-box__main-left-col a{
    color: #505050;
    font-weight: 300;
    font-size: 18px;
    transition: all .2s;
    text-decoration: underline;
}

.footer-box__main-left-col a:hover{
    color:#aaaaaa;
}

.footer-box__main-left-col-logo{

}

.footer-box__main-left-col-links{
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

.footer-box__main-left-col-links a{
    text-decoration: none;
}

.footer-box__main-left-col-links svg path{
    fill: #505050;
    transition: all .2s;
}


.footer-box__main-left-col-links a:hover svg path{
    fill: #aaaaaa;
    transition: all .2s;
}

.footer-box__main-center{
    display: flex;
    gap: 3vw;
    flex-grow: 1;
    justify-content: space-evenly;
}

.footer-box__main-center-item{
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.footer-box__main-center-item a{
    font-size: 18px;
    font-weight: 300;
    color:#000000;
    transition: all .2s;
}

.footer-box__main-center-item a:hover{
    color:#aaaaaa;
}

.footer-box__main-right{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-box__main-right-item{
    display: flex;
    flex-direction: column;
}

.footer-box__main-right-item span{
    font-size: 15px;
}

.footer-box__main-right-item a{
    font-size: 18px;
    color:#505050;
    font-weight: 300;
    transition: all .2s;
    text-decoration: underline;
}

.footer-box__main-right-item a:hover{
    color:#aaaaaa;
}

.btn-footer-col{
    margin-top: 3rem;
}

.btn-footer{
    background: #F2F2F2;
    font-size: 14px !important;
    color: #303030 !important;
    text-decoration: none !important;
    padding: 0.9rem 1.3rem 0.9rem 1.7rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    border-radius: 40px;
    transition: all .2s;
    text-transform: uppercase;
}

.btn-footer:hover{
    background: #000000;
    color: #ffffff !important;
}

.btn-footer svg path{
    fill: #505050;
    transition: all .2s;
}

.btn-footer:hover svg path{
    fill: #ffffff;
}

.footer-box__bottom{
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    border-top: 1px solid rgb(217, 217, 217);
    padding: 2rem 0 0 0;
    margin-top: 6rem;
}

.footer-box__bottom * {
    font-size: 14px;
    font-weight: 300;
    color: #505050;
}

.footer-box__bottom-left{
    display: flex;
    gap: 3vw;
    min-width: 37.5vw;
}

.footer-box__bottom-center {
    display: flex;
    gap: 10%;
    flex-grow: 3;
}

.footer-box__bottom-center a{

}

.footer-box__bottom-center a:hover,
.footer-box__bottom-right a:hover{
    color:#aaaaaa;
}

.footer-box__bottom-right{

}

.footer-box__bottom-right a{
    font-weight: 500;
}

.btn-up{
    display: flex;
    background: #ededed;
    width: fit-content;
    padding: 0.7rem;
    position: fixed;
    bottom: 5.9rem;
    z-index: 3;
    right: 2rem;
    transition: all .2s;
    cursor: pointer;
    opacity: 0;
}

.btn-up:hover{
    background: #000000;
}

.btn-up:hover svg path{
    fill: #ffffff;
}

.btn-calendar{
    background: linear-gradient(159deg, #282828 -2.97%, #000000 65.51%);
    width: fit-content;
    display: flex;
    position: fixed;
    bottom: 5.9rem;
    left: 3rem;
    padding: 1rem 1rem 1rem 1.1rem;
    z-index: 3;
    transition: all .3s;
    border-radius: 40px;
    justify-content: center;
    animation: pulse 2s infinite;
    opacity: 0;
}

.btn-calendar svg{
    width: 37px;
    height: 37px;
}

.btn-calendar svg path{
    fill: #ffffff;
}

.btn-calendar:hover{
    background: linear-gradient(143deg, #1c1c1c -2.97%, #000000 65.51%);
    animation: none;
    transition: all .3s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 79, 76, 0.5);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(1, 79, 26, 0);
    }
}




@media only screen and (max-width: 767px){
    .btn-calendar{
        left: 2rem;
        padding: .8rem .8rem .8rem .9rem;
    }

    .btn-calendar svg{
        width: 30px;
        height: 30px;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(1, 79, 76, 0.5);
        }
        100% {
            box-shadow: 0 0 0 15px rgba(1, 79, 26, 0);
        }
    }
}

@media only screen and (max-width: 991px) {
    .footer-box__main-center-item a {
        font-size: 15px;
    }

    .footer-box__main-left-col p {
        font-size: 13px;
    }

    .footer-box__main-left-col-links {
        margin-top: 1rem;
    }

    .footer-box__main-left {
        flex: 2;
        gap: 2vw;
    }

    .btn-footer-col {
        margin-top: 2.2rem;
    }

    .footer-box__main-center{
        gap: 2vw;
    }

    .footer-box__main {
        gap: 3vw;
    }

    .footer-box__main-right-item span {
        font-size: 14px;
    }

    .footer-box__main-right-item a {
        font-size: 15px;
    }

    .footer-box__bottom-left {
        gap: 2vw;
        min-width: 27vw;
    }

    .footer-box__bottom-center {
        gap: 0;
        flex-grow: 2;
        justify-content: space-evenly;
    }

    .footer-box__bottom {
        gap: 1vw;
        padding: 2rem 0 0 0;
        margin-top: 4rem;
    }

    .footer-box__bottom * {
        font-size: 13px;
    }

}

@media only screen and (max-width: 767px) {
    .footer-box__main {
        gap: 14vw;
        flex-direction: column;
    }

    .footer-box {
        padding: 80px 30px 30px 30px;
    }

    .footer-box__main-center {
        gap: 16vw;
        justify-content: flex-start;
    }

    .footer-box__main-center-item a,
    .footer-box__main-right-item a{
        font-size: 16px;
    }

    .footer-box__main-left-col a {
        font-size: 16px;
    }

    .footer-box__main-left {
        flex: 2;
        gap: 6vw;
    }

    .footer-box__main-left-col-links {
        margin-top: 2rem;
        gap: 3rem;
    }

    .footer-box__bottom * {
        font-size: 13px;
        justify-content: flex-start;
        gap: 2rem;
        flex-direction: column;
    }

    .footer-box__bottom {
        margin-top: 5rem;
        flex-direction: column;
        gap: 2rem;
    }

    .btn-footer{
        background: #000000;
        color: #ffffff !important;
    }

    .btn-footer:hover{
        background: #505050;
    }

    .btn-footer svg path {
        fill: #ffffff;
        transition: all .2s;
    }

    .btn-up {
        bottom: 2rem;
    }

    .btn-calendar{
        bottom: 2rem;
    }

    .popmake-close{
        display: flex;
        align-self: center;
        align-items: center;
        justify-content: center;
        height: 40px !important;
        width: 40px !important;
        font-family: "Poppins", sans-serif !important;
    }

}