/* RESET */

* {
    margin: 0;
    padding: 0;
    border: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

i {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

a:focus {
    outline-style: none;
}

input,
textarea,
select,
button {
    font-size: inherit;
    font-weight: inherit;
    outline: none;
    border: none;
}

textarea {
    resize: none
}

input::-ms-clear {
    display: none;
}

a,
a:focus,
a:hover {
    text-decoration: none ;
    color: inherit;
}

html {
    font-size: 16px;
    color: #282828;
    font-family: "akifont";
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    line-height: 1;
    --themeColor: #026db2;
    background-image: url(../images/1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-width: 1250px;
}

@font-face {
    font-family: "akifont";
}


::selection {
    background: var(--themeColor);
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.clamp1 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.clamp2 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.clamp3 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.clamp4 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.index-title {
    line-height: 1;
    font-size: 26px;
    font-weight: normal;
}

.index-title.center {
    text-align: center;
}

.index-title span {
    display: inline-block;
    position: relative;
    padding: 6px 30px;
}

.index-title span::before,
.index-title span::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
}

.index-title span::before {
    left: 0;
    top: 0;
}

.index-title span::after {
    right: 0;
    bottom: 0;
}

.bg-banner {
    height: auto;
    position: relative;
    z-index: 2;
    font-size: 0;
    margin-top: 90px;
    margin-bottom: 20px;
}

.bg-banner .container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.bg-banner .container::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgb(0, 0, 0, 0.1);
    z-index: 2;
}

.bg-banner img {
    height: 300px;
    width: 100%;
}

.bg-banner h3 {
    color: white;
    font-size: 35px;
    font-weight: normal;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}