/*
 * @Author: 大老王
 * @E-mail: 28691039@qq.com
 * @Update: 2024-12-11 23:50
 * @Statement: 尊重原创作者,请保留版权信息！
 *
 *  ┌─────────────────────────────────────────────────────────────┐
 *  │┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐│
 *  ││Esc│!1 │@2 │#3 │$4 │%5 │^6 │&7 │*8 │(9 │)0 │_- │+= │|\ │`~ ││
 *  │├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤│
 *  ││ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │{[ │}] │ BS  ││
 *  │├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤│
 *  ││ Ctrl │ A │ S │ D │ F │ G │ H │ J │ K │ L │: ;│" '│ Enter  ││
 *  │├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┤│
 *  ││ Shift  │ Z │ X │ C │ V │ B │ N │ M │< ,│> .│? /│Shift │Fn ││
 *  │└─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴──┬┴───┴┬──┴┬─────┴───┘│
 *  │      │Fn │ Alt │         Space         │ Alt │Win│  ShanWu  │
 *  │      └───┴─────┴───────────────────────┴─────┴───┘          │
 *  └─────────────────────────────────────────────────────────────┘
 *           键盘在手                          模版我有
 */

:root {
    --main-color: #222222;
    --hover-color: #ff5651;
    --border-color: #f5f5f5;
    --text-color: #666666;
    --des-color: #999999;
    --white-color: #ffffff;
    --weight-color: #9d9d9d;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--main-color);
    cursor: pointer;
}

a:hover,
a:focus {
    color: var(--hover-color);
    outline: none;
}

ul,
ol {
    list-style: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Ubuntu",
        "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB",
        "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 2em;
    font-weight: normal;
}

h2 {
    font-size: 1.5em;
    font-weight: normal;
}

h3 {
    font-size: 1.17em;
    font-weight: normal;
}

h4,
h5,
h6 {
    font-weight: normal;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

th,
td {
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

th {
    background-color: var(--hover-color);
    color: var(--white-color);
    font-weight: normal;
}

label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: var(--main-color);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.6;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease;
    background-color: #fff;
    color: var(--main-color);
    resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--hover-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 134, 224, 0.3);
}

input[type="submit"],
button {
    font-family: inherit;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: capitalize;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
button:hover,
input[type="submit"]:focus,
button:focus {
    outline: none;
}

input:disabled,
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

blockquote {
    margin: 1em 0;
    padding-left: 1em;
    border-left: 4px solid var(--hover-color);
    color: var(--weight-color);
    font-style: italic;
}

code,
pre {
    font-family: monospace, monospace;
    background-color: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 90%;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2em 0;
}

/* reset */
.imgitem {
    position: relative;
    height: 0;
    padding-bottom: 75%;
}

.imgitem img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn {
    display: inline-block;
    background: var(--hover-color);
    border: 1px solid var(--hover-color);
    color: var(--white-color);
    padding: 5px 10px;
    border: none;
    text-transform: uppercase;
    text-align: center;
    overflow: hidden;
    font-size: 14px;
    border-radius: 5px;
}

.btn:hover {
    background: var(--hover-color);
    opacity: 0.9;
    color: var(--white-color);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06);
}

.text-title {
    font-size: 20px;
    color: var(--main-color);
    font-weight: bold;
}

.text-des {
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hovermove {
    transition: all 0.3s ease;
}

.hovermove:hover {
    transform: translateY(-10px);
}

/* mobile menu */
.m-menu-open,
.m-menu-close {
    display: none;
}

.nav-menu-child {
    display: none;
}

/* mobile menu */
/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.bgcolor {
    background: var(--border-color);
}

.box {
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, .05);
}

.grid {
    display: grid;
    gap: 15px;
}

.text-center {
    text-align: center;
}

.p15 {
    padding: 15px 0;
}

.ps15 {
    padding: 15px;
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.imgtext,
.textimg {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.imgtext-img,
.textimg-img {
    flex-shrink: 0;
}

.imgtext-text,
.textimg-text {
    flex: 1;
}

/* swiper */
/* header */
#header {
    position: relative;
    z-index: 999;
}

.header {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.logo a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    display: inline-block;
    max-height: 45px;
}

.header-phone>a {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-phone>a>i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: var(--hover-color);
    color: var(--white-color);
    font-size: 14px;
}

/* header */
/* btnlist */
.btnlist {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btnlist>a {
    display: inline-block;
    border: 1px solid var(--hover-color);
}

.btnlist>a:nth-child(1) {
    background: var(--white-color);
    color: var(--hover-color);
}

.btnlist>a:nth-child(1):hover {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--white-color);
}

/* btnlist */
/* slider */

/* slider */
/* layout */
/* section-title */
.section-title {
    margin-bottom: 30px;
    text-align: center;
}

.section-title h3 {
    display: block;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--des-color);
}

.section-title h2 {
    position: relative;
    color: var(--main-color);
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

/* section-title */
/* box-title */
.box-title h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--hover-color);
    text-transform: uppercase;
}

.box-title h2 {
    font-size: 20px;
    line-height: 40px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--main-color);
}

/* box-title */

/* layout */
.hide {
    display: none;
}

/* home-1 */
.home-1-ul {
    background: linear-gradient(180deg, #f2f6fc 0%, #ffffff 100%);
    box-shadow: 2px 4px 27px 0px rgba(168, 181, 198, .32);
    border-radius: 5px;
    position: relative;
    z-index: 9;
}

.home-1-num {
    font-size: 36px;
    line-height: 1;
    font-weight: bold;
    color: var(--main-color);
}

/* home-1 */
/* home-2 */
.home-2-ul>li {
    background: linear-gradient(90deg, #f3f3f3, #d6ddfe 100%);
}

/* home-2 */
/* home-4 */
.home-4-ul-text-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-4-ul-text-list>li:first-child {
    background: var(--hover-color);
    color: var(--white-color);
    padding: 5px 10px;
    font-size: 12px;
}

.home-4-ul-text-list>li:last-child {
    color: var(--hover-color);
    font-size: 14px;
}

.home-4-partner {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
}

.home-4-partner>li {
    border: 1px dotted var(--weight-color);
    background: var(--white-color);
}

/* home-4 */
/* home-5 */
.home-5 {
    background: #fafafa;
}

.home-5-content {
    position: relative;
    visibility: visible;
}

.home-5-content .map {
    position: relative;
    height: 500px;
    background: url(../img/map.webp);
    margin: 0 auto;
    overflow: hidden;
    filter: brightness(1.5);
}

.home-5-content .map img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(50deg);
    opacity: 0.2;
}

.home-5-content-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.ul-home-5-ul .num {
    font-size: 60px;
    font-weight: bold;
    color: var(--hover-color);
}

.ul-home-5-ul .num span {
    font-size: 20px;
    color: var(--main-color);
    margin-left: 5px;
}

/* home-5 */
/* home-6 */
.more {
    font-size: 14px;
    color: var(--hover-color);
}

/* home-6 */
/* flink */
.flink {
    padding: 15px 0;
}

.flink .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.flink a {
    font-size: 14px;
}

/* flink */
/* footer */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: var(--hover-color);
    border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}

.footer {
    background: var(--main-color);
    color: var(--white-color);
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-left {
    position: relative;
    background: var(--hover-color);
}

.footer-left-title {
    font-size: 22px;
    font-weight: bold;
}

.footer-logo a {
    display: flex;
    align-items: center;
}

.footer-logo img {
    display: inline-block;
    max-height: 45px;
}

.footer-left-ul {
    border-top: 1px dotted var(--white-color);
    border-bottom: 1px dotted var(--white-color);
}

.footer-left-ul>li {
    margin: 10px 0;
}

.footer-left-ul>li>a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
}

.footer-left-content .btn {
    background: var(--white-color);
    color: var(--hover-color);
}

.footer-right {
    flex: 1;
}
.footer-right-top{
    display: flex;
    flex-direction: column;
}
.ewm-img img{
    max-width: 150px;
    margin: 0 auto;
}
.footer-content-title {
    font-size: 18px;
}

.foot-content-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.foot-content-ul>li>a {
    color: var(--weight-color);
}

.foot-content-ul>li>a:hover {
    color: var(--hover-color);
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    font-weight: 200;
    color: var(--weight-color);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom a {
    font-weight: 200;
    color: var(--weight-color);
}

.footer-bottom a:hover {
    color: var(--hover-color);
}

.hide {
    display: none;
}

/* footer */
/* crumb */
#crumb {
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.crumb {
    display: flex;
    gap: 10px;
}

.crumb a {
    display: inline-block;
    text-transform: capitalize;
}

.crumb a:hover {
    color: var(--hover-color);
}

/* crumb */
/* pagnavi */
.pagnavi {
    text-align: center;
    margin: 30px 0;
}

.pagnavi a {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    margin: 5px 0;
    background: var(--border-color);
    color: var(--text-color);
    text-transform: capitalize;
    border-radius: 5px;
}

.pagnavi a:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.pagnavi .current {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 5px;
    background: var(--hover-color);
    color: var(--white-color);
}

/* pagnavi */
/* page-banner */
.page-banner-content .textimg-img img {
    margin: 0 auto;
    border-radius: 10px;
}

.page-banner-content .textimg-text {
    color: var(--white-color);
    flex: 1;
}

.page-banner-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--white-color);
}

/* page-banner */
/* index-products */
.indexpro-ul>li:nth-child(even) {
    background: var(--border-color);
}

.card {
    transition: all 0.3s;
    background-image: linear-gradient(0deg, #fff, #f3f5f8);
    border: 2px solid var(--white-color);
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
    border-radius: 5px;
}

.indexpro-list-item1 .card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* index-products */
/* list-products */

/* list-products */
/* single products */
.content {
    margin-bottom: 50px;
}
.page{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.page-content {
    flex: 1;
}
/* sidebar */
.sidebar {
    align-self: self-start;
    background-color: var(--white-color);
    box-shadow: 0 0 1px #0000004d, 0 12px 32px -12px #1a223340;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.side-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.accordion-item {
    background-color: var(--border-color);
    border: none;
    color: var(--main-color);
    cursor: pointer;
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    outline: none;
    transition: background-color 0.6s ease;
}

.accordion-item.active {
    background-color: var(--hover-color);
    color: var(--white-color);
}

.accordion-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.accordion-item.active .accordion-item-content {
    max-height: 500px;
    /* 设置一个合适的数值 */
}
.side-ul>li{
    padding: 10px;
    font-size: 14px;
}
.side-ul>li:nth-child(n+2){
    border-top: 1px dotted var(--border-color);
}
.side-ul>li>a{
    color: var(--text-color);
    font-size: 14px;
    display: block;
}
.side-ul>li>a:hover{
    color: var(--hover-color);
}
.side-ul>li>span{
    color: var(--main-color);
    margin-right: 5px;
}
/* sidebar */
/* toppro */
.toppro-img img {
    border-radius: 5px;
}
.toppro-img {
    flex-shrink: 0;
}

.toppro-text {
    flex: 1;
}
.toppro-text h1 {
    font-weight: 700;
    font-size: 34px;
    color: var(--main-color);
    line-height: 45px;
}

.toppro-contact {
    color: var(--hover-color);
    display: flex;
    gap: 30px;
}

.toppro-contact>a {
    background: var(--white-color);
    color: var(--hover-color);
    font-size: 20px;
}

.toppro-contact>a:hover {
    color: var(--hover-color);
}

.toppro-contact i {
    margin-right: 10px;
}

.toppro-img .swiper-button-next,
.toppro-img .swiper-button-prev {
    color: var(--hover-color);
}

/* toppro */
.single-title {
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.single-title h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: var(--main-color);
    margin-bottom: 15px;
}

.single-title .info {
    display: flex;
    align-items: center;
    padding: 0;
}

.single-title .info>li {
    box-sizing: border-box;
    margin: 0 20px 0 0;
    list-style: none;
}

.single-title .info span {
    font-weight: bold;
    margin-right: 5px;
}

.single-arc h2 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
}

.single-arc h3 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

.single-arc h4 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.single-arc img {
    display: inline-block;
    width: inherit;
    margin: 0 auto;
}

.single-arc p img {
    margin: 0;
}

.single-arc table p {
    margin: 0;
}

.single-arc iframe {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.single-arc ul,
.single-arc ol {
    padding-left: 25px;
}

.single-arc li {
    margin: 15px 0;
    list-style-type: disc;
}

.single-arc a {
    color: var(--hover-color);
}

.single-arc a:hover {
    color: var(--main-color);
}

.prenext {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* single products */
/* message */
.message-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.message-text {
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--white-color);
}

.message-text>h2 {
    color: var(--white-color);
    font-weight: 900;
}

.message-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-ul>li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.message-ul>li>.icon>i {
    display: inline-block;
    font-size: 30px;
    padding: 15px;
    background: var(--hover-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}

.message-ul>li>.text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-ul>li>.text>h4>a {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
}

.message-ul>li>.text>p {
    color: var(--des-color);
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-form>h2 {
    color: var(--white-color);
}

.message-form>p {
    color: var(--white-color);
}

.message-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* message */
/* single blog */
.single-table {
    overflow-x: auto;
    width: 100%;
}

/* single blog */
/* rel */
.rel-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* rel */
/* list-blog */
.bloglist>li>a {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background: var(--border-color);
    color: inherit;
}

.bloglist>li>a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.bloglist>li>a:hover .text-ul {
    color: var(--white-color);
}
.bloglist>li>a:hover h3{
    color: var(--white-color);
}
.bloglist>li>a:hover p {
    color: var(--white-color);
}

.bloglist>li>a:hover .text .more {
    color: var(--white-color);
}
.text-ul {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: var(--des-color);
}

.text-ul i {
    margin-right: 5px;
}

.text-ul a {
    color: var(--hover-color);
}

.text-ul a:hover {
    color: var(--text-color);
}

/* list-blog */
/* list-case */
.caselist {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.caselist>li>a {
    background: var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.caselist>li>a:hover {
    color: inherit;
}
.caselist .img{
    flex-shrink: 0;
}
.caselist .text .more {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--hover-color);
}

/* list-case */
/* list-solution */
.solution-ul>li {
    border: 1px solid var(--border-color);
}
.solution-ul>li>a>.text>h3{
    font-size: 16px;
    line-height: 26px;
}
/* list-solution */
/* about */
.about-title{
    font-weight: bold;
    color: var(--main-color);
}
/* about-2 */
.about-2-ul{
    border: 1px solid var(--border-color);
}
.about-2-ul>li{
    background: var(--white-color);
}
.about-2-ul>li>i{
    display: block;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    line-height:40px;
    font-size: 40px;
    color: var(--hover-color);
}
/* about-2 */
/* about-4 */
.about-4-ul>li{
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-4-ul>li>.time{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.about-4-ul>li>.time>b{
    font-size: 18px;
    color: var(--main-color);
}
.about-4-ul>li>.time>p{
    color: var(--main-color);
}
.about-4-ul>li>.text{
    flex: 1;
}
/* about-4 */
/* about */
/* contact */
.contact-ul {
    display: grid;
    gap: 15px;
}

.contact-ul>li {
    border: 1px solid var(--border-color);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, .05);
}

.contact-ul>li>i {
    font-size: 26px;
    color: var(--hover-color);
}

.contact-ul>li>h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
}

.contact-ul>li>p {
    font-size: 18px;
    color: var(--des-color);
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-form form input,
.contact-form form textarea {
    background: var(--weight-color);
}

.contact-form form textarea {
    grid-column: span 2;
}

.contact-form form .btn {
    grid-column: span 2;
    justify-self: center;
}

/* contact */
/* 404 */
.page404 {
    text-align: center;
}

.page404 h1 {
    font-size: 100px;
    font-weight: 700;
    color: var(--hover-color);
    margin-bottom: 30px;
}

.page404 p {
    margin-bottom: 30px;
}

/* 404 */