/* 导入通用样式 */
@import url('common.css');
/* 横幅样式*/
.geo-cta {
    background: linear-gradient(135deg, rgba(0, 98, 255, 0.39), rgba(27, 209, 255, 0.3));
    border-radius: 10px;
    padding: clamp(20px, 6vw, 30px);
    color: #fff;
    position: relative;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}
.geo-cta:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.geo-cta::after {
    content: "";
    position: absolute;
    inset: 10%;
    width: 30%;
    height: 200%;
    left: -110%;
    background: rgba(255,255,255,0.7);
    filter: blur(90px);
    transform: skewX(-20deg);
    transition: left 1s ease;
}
.geo-cta:hover::after{
    left: 110%;
}
.geo-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.geo-cta h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    /*font-weight: 700;*/
}

.geo-cta p {
    color: rgba(255, 255, 255,1);
    /*max-width: 640px;*/
    margin: 1rem auto 2rem;
}

.geo-cta .btn {
    border-radius: 10px;
    padding: 0.5rem 1.75rem;
    /*font-weight: 600;*/
    margin: 0 0.5rem;
    color: white;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
}
.geo-cta .btn:hover{
    background: white;
    color: var(--primary-color);
}
/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 2rem;
    padding-left: 3%;
    padding-right: 3%;
    /* padding-bottom: 1rem; */
}

footer h3 {
    color: var(--text);
}

footer ul li {
    margin-bottom: 20px;

    & a {
        color: var(--footer-text-color);
        /* 灰色文本 */
    }

    & span {
        color: var(--footer-text-color);
        /* 灰色文本 */
    }
}
footer ul li a:hover{
    color: var(--primary-color);
}
footer p ,footer ul li a:focus, footer ul li a:active{
    color: var(--footer-text-color);
}

footer span,
footer .beian{
    color: var(--footer-text-color)!important;
}
.beian:hover{
    color: var(--primary-color)!important;
}
footer .space-y-3 .fa:before {
    margin-right: 10px;
}

footer .text-primary {
    color: white !important;
}

footer ul {
    margin-bottom: 0;
}

/* Footer first row column widths */
footer .container>.row:first-child>div:first-child {
    width: 30%;
    margin-right: 5%;
}

footer .container>.row:first-child>div:nth-child(2) {
    width: 15%;
    margin-right: 5%;
}

footer .container>.row:first-child>div:nth-child(3) {
    width: 15%;
    margin-right: 5%;
}

footer .container>.row:first-child>div:last-child {
    width: 25%;
}

footer .container .border-t .row .col-md-6 .d-flex {
    flex-direction: row;
    justify-content: flex-end;

    & a {
        color: var(--text);
    }

    & a:hover {
        color: var(--primary-color);
    }
}
#contact .display-6,
#contact .text-lg{
    text-align: center;
}

.fluentform .ff_submit_btn_wrapper.ff-el-group{
    margin-bottom: 0 !important;
}
.frm-fluent-form .choices[data-type*=select-multiple] .choices__input{
    padding: 9px 15px !important;
    border-radius: 10px !important;
}
.frm-fluent-form .choices__inner{
    background-color: var(--base-2) !important;
    border-radius: 10px !important;
}
.frm-fluent-form .choices[data-type*=select-multiple] .choices__inner{
    padding: 0 !important;
}
.frm-fluent-form .choices[data-type*=select-multiple] .choices__input:focus{
    background-color: white !important;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);

    transform: translateY(-3px);
}

@media(min-width: 992px){
    .width650 {
        width: 650px;
    }
    /*#contactModal{*/
    /*    display: flex !important;*/
    /*    flex-direction: column !important;*/
    /*    justify-content: center !important;*/
    /*    place-content: center !important;*/
    /*    align-items: center !important;*/
    /*}*/
    #contactModal .modal-dialog{
        margin: 2.5rem auto;
    }
}