footer {
    width: 100%;
    background: #1e434b;
    position: relative;
    margin-top: 50px;
    /* padding-bottom: 50px; */
    padding-top: 20px;
    /* background-color: rgb(52, 74, 96); */
}

footer::before {
    top: 0px;
    transform: translateY(-100%) rotate(180deg);
}

footer::before {
    content: "";
    position: absolute;
    right: 0px;
    left: 0px;
    z-index: 1;
    display: block;
    height: 50px;
    background-size: 50px 100%;
    background-image: linear-gradient(135deg, #1e434b 25%, transparent 25%), linear-gradient(225deg, #1e434b 25%, transparent 25%);
    background-position: 0px 0px;
}

footer .footer-overlay {
    /* min-height: 350px; */
    width: 100%;
    height: 100%;
    background: url(../images/background/footer-overlay-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 50px 50px 50px;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/*  */

.footer-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.footer-container .footer-item {
    flex: 1;
}

.footer-container .footer-item-1 img {
    height: 45px;
    width: auto;
    margin-bottom: 10px;
}

.footer-container .footer-item p {
    color: #fff;
    margin-bottom: 0px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.footer-container .footer-item p a {
    color: #fff;
    flex: 1;
    font-size: 13px;
}

.footer-container .footer-item p span {
    width: 26px;
    height: 26px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.footer-container .footer-item p span i {
    font-size: 14px;
}

.footer-container .footer-item h3 {
    color: #fff;
    text-transform: uppercase;
    font-family: var(--poppins-font);
    font-size: 21px;
    font-weight: 500;
    width: fit-content;
    position: relative;
    margin-bottom: 20px;
}

.footer-container .footer-item h3::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--secondary-color);
    left: 0;
    bottom: -5px;
}

.footer-container .footer-item h3::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    left: 15px;
    bottom: -5px;
}

.footer-container .footer-item ul {
    padding-left: 0px;
    margin-bottom: 0px;
    list-style-type: none;
}

.footer-container .footer-item ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px
}

.footer-container .footer-item.footer-item-4 ul li {
    padding-left: 0px;
}

.footer-container .footer-item ul li::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.4s all ease-in-out;
}

.footer-container .footer-item ul li::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: 0.4s all ease-in-out;
}

.footer-container .footer-item ul li:hover:after {
    left: 5px;
}

.footer-container .footer-item ul li a {
    color: #fff;
    font-size: 17px;
}

.footer-container .footer-item ul li:hover a {
    color: var(--secondary-color);
}

.footer-container .footer-item.footer-item-4 ul li::after,
.footer-container .footer-item.footer-item-4 ul li::before {
    content: none;
}

.footer-item-4 ul {
    position: relative;
    display: flex;
    transform-style: preserve-3d;
    gap: 15px;
    margin-top: 40px;
}

.footer-item-4 ul li {
    list-style: none;
    width: 45px;
    height: 45px;
    margin: 0px;
}

.footer-item-4 ul li:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -5px;
    width: 100%;
    height: 10px;
    background: #2a2a2a;
    trnasform-origin: top;
    transform: skewX(-41deg);
}

.footer-item-4 ul li:after {
    content: '';
    position: absolute;
    top: 5px;
    left: -9px;
    width: 9px;
    height: 100%;
    background: #2a2a2a;
    trnasform-origin: right;
    transform: skewY(-49deg);
}

.footer-item-4 ul li span {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    background: var(--secondary-color);
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 21px !important;
    transition: 1.5s ease-out;
}

.footer-item-4 ul li:hover span {
    z-index: 1000;
    transition: .3s;
    color: #fff;
    box-shadw: -1px 1px 1px rgba(0, 0, 0, .5);
}

.footer-item-4 ul li:hover span:nth-child(5) {
    transform: translate(20px, -20px);
    opacity: 1;
}

.footer-item-4 ul li:hover span:nth-child(4) {
    transform: translate(15px, -15px);
    opacity: .8;
}

.footer-item-4 ul li:hover span:nth-child(3) {
    transform: translate(10px, -10px);
    opacity: .6;
}

.footer-item-4 ul li:hover span:nth-child(2) {
    transform: translate(5px, -5px);
    opacity: .4;
}

.footer-item-4 ul li:hover span:nth-child(1) {
    transform: translate(0px, 0px);
    opacity: .2;
}

.footer-item-4 ul li:nth-child(1):hover span {
    background: #2e5894 !important;
}

.footer-item-4 ul li:nth-child(2):hover span {
    background: #40ade5 !important;
}

.footer-item-4 ul li:nth-child(3):hover span {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7) !important;
}

.footer-item-4 ul li:nth-child(4):hover span {
    background: red !important;
}

/*  */
.footer-item-4 {
    position: relative;
    font-size: 1rem;
    text-align: center;
    overflow: hidden;
}

.footer-social-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-container .btn {
    clear: both;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    border-radius: 5px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.35);
    margin: 2px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
    padding: 0px;
    width: calc(50% - 10px);
    background: #b8b8b8;
    height: 40px;
    font-family: var(--font-2);
    font-size: 13px;
    z-index: 100;
}

.footer-social-container .btn:hover {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.45);
}

.footer-social-container .btn:focus {
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
}

.footer-social-container .btn>span,
.footer-social-container .btn-icon>i {
    float: left;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    line-height: 1em;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social-container .btn>span {
    flex: 1;
    font-family: var(--font-2);
    color: #fff;
    border-radius: 0 5px 5px 0;
}

.footer-social-container .btn:focus>span {
    background: #9a9a9a;
}

.footer-social-container .btn-icon>i {
    border-radius: 5px 0 0 5px;
    position: relative;
    width: 35px;
    text-align: center;
    font-size: 1.25em;
    background: #fff;
}

.footer-social-container .btn-icon>i:after {
    content: "";
    border: 8px solid;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 13px;
    right: -15px;
}

.footer-social-container .btn-facebook {
    background: #3b5998;
}

.footer-social-container .btn-telegram {
    background: #229ED9;
}

.footer-social-container .btn-insta {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.footer-social-container .btn-youtube {
    background: red;
}

.footer-social-container .btn-facebook i {
    color: #3b5998;
}

.footer-social-container .btn-telegram i {
    color: #229ED9;
}

.footer-social-container .btn-insta i {
    color: #c13584;
}

.footer-social-container .btn-youtube i {
    color: red;
}

.footer-social-container .btn:hover span {
    display: none;
}

.footer-social-container .btn:hover i {
    width: 100%;
}

/*  */
.footer-bottom-menu {
    background: #14363e;
    padding: 13px 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 0 10px #00000082;
    border-top: 3px solid #d0ab72;
    z-index: 999;
    height: 75px;
}

.footer-bottom-menu ul {
    display: flex;
    flex-direction: row;
    padding-left: 0px;
    justify-content: space-between;
    list-style-type: none;
    margin-bottom: 0px;
    padding-left: 100px;
}

.footer-bottom-menu ul li a {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
    gap: 7px;
    height: 55px;
    justify-content: center;
}

.footer-bottom-menu ul li a.offers {
    background: #e6cb9f;
    padding: 2px;
    width: 55px;
    align-items: center;
    border-radius: 5px;
    gap: 3px;
    color: #14363e;
    font-weight: 600;
}

.footer-bottom-menu ul li a.offers i {
    font-size: 24px;
    color: #14363e;
}

.footer-bottom-menu ul li a i {
    font-size: 20px;
}

.footer-bottom-menu ul li a span {
    font-size: 14px;
}

footer .right-side-fixed-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(130px, -50%);
    z-index: 9999;
}

footer .right-side-fixed-container ul.social-media-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0px;
}

footer .right-side-fixed-container ul.social-media-list a {
    background: #fff;
    padding: 3px 20px 3px 10px;
    border-radius: 15px 0 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* transform: translateX(130px); */
    transition: 0.4s all ease-in-out;
    box-shadow: 0 0 10px #00000038;
    color: #333;
}

footer .right-side-fixed-container ul.social-media-list a:hover {
    /* transform: translateX(0); */
    transform: translateX(-130px);
}

footer .right-side-fixed-container ul.social-media-list a span {
    margin-top: -2px;
    font-size: 20px;
}

footer .right-side-fixed-container ul.social-media-list a.footer-wp span {
    color: #075E54;
}

footer .right-side-fixed-container ul.social-media-list a.footer-fb span {
    color: #1877F2;
}

footer .right-side-fixed-container ul.social-media-list a.footer-insta span {
    color: #C13584;
}

footer .right-side-fixed-container ul.social-media-list a.footer-twitter span {
    color: #00acee;
}

footer .right-side-fixed-container ul.social-media-list a.footer-youtube span {
    color: #f00;
}


/*  */
footer .left-side-fixed-container {
    position: fixed;
    left: 0;
    top: 50%;
    /* transform: translateY(-50%); */
    z-index: 9999;
    transform: translate(calc(-100% + 40px), -50%);
}

footer .left-side-fixed-container ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0px;
    margin-bottom: 0px;
}

footer .left-side-fixed-container ul li {
    background: #fff;
    padding: 5px 10px 3px 30px;
    border-radius: 0 15px 15px 0;
    /* transform: translateX(calc(-100% + 40px)); */
    transition: 0.4s all ease-in-out;
    box-shadow: 0 0 10px #00000038;
    z-index: 999;
}

footer .left-side-fixed-container ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #333;
}

footer .left-side-fixed-container ul li:hover {
    transform: translateX(calc(100% - 40px));
}

footer .left-side-fixed-container ul li span {
    width: 25px;
    height: 25px;
    color: #ff1f27;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-left: 10px;
    position: relative;
}

footer .left-side-fixed-container ul li span .fa-google-play {
    color: #088ff6;
}

footer .left-side-fixed-container ul li span .fa-whatsapp {
    color: green;
    font-size: 25px;
}

.footer-all-reserve-container {
    display: flex;
    flex-direction: row;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    padding: 5px;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-all-reserve-container p {
    margin-bottom: 0px;
    font-family: var(--font-1);
    font-size: 14px;
}

.footer-all-reserve-container img {
    height: 20px;
}

/*  */
.scroll-to-top {
    position: fixed;
    right: 9px;
    bottom: 20px;
    z-index: 9999;
}

.scrollToTopBtn {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(45deg, #14363e, #938149);
    color: #fff;
    position: relative;
}

.scrollToTopBtn::before {
    position: absolute;
    content: "";
    height: calc(100% + 16px);
    width: calc(100% + 16px);
    top: -8px;
    left: -8px;
    border-radius: 50%;
    background: #225460;
    animation: 1.5s linear 0s normal none infinite focuse;
}

.scrollToTopBtn::after {
    position: absolute;
    top: 50%;
    left: 100%;
    height: 2px;
    content: "";
    width: 100%;
    z-index: 0;
    animation: slide1 1s linear infinite;
}

.scrollToTopBtn i {
    z-index: 1;
}

@keyframes focuse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    75% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes slide1 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 0;
    }
}

.floating-whatsapp {
    position: fixed;
    left: 9px;
    bottom: 20px;
    z-index: 9999;
    background: #4fca5d;
    color: #fff;
    box-shadow: 0 0 10px #00000080;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
}