* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.part {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.part-title {
    font-weight: bold;
    font-size: 36px;
    color: #1E3A5F;
    text-align: center;
    padding: 20px 0 40px 0;
    margin-bottom: 20px;
}

.part1 {
    background-color: #ffffff;
}

.part1 .content {
    position: relative;
    margin-top: 0;
}

.part1 .relation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.part1 .relation img {
    display: block;
    width: 300px;
    height: 285px;
}

.part1 .desc {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    bottom: 0;
    color: #1E3A5F;
}

.part1 .desc h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1E3A5F;
    font-weight: 600;
}

.part1 .desc p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.part1 .desc .desc-row {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.part1 .desc .desc-row .desc-item {
    flex: 1;
    padding: 20px;
    transition: all 0.3s ease;

}

.part1 .desc .desc-row .desc-item:hover {
    transform: translateY(-2px);
}

.part1 .desc .desc-row .desc-item:nth-child(1) {
    text-align: right;
    margin-right: 10px;
}

.part1 .desc .desc-row .desc-item:nth-child(3) {
    text-align: left;
    margin-left: 10px;
}

.part1 .desc .desc-row .sep {
    width: 220px;
    margin: 0 20px;
    text-align: center;
    flex-shrink: 0;
}

.part1 .desc .row1,
.part1 .desc .row2,
.part1 .desc .row3 {
    margin-top: 0;
}

.part1 .desc .row2 .sep {
    width: 340px;
}


.part2 .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 0;
}

/* 在中等屏幕上显示2列 */
@media (max-width: 1100px) {
    .part2 .content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 在小屏幕上显示1列 */
@media (max-width: 650px) {
    .part2 .content {
        grid-template-columns: 1fr;
    }
}

.part2 .item {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.part2 .item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.15);
    border-color: #1E3A5F;
}

.part2 .item .title {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.part2 .item .title img {
    display: block;
    width: 60px;
    height: 60px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(28%) saturate(1945%) hue-rotate(206deg) brightness(95%) contrast(95%);
}

.part2 .item .title .h3 {
    font-weight: bold;
    font-size: 20px;
    color: #1E3A5F;
    margin: 0;
}

.part2 .item .desc {
    color: #333;
    padding: 0;
    line-height: 1.6;
}

.part2 .item .desc-d-title {
    font-size: 18px;
    margin-top: 15px;
    color: #1E3A5F;
    font-weight: 600;
    border-left: 3px solid #1E3A5F;
    padding-left: 10px;
}

.part2 .item .desc-title {
    font-size: 16px;
    margin-top: 15px;
    color: #1E3A5F;
    font-weight: 600;
}

.part2 .item .desc-content {
    font-size: 14px;
    margin-top: 8px;
    color: #666;
    line-height: 1.5;
}

.part2 .item .desc-row-title {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    color: #1E3A5F;
}

.part2 .item .desc-row {
    margin-top: 8px;
    padding-left: 15px;
}

.part2 .item .desc-row-content {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* 响应式设计 - 移动端适配 */
@media (max-width: 768px) {

    /* Part1 移动端适配 */
    .part {
        max-width: 100%;
        padding: 40px 15px;
    }

    .part-title {
        font-size: 24px;
        padding: 15px 0 30px 0;
    }

    .part1 .content {
        margin-top: 0;
    }

    .part1 .relation {
        margin-bottom: 30px;
    }

    .part1 .relation img {
        width: 200px;
        height: 190px;
    }

    .part1 .desc {
        position: static;
    }

    .part1 .desc .desc-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .part1 .desc .desc-row .desc-item {
        text-align: center !important;
        margin: 0 !important;
        max-width: 100%;
        background-color: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #e8e8e8;
        transition: all 0.3s ease;
    }

    .part1 .desc .desc-row .desc-item:hover {
        background-color: #1E3A5F;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
    }

    .part1 .desc .desc-row .desc-item:hover h3 {
        color: #ffffff;
    }

    .part1 .desc .desc-row .desc-item:hover p {
        color: #ffffff;
    }

    .part1 .desc .desc-row .sep {
        display: none;
    }

    .part1 .desc h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .part1 .desc p {
        font-size: 14px;
    }

    /* Part2 移动端适配 */
    .part2 .content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .part2 .item {
        padding: 20px 15px;
    }

    .part2 .item .title img {
        width: 50px;
        height: 50px;
    }

    .part2 .item .title h3 {
        font-size: 18px;
    }

    .part2 .item .desc-d-title {
        font-size: 16px;
        margin-top: 12px;
    }

    .part2 .item .desc-title {
        font-size: 14px;
        margin-top: 12px;
    }

    .part2 .item .desc-content {
        font-size: 13px;
        margin-top: 6px;
    }

    .part2 .item .desc-row-title {
        font-size: 13px;
        margin-top: 8px;
    }

    .part2 .item .desc-row-content {
        font-size: 13px;
    }
}

/* 平板端适配 */
@media (min-width: 769px) and (max-width: 1024px) {
    .part {
        max-width: 95%;
        padding: 50px 20px;
    }
    
    .part1 .relation img {
        width: 250px;
        height: 237px;
    }
    
    .part1 .desc .desc-row .sep {
        width: 180px;
        margin: 0 15px;
    }
    
    .part1 .desc .row2 .sep {
        width: 280px;
    }
    
    .part2 .content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

.service-advantages {
    background-color: #ffffff;
    color: #333;
    padding: 0 20px;
    font-family: "Microsoft YaHei", sans-serif;
    max-width: 1200px;
    margin: 0 auto;    font-size: 14px;
}

.service-advantages h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1E3A5F;
}

.advantage-card {
    background-color: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px;
    margin: 30px auto;
    max-width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.advantage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.15);
    border-color: #1E3A5F;
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    /*border-left: 4px solid #1E3A5F;*/
    /*padding-left: 15px;*/
    color: #1E3A5F;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #1E3A5F;
}

.card-content p {
    line-height: 1.6;
    margin-bottom: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .service-advantages {
        padding: 40px 15px;
    }

    .service-advantages h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .advantage-card {
        padding: 20px;
        margin: 20px auto;
    }

    .advantage-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .card-content h4 {
        font-size: 16px;
        margin: 15px 0 8px;
    }
}

/* 通用重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 响应表格样式 */
.response-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.response-table th,
.response-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #e8e8e8;
}

.response-table thead th {
    background-color: #1E3A5F;
    color: #ffffff;
    font-weight: 600;
}

.response-table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.response-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.response-table tbody td {
    color: #333;
}

/* 响应式适配（手机端） */
@media (max-width: 768px) {

    .response-table th,
    .response-table td {
        font-size: 12px;
        padding: 8px 6px;
    }
}

/* 服务案例模块整体样式 */
.service-cases {
    color: #333;
    padding: 0 20px;
    font-family: "Microsoft YaHei", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* 主标题样式 */
.service-cases h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* 案例卡片容器（白色背景+阴影） */
.case-card {
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 100%;
    margin: 0 auto 30px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* 左侧客户信息区 */
.case-left {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    color: #333;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #e8e8e8;
}

/* 客户Logo+名称 */
.client-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-logo img {
    /*width: 60px;*/
    height: 42px;
    border-radius: 8px;
    margin-right: 15px;
    object-fit: cover;
    background-color: #f8f9fa;
}

.client-logo span {
    font-size: 20px;
    font-weight: 600;
    color: #1E3A5F;
}

/* 案例描述文案 */
.case-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

/* 留言按钮区域（自动推到底部） */
.contact-btn {
    margin-top: auto;
}

.message-btn {
    background-color: #1E3A5F;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.message-btn:hover {
    background-color: #2a4a6b;
    transform: translateY(-1px);
}

/* 右侧案例图片区 */
.case-right {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

.case-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 案例详细文案 */
.case-details {
    max-width: 100%;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* 响应式适配（手机端） */
@media (max-width: 768px) {
    .service-cases {
        padding: 40px 15px;
    }

    .service-cases h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .case-card {
        flex-direction: column;
    }

    .case-left,
    .case-right {
        min-width: auto;
    }

    .case-left {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .case-right {
        height: 250px;
    }

    .case-details {
        font-size: 14px;
        padding: 15px;
    }
}

.wMain {
    padding-left: var(--interval);
    padding-right: var(--interval);
    width: 100%;
}
.pt {
    padding-top: 3.94rem;
}
.Technology_03 {
  overflow: hidden;
}
.Technology_03 .box .main {
  width: 590px;
  height: 590px;
  margin: 1rem auto 22px;
  position: relative;
}
.Technology_03 .box .main > p {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #d4dcef;
}
.Technology_03 .box .main .title {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 32px;
}
.Technology_03 .box .main .title img{
    width: 441px;
}
.Technology_03 .box .main .list .item {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.Technology_03 .box .main .list .item .dian {
  position: relative;
}
.Technology_03 .box .main .list .item .dian span {
  display: block;
  width: 20px;
  height: 20px;
  background: #d4dcef;
  border-radius: 50%;
}
.Technology_03 .box .main .list .item .dian p {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 1.14rem;
  height: 1.14rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.Technology_03 .box .main .list .item .dian p img {
  width: 100%;
  height: 100%;
}
.Technology_03 .box .main .list .item .orientation {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 430px;
}
.Technology_03 .box .main .list .item .orientation .top {
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.Technology_03 .box .main .list .item .orientation .bot {
  font-size: 16px;
  color: #666;
  line-height: 26px;
  height: 78px;
  margin-top: 20px;
}
.Technology_03 .box .main .list .active .dian p {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.Technology_03 .box .main .list .active .orientation .top {
  color: #004efe;
}
@media screen and (min-width: 699px) {
  .Technology_03 .box .main .list .right {
    text-align: right;
  }
  .Technology_03 .box .main .list .item1 {
    top: 5%;
    left: 23.4%;
  }
  .Technology_03 .box .main .list .item1 .orientation {
    right: 1.3rem;
  }
  .Technology_03 .box .main .list .item2 {
    left: 0;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  .Technology_03 .box .main .list .item2 .orientation {
    right: 1rem;
  }
  .Technology_03 .box .main .list .item3 {
    top: auto;
    bottom: 5%;
    left: 23.4%;
  }
  .Technology_03 .box .main .list .item3 .orientation {
    right: 1.3rem;
  }
  .Technology_03 .box .main .list .item4 {
    top: 5%;
    left: auto;
    right: 23.4%;
  }
  .Technology_03 .box .main .list .item4 .orientation {
    left: 1.3rem;
  }
  .Technology_03 .box .main .list .item5 {
    left: auto;
    right: 0%;
    top: 50%;
    -webkit-transform: translateX(50%) translateY(-50%);
    -ms-transform: translateX(50%) translateY(-50%);
    transform: translateX(50%) translateY(-50%);
  }
  .Technology_03 .box .main .list .item5 .orientation {
    left: 1rem;
  }
  .Technology_03 .box .main .list .item6 {
    top: auto;
    left: auto;
    bottom: 5%;
    right: 23.4%;
  }
  .Technology_03 .box .main .list .item6 .orientation {
    left: 1.3rem;
  }
}
.Technology_03 .box_phone {
  display: none;
}
@media screen and (max-width: 1200px) {
  .Technology_03 .box_phone {
    display: block;
  }
}
.Technology_03 .box_phone div {
  display: none;
  font-size: 16px;
  color: #666;
  line-height: 26px;
}
.Technology_03 .box_phone div.active {
  display: block;
}








@media (min-width: 1901px) {
	html {
		/* font-size: calc(100vw/19.2); */
		font-size: 100px;
	}
}

@media (max-width: 1580px) {
	html {
		font-size: 76px;
	}
}


@media (max-width: 1400px) {
	html {
		font-size: 72px;
	}
}


@media (max-width: 767px) {
	html {
		font-size: calc(100vw / 7.5);
	}
}



@media (max-width: 1580px) {
	body {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 0.28rem;
	}
}
.row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

}.row>*{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) / 2);padding-left:calc(var(--bs-gutter-x) / 2);margin-top:var(--bs-gutter-y)}.col{-webkit-box-flex:1;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0}.row-cols-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.row-cols-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-1{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333%}.col-2{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-3{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-4{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.col-5{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:41.66667%}.col-6{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-7{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333%}.col-8{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66667%}.col-9{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-10{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333%}.col-11{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:91.66667%}.col-12{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:5px}.g-1,.gy-1{--bs-gutter-y:5px}.g-2,.gx-2{--bs-gutter-x:10px}.g-2,.gy-2{--bs-gutter-y:10px}.g-3,.gx-3{--bs-gutter-x:15px}.g-3,.gy-3{--bs-gutter-y:15px}.g-4,.gx-4{--bs-gutter-x:20px}.g-4,.gy-4{--bs-gutter-y:20px}.g-5,.gx-5{--bs-gutter-x:25px}.g-5,.gy-5{--bs-gutter-y:25px}.g-6,.gx-6{--bs-gutter-x:30px}.g-6,.gy-6{--bs-gutter-y:30px}.g-7,.gx-7{--bs-gutter-x:35px}.g-7,.gy-7{--bs-gutter-y:35px}.g-8,.gx-8{--bs-gutter-x:40px}.g-8,.gy-8{--bs-gutter-y:40px}.g-9,.gx-9{--bs-gutter-x:45px}.g-9,.gy-9{--bs-gutter-y:45px}.g-10,.gx-10{--bs-gutter-x:50px}.g-10,.gy-10{--bs-gutter-y:50px}@media(min-width:576px){.col-sm{-webkit-box-flex:1;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0}.row-cols-sm-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-sm-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-sm-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-sm-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.row-cols-sm-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-sm-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-sm-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333%}.col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:41.66667%}.col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333%}.col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66667%}.col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333%}.col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:91.66667%}.col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:5px}.g-sm-1,.gy-sm-1{--bs-gutter-y:5px}.g-sm-2,.gx-sm-2{--bs-gutter-x:10px}.g-sm-2,.gy-sm-2{--bs-gutter-y:10px}.g-sm-3,.gx-sm-3{--bs-gutter-x:15px}.g-sm-3,.gy-sm-3{--bs-gutter-y:15px}.g-sm-4,.gx-sm-4{--bs-gutter-x:20px}.g-sm-4,.gy-sm-4{--bs-gutter-y:20px}.g-sm-5,.gx-sm-5{--bs-gutter-x:25px}.g-sm-5,.gy-sm-5{--bs-gutter-y:25px}.g-sm-6,.gx-sm-6{--bs-gutter-x:30px}.g-sm-6,.gy-sm-6{--bs-gutter-y:30px}.g-sm-7,.gx-sm-7{--bs-gutter-x:35px}.g-sm-7,.gy-sm-7{--bs-gutter-y:35px}.g-sm-8,.gx-sm-8{--bs-gutter-x:40px}.g-sm-8,.gy-sm-8{--bs-gutter-y:40px}.g-sm-9,.gx-sm-9{--bs-gutter-x:45px}.g-sm-9,.gy-sm-9{--bs-gutter-y:45px}.g-sm-10,.gx-sm-10{--bs-gutter-x:50px}.g-sm-10,.gy-sm-10{--bs-gutter-y:50px}}
@media(min-width:768px){.col-md{-webkit-box-flex:1;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0}.row-cols-md-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-md-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-md-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-md-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.row-cols-md-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-md-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-md-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333%}.col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:41.66667%}.col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333%}.col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66667%}.col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333%}.col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:91.66667%}.col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:5px}.g-md-1,.gy-md-1{--bs-gutter-y:5px}.g-md-2,.gx-md-2{--bs-gutter-x:10px}.g-md-2,.gy-md-2{--bs-gutter-y:10px}.g-md-3,.gx-md-3{--bs-gutter-x:15px}.g-md-3,.gy-md-3{--bs-gutter-y:15px}.g-md-4,.gx-md-4{--bs-gutter-x:20px}.g-md-4,.gy-md-4{--bs-gutter-y:20px}.g-md-5,.gx-md-5{--bs-gutter-x:25px}.g-md-5,.gy-md-5{--bs-gutter-y:25px}.g-md-6,.gx-md-6{--bs-gutter-x:30px}.g-md-6,.gy-md-6{--bs-gutter-y:30px}.g-md-7,.gx-md-7{--bs-gutter-x:35px}.g-md-7,.gy-md-7{--bs-gutter-y:35px}.g-md-8,.gx-md-8{--bs-gutter-x:40px}.g-md-8,.gy-md-8{--bs-gutter-y:40px}.g-md-9,.gx-md-9{--bs-gutter-x:45px}.g-md-9,.gy-md-9{--bs-gutter-y:45px}.g-md-10,.gx-md-10{--bs-gutter-x:50px}.g-md-10,.gy-md-10{--bs-gutter-y:50px}}@media(min-width:992px){.col-lg{-webkit-box-flex:1;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0}.row-cols-lg-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-lg-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-lg-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-lg-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.row-cols-lg-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-lg-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-lg-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333%}.col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:41.66667%}.col-lg-6{padding-top: 20px;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333%}.col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66667%}.col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333%}.col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:91.66667%}.col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:5px}.g-lg-1,.gy-lg-1{--bs-gutter-y:5px}.g-lg-2,.gx-lg-2{--bs-gutter-x:10px}.g-lg-2,.gy-lg-2{--bs-gutter-y:10px}.g-lg-3,.gx-lg-3{--bs-gutter-x:15px}.g-lg-3,.gy-lg-3{--bs-gutter-y:15px}.g-lg-4,.gx-lg-4{--bs-gutter-x:20px}.g-lg-4,.gy-lg-4{--bs-gutter-y:20px}.g-lg-5,.gx-lg-5{--bs-gutter-x:25px}.g-lg-5,.gy-lg-5{--bs-gutter-y:25px}.g-lg-6,.gx-lg-6{--bs-gutter-x:30px}.g-lg-6,.gy-lg-6{--bs-gutter-y:30px}.g-lg-7,.gx-lg-7{--bs-gutter-x:35px}.g-lg-7,.gy-lg-7{--bs-gutter-y:35px}.g-lg-8,.gx-lg-8{--bs-gutter-x:40px}.g-lg-8,.gy-lg-8{--bs-gutter-y:40px}.g-lg-9,.gx-lg-9{--bs-gutter-x:45px}.g-lg-9,.gy-lg-9{--bs-gutter-y:45px}.g-lg-10,.gx-lg-10{--bs-gutter-x:50px}.g-lg-10,.gy-lg-10{--bs-gutter-y:50px}}@media(min-width:1200px){.col-xl{-webkit-box-flex:1;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0}.row-cols-xl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-xl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-xl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-xl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.row-cols-xl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-xl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-xl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:8.33333%}.col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}.col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:41.66667%}.col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:58.33333%}.col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66667%}.col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:83.33333%}.col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:91.66667%}.col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:5px}.g-xl-1,.gy-xl-1{--bs-gutter-y:5px}.g-xl-2,.gx-xl-2{--bs-gutter-x:10px}.g-xl-2,.gy-xl-2{--bs-gutter-y:10px}.g-xl-3,.gx-xl-3{--bs-gutter-x:15px}.g-xl-3,.gy-xl-3{--bs-gutter-y:15px}.g-xl-4,.gx-xl-4{--bs-gutter-x:20px}.g-xl-4,.gy-xl-4{--bs-gutter-y:20px}.g-xl-5,.gx-xl-5{--bs-gutter-x:25px}.g-xl-5,.gy-xl-5{--bs-gutter-y:25px}.g-xl-6,.gx-xl-6{--bs-gutter-x:30px}.g-xl-6,.gy-xl-6{--bs-gutter-y:30px}.g-xl-7,.gx-xl-7{--bs-gutter-x:35px}.g-xl-7,.gy-xl-7{--bs-gutter-y:35px}.g-xl-8,.gx-xl-8{--bs-gutter-x:40px}.g-xl-8,.gy-xl-8{--bs-gutter-y:40px}.g-xl-9,.gx-xl-9{--bs-gutter-x:45px}.g-xl-9,.gy-xl-9{--bs-gutter-y:45px}.g-xl-10,.gx-xl-10{--bs-gutter-x:50px}.g-xl-10,.gy-xl-10{--bs-gutter-y:50px}}@media(min-width:1600px){.col-xxl{-webkit-box-flex:1;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0}.row-cols-xxl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-xxl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.row-cols-xxl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-xxl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333%}.row-cols-xxl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.row-cols-xxl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.row-cols-xxl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66667%}
}
.single-service-wrapper{text-align:center;height:auto;padding:0 10px}.single-service-wrapper .service-icon{width:100px;height:100px;margin:0 auto 30px;border-radius:50%;color:#FFF;position:relative;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out;background-color:#122179;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;z-index:1}.single-service-wrapper .service-icon::before{background-color:#212121;width:100%;height:100%;position:absolute;left:0;top:0;border-radius:50%;content:"";opacity:.075;z-index:-1;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.single-service-wrapper .service-icon i{position:relative;z-index:9;font-size:36px;line-height:80px}.single-service-wrapper:hover .service-icon::before{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)}.single-service-wrapper .service-content .title{font-size:20px;color:#212121;margin-bottom:20px;font-weight:700}@media(max-width:479px){.single-service-wrapper .service-content .title{font-size:18px}}.contact-info .section-title p{max-width:600px;margin:0 auto}.info{border:1px solid #ebebeb;padding:0 32px 32px;text-align:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}@media(max-width:991px){.info{padding:0 28px 28px}}.info .info-icon{background-color:#FFF;margin-top:-30px;width:80px;height:65px;padding:0 10px;margin-bottom:10px}.info .info-icon i{font-size:48px;color:#122179}.info .info-content .title{font-size:20px;color:#212121;margin-bottom:10px}.contact-form{color:#212121;font-size:20px}.contact-form .input-item{padding:10px 20px}.contact-form .input-item,.contact-form .textarea-item{width:100%;border:0;font-size:14px;background:#E9ECEF}.contact-form .input-item:focus,.contact-form .textarea-item:focus{border:0;outline:0}.contact-form .textarea-item{min-height:130px;padding:10px 20px}p.form-messege{font-size:16px;margin-bottom:0;display:inline-block;padding-top:30px;line-height:1;display:none}p.form-messege.success{display:block}p.form-messege.error{display:block}
.text-center {
    text-align: center!important;
}
.security-card{background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 30px;    min-height: 200px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.5);
    box-shadow: 0 0 15px rgba(0,0,0,.5);
    border-bottom: 3px solid #0071dc;}
    .security-card p{font-size: 14px;
    color: #666;
    line-height: 26px;}
.row>* {
    
    padding-right: calc(var(--bs-gutter-x)/ 2);
    padding-left: calc(var(--bs-gutter-x)/ 2);
    margin-top: var(--bs-gutter-y);
}
.h3title{
border-left: 4px solid #1E3A5F;
    padding-left: 15px;}
    
    .investment_f{ margin:20px auto}
.investment_f .investment_title{ display: flex;    display: -webkit-flex;overflow:hidden}
.investment_title div{ width:25%; background:url(../images/invest_detail_22.png); float:left; margin-right:6px; display:inline; font-size:14px; font-weight:bold; text-align:center; line-height:46px; color:#555; cursor:pointer; margin-left:1px;color: #24283b;
    font-size: 18px;
    height: 80px;
    line-height: 80px;}
.investment_title a,.investment_title a:link,.investment_title a:visited,.investment_title a:hover{ color:#555;width:131px; height:44px;display:inline-block}
.investment_title div.on a,.investment_title div.on a:link,.investment_title div.on a:visited,.investment_title div.on a:hover{ color:#f70}
.investment_title div.on{    background: #f7f7f8;    color: #0069b1;    border-top-right-radius: 10px;    border-top-left-radius: 10px;}
.investment_con{ clear:both; background:#fff; }
.investment_con_list{display:none;}