/* Footer */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

.footer-section-main {
    background: #183953;
    padding: 50px 0 29px;
}
.footer-section-main .compare-hd {
    text-align: center;
    font: 600 32px/100% "Ubuntu", sans-serif;
    color: #ffffff;
    padding-bottom: 31px;
    margin: 0;
    max-width: 100%;
}
.footer-section-main .compare-hd .compare-sub-title {
    color: #f8941d;
}
.footer-section-main .plannin-row {
    margin-bottom: 37px;
}
.footer-section-main .mony-box {
    background: #ffffff;
    border-radius: 10px;
    height: 100%;
    padding: 22px;
}
.footer-section-main .mony-box .socail-icon {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    margin-bottom: 12px;
}
.footer-section-main .pr-title {
    font: 600 20px/100% "Ubuntu", sans-serif;
    color: #f8941d;
    padding-bottom: 10px;
    margin: 0;
}
.footer-section-main .pr-sub-title {
    font: 400 16px/20px "Ubuntu", sans-serif;
    color: #000000;
}
.join-now-button {
    padding: 9px 24px;
    background: #f8941d;
    border-radius: 5px;
    color: #ffffff;
    border: 1px solid #f8941d;
    font: 500 14px/20px "Ubuntu", sans-serif;
    margin-top: 11px;
    transition: all 0.8s ease-in-out;
    display: inline-block;
}
.join-now-button:hover {
    background: transparent;
    color: #f8941d;
}
.footer-section-main .footer-blog {
    border: 0.75px solid #ffffff4d;
    border-left: 0;
    border-right: 0;
    padding: 30px 0 16px;
}
.footer-section-main .logo-with-select-country {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}
.footer-section-main .f-hd {
    color: #f8941d;
    font: 500 18px/30px "Ubuntu", sans-serif;
    padding-bottom: 16px;
    display: block;
    text-transform: uppercase;
}
.footer-section-main ul {
    margin: 0;
}
.footer-section-main .nav-menu-footer .nav-link,
.footer-section-main .adrs-hd {
    font: 400 15px/30px "Ubuntu", sans-serif;
    display: inline-block;
    padding: 0;
    color: #ffffff;
}
.footer-section-main .copyright-with-social-media {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-section-main .social-media {
    display: flex;
    align-items: center;
    gap: 9px;
}
.footer-section-main .soc-list {
    gap: 9px;
}
.footer-section-main .logo-footer {
    width: 159px;
    height: 71px;
}

/* Custom DropDown */
.custom-select {
    position: relative;
    width: 100%;
    border: 0.6px solid #ffffff;
    border-radius: 8px;
    background: #ffffff;
}
.custom-select.open {
    border: 0.6px solid #00000080;
    border-radius: 8px 8px 0 0;
}
.select-country-dropdown .form-group {
    position: relative;
    border-bottom: 0;
}

.form-step-input {
    padding: 13px 34px 13px 13px;
    border: none;
    max-width: 100%;
    border-radius: 7px;
    font: 400 15px / 100% "Inter", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-section-main .country-icon {
    width: 18px;
    height: 18px;
}

.form-step-input::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 14px;
    transition: transform 0.3s ease;
    pointer-events: none;
    background: url(/assets/frontend/images/drop-down.svg);
    width: 11px;
    height: 6px;
}

.custom-select.open .form-step-input::after {
    transform: translateY(-50%) rotate(180deg);
}

.options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    list-style: none;
    padding: 0;
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.custom-select.open .options {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}

.options li {
    padding: 10px;
    cursor: pointer;
    font: 400 16px / 20px "Ubuntu", sans-serif;
    font-size: 16px;
    border-bottom: 1px solid #00000050;
}
.options li:last-child {
    border-bottom: none;
}

.options li:hover {
    background: #e0790024;
    color: #000000;
}
.options li.selected-option {
    background: #e07900;
    color: #ffffff;
    border-bottom: 1px solid #e07900;
}

/* Responsive */
@media (max-width: 575px) {
    .footer-section-main {
        padding: 24px 15px;
    }
    .footer-section-main .compare-hd {
        font: 600 20px/100% "Ubuntu", sans-serif;
        padding-bottom: 16px;
    }
    .footer-section-main .mony-box {
        height: auto;
        margin-bottom: 20px;
    }
    .footer-section-main .logo-footer {
        width: 103px;
        height: 45px;
    }
    .form-step-input {
        padding: 8px 21px 8px 13px;
        border: none;
        max-width: 100%;
        border-radius: 7px;
        font: 400 12px / 100% "Inter", sans-serif;
    }
    .footer-section-main .country-icon {
        width: 12px;
        height: 12px;
    }
    .footer-section-main .copyright-with-social-media {
        flex-direction: column;
        gap: 10px;
    }
    .copy-right {
        width: 100%;
    }
    .footer-section-main .social-media {
        width: 100%;
    }
}
