.fixed-button a svg {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    width: 18px;
    height: 18px;
    padding: 20px;
    border-radius: 50%;
    background-color: #f4c542;
    color: #000;
    border: 1px solid #fff;
    animation: btnAnime 1s infinite alternate;

}

.fixed-button .btn-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    background-color: #f4c542;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 18px;
    animation: btnBoxShadow 0.8s infinite alternate;
    border: 1px solid #fff;
}

@keyframes btnBoxShadow {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes btnAnime {
    0% {
        transform: scale(.9) rotate(0);
    }

    50% {
        transform: scale(1.1) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}


footer {
    position: relative;
}

footer .top-footer {
    position: relative;
    padding: 30px;
    background-color: #282f34;
}

footer .top-footer p {
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    font-family: 'Raleway', sans-serif;
    font-style: italic;

}

footer .top-footer p span {
    color: #f4c542;
    font-weight: 700;
}

footer .top-footer .social {
    text-align: end;
}

footer .top-footer .social svg {
    width: 18px;
    height: 18px;
    padding: 10px;
    color: #fff;
    margin-right: 5px;
    background-color: #787878;
    border-radius: 50%;
    transition: all 0.4s;
}

footer .top-footer .social svg:hover {
    transform: scale(1.2);
    background-color: #f4c542;
    color: #000;
}

footer .main-footer {
    padding: 60px 0;
    background-color: #14171a;
    position: relative;
}

footer .main-footer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url(../img/dev-tours-travels.png) no-repeat;
    background-position: center;
    background-size: 500px;
    opacity: .07;
}

footer .main-footer h3 {
    color: #fff;
    font-weight: 700;
}

footer .main-footer span.tagline {
    color: #f4c542;
    text-transform: capitalize;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 14px;
    padding-left: 6px;
    border-left: 4px solid #f4c542;
}

footer .main-footer p.text {
    color: #ccc;
}

footer .main-footer h4 a {
    display: block;
    color: #f4c542;
    text-align: center;
    font-weight: 700;
    text-decoration: underline !important;
    transition: all 0.4s;
}

footer .main-footer h4 a:hover {
    transform: scale(1.1);
}

footer .main-footer h6 {
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

footer .main-footer h6::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46px;
    height: 3px;
    background-color: #f4c542;
    transition: all 0.3s;
    border-radius: 10px;
}

footer .main-footer .link-col:hover h6::before {
    width: 60px;
}

footer .main-footer .link-col li {
    position: relative;
}

footer .main-footer .link-col li a {
    color: #ccc;
    display: block;
    margin-bottom: 8px;
    position: relative;
    padding-left: 13px;
    transition: all 0.4s;
}

footer .main-footer .link-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s;
}

footer .main-footer .link-col li:hover a {

    transform: translateX(10px);
    color: #f4c542;
}

footer .main-footer .link-col li:hover::before {
    width: 12px;
    background-color: #f4c542;
}

footer .main-footer .contact-col li {
    position: relative;
}

footer .main-footer .contact-col li a {
    color: #ccc;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.4s;
    gap: 5px;
}

footer .main-footer .contact-col li a svg {
    width: 16px;
    height: 16px;
    padding: 8px;
    border-radius: 50%;
    background-color: #787878;
    color: #fff;
    transition: all 0.4s;

}

footer .main-footer .contact-col li:hover a {
    color: #f4c542;
}

footer .main-footer .contact-col li:hover a svg {
    background-color: #f4c542;
    color: #000;
}

footer .copyright {
    position: relative;
    background-color: #000;
    padding: 10px 0;
}

footer .copyright p {
    margin-bottom: 0;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    letter-spacing: 1px;
}

footer .copyright a {
    color: #fff;
    font-weight: 700;
}

footer .copyright a:hover {
    color: #f4c542;
}

@media (max-width:1200px) {
    footer .abt-col {
        margin-bottom: 30px;
    }
}

@media (max-width:992px) {
    footer .top-footer p {
        text-align: center;
        margin-bottom: 14px;
    }

    footer .top-footer .social {
        text-align: center;
    }

    footer .link-col {
        margin-bottom: 30px;
    }
}

@media (max-width:568px) {
    footer .main-footer::before {
        background-size: 300px;
        opacity: .08;
    }

    .fixed-button a svg {
        width: 16px;
        height: 16px;
        padding: 16px;

    }

    .fixed-button .btn-fixed {
        padding: 7px 20px;
        font-weight: 700;
        font-size: 16px;
    }

    footer .copyright {
        position: relative;
        background-color: #000;
        padding: 10px 0 80px;
    }
}