@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/poppins-v24-latin-100.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/poppins-v24-latin-200.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v24-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
}

:root {
    --hover-color: #0b68ae;
    --main-color: #000000;
    --white-color: #ffffff;
    --text-color: #444444;
    --border-color: #f5f5f5;
    --weight-color: #f0f0f0;
}

*,
*::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: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-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;
    margin-bottom: 15px;
}

th,
td {
    border: 1px solid var(--weight-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: 500;
    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: 20px 15px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
    background-color: var(--white-color);
    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;
}

input[type="submit"],
button {
    font-family: inherit;
    background-color: var(--hover-color);
    color: var(--white-color);
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    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: 100%;
}

.imgitem img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

a.btn {
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: 700;
    text-align: center;
    color: var(--white-color);
    background: var(--hover-color);
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    position: relative;
    z-index: 1;
    transition: all .3s linear 0s;
}

a.btn:hover {
    opacity: 0.8;
}

.text-title {
    font-size: 22px;
    color: var(--black-color);
    font-weight: 600;
    text-transform: capitalize;
}

.text-title a {
    color: inherit;
}

.text-title a:hover {
    color: var(--hover-color);
}

.text-des {
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hovermove {
    transition: all 0.4s ease;
}

.hovermove:hover {
    transform: translateY(-10px);
}

.bgcolor {
    background: var(--border-color);
}

.boxshadow {
    box-shadow: 0 -1px 20px #f3efef;
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flex10 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex30 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.grid {
    display: grid;
    gap: 15px;
}

.p15 {
    padding: 15px 0;
}

.p30 {
    padding: 30px 0;
}

.ps15 {
    padding: 15px;
}

.m30 {
    margin: 30px 0;
}

.text-center {
    text-align: center;
}

.bigimg {
    overflow: hidden;
}

.bigimg img {
    transition: transform 0.3s ease;
}

.bigimg:hover img {
    transform: scale(1.1);
}

/* mobile menu */
.m-menu-open,
.m-menu-close {
    display: none;
}

.nav-menu-child {
    display: none;
}

/* mobile menu */
/* tool bar */
.tool-bar {
    position: fixed;
    z-index: 99;
}

.tool-item {
    position: relative;
    height: 0;
    background: var(--white-color);
    text-align: center;
}

.tool-item a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: var(--hover-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.tool-item.active {
    background-color: var(--hover-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.tool-item.active a {
    color: var(--white-color);
}

.tool-item-sub {
    display: none;
}

/* end tool bar */
/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    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;
}

/* swiper */
/* header */
.header .container {
    position: relative;
}

.headbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.logo a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    display: inline-block;
    max-height: 45px;
}

.headinfo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.head-ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.head-ul>li {
    display: flex;
    gap: 15px;
    align-items: center;
}

.head-ul>li>.icon>i {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px dashed var(--hover-color);
    border-radius: 50%;
    color: var(--hover-color);
    font-size: 20px;
}

.language {
    position: relative;
    background: var(--hover-color);
    padding: 12px 15px;
    color: var(--white-color);
}

.language-list {
    display: none;

}

.language-list>a {
    display: block;
    width: 100%;
    background: var(--border-color);
    color: var(--hover-color);
    border-top: 1px solid var(--white-color);
    text-align: center;
    padding: 10px 0;
}

.language-list>a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.language:hover .language-list {
    display: block;
    position: absolute;
    z-index: 111;
    left: 0;
    top: 100%;
    width: 100%;
}

.headitem {
    background: var(--hover-color);
}

.headmenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-container {
    position: relative;
}

.search-input {
    max-width: 100%;
    border: 1px solid var(--border-color) !important;
    outline: none;
    transition: border-color 0.3s;
    padding: 5px 3px 5px 10px !important;
    height: 40px;
}

.search-input:focus {
    border-color: var(--main-color);
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    display: block;
    height: 70%;
    text-align: center;
    transform: translateY(-50%);
    background: var(--hover-color);
    border: none;
    color: var(--white-color);
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
}

.search-button:hover {
    opacity: 0.8;
    color: var(--white-color);
}

/* header */
/* slider */
.sliderSwiper .swiper-slide {
    position: relative;
}

.sliderSwiper .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    opacity: 0.5;
}

.slider .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.slider-small-title {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--hover-color);
}

.slider-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--white-color);
    text-transform: uppercase;
}

.slider-des {
    color: var(--white-color);
    font-size: 14px;
}

/* slider */
/* btnlist */
.btnlist {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btnlist a {
    display: flex;
    align-items: center;
    background: none;
    background: var(--hover-color);
    color: var(--white-color);
    border: none;
}

.btnlist a:hover {
    background: var(--hover-color);
    opacity: 0.8;
    color: var(--white-color);
}

.btnlist a:nth-child(n+2) {
    background: var(--main-color);
    color: var(--white-color);
}

.btnlist a:nth-child(n+2):hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.btnlist i {
    font-size: 20px;
    margin-left: 10px;
}

/* btnlist */
/* layout */
/* section-title */
.section-title {
    margin-bottom: 30px;
}

.section-title h3 {
    text-transform: capitalize;
    color: var(--hover-color);
    font-weight: 500;
}

.section-title h2 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 45px;
    text-transform: capitalize;
}

.section-title h2 span {
    color: var(--green-color);
}

.section-title h2 a {
    color: var(--main-color);
}

.section-title h2 a:hover {
    color: var(--hover-color);
}

.section-white-title,
.section-white-title h3,
.section-white-title h2 {
    color: var(--white-color);
}

/* section-title */
/* box-title */
.box-title>h3 {
    color: var(--hover-color);
    text-transform: capitalize;
    font-weight: 600;
}

.box-title>h2 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--main-color);
}

.box-title>p {
    font-size: 18px;
    color: var(--main-color);
}

/* box-title */
/* buss */
.buss-list>li {
    background: var(--hover-color);
}

.buss-list>li a {
    color: var(--white-color);
}

/* buss */
/* section-1 */
.section-1-img {
    flex-shrink: 0;
}

/* section-1 */
/* section-2 */
.section-2 {
    overflow: hidden;
    position: relative;
}

.section-2-ul {
    display: flex; 
    gap: 15px;
    width: fit-content; 
    animation: scroll 20s linear infinite; 
}
.section-2-ul li {
    background: var(--white-color);
    flex:0 0 300px; 
    white-space: nowrap; 
}
.section-2-ul:hover {
    animation-play-state: paused;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* section-2 */
/* section-3 */
.section-3-ul>li>a {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--border-color);
    padding: 15px;
}

.section-3-ul>li>a>.img {
    flex-shrink: 0;
    width: 50%;
}

/* section-3 */
/* section-4 */
.section-4-ul li {
    background: var(--white-color);
}

.section-4-ul li .more {
    color: var(--hover-color);
    text-transform: capitalize;
}

/* section-4 */
/* layout */
/* flink */
.flink span {
    font-size: 18px;
    font-weight: 600;
    color: var(--hover-color);
}

.flink .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

/* flink */
/* footer */
#backToTop {
    position: fixed;
    z-index: 999;
    bottom: 10px;
    right: 30px;
    display: none;
    background-color: var(--hover-color);
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.footer {
    position: relative;
    background: var(--hover-color);
    opacity: 0.9;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content>li {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo a {
    display: flex;
    align-items: center;
}

.footer-logo img {
    max-height: 50px;
    margin: 0;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    color: var(--white-color);
}

.footer-title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: var(--white-color);
    padding-bottom: 15px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 1px;
    background: var(--white-color);
}

.footer-sns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-sns>a {
    background: var(--white-color);
    padding: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-sns>a>i {
    color: var(--hover-color);
}

.footer-sns>a:hover {
    background: var(--main-color);
}

.footer-sns>a:hover i {
    color: var(--white-color);
}

.footer-content-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-content-ul>li>a {
    display: block;
    text-transform: capitalize;
    color: var(--white-color);
}

.footer-content-ul>li>a:hover {
    color: var(--main-color);
}

.footer-contact-ul>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer-contact-ul>li>.icon>i {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    color: var(--hover-color);
}

.footer-contact-ul>li>.text {
    flex: 1;
    color: var(--white-color);
    font-weight: 300;
}

.footer-contact-ul>li>.text>.text-title {
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
}

.footer-contact-ul>li>.text>p>a {
    color: var(--white-color);
}

.footer-contact-ul>li>.text>p>a:hover {
    color: var(--main-color);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: var(--white-color);
}

.footer-bottom a {
    color: var(--white-color);
}

.footer-bottom a:hover {
    color: var(--main-color);
}

.hide {
    display: none;
}

/* footer */
/* crumb */
.crumb {
    color: var(--white-color);
}

.crumb a {
    display: inline-block;
    color: var(--white-color);
    text-transform: capitalize;
    padding: 10px;
}

.crumb a:hover {
    color: var(--hover-color);
}

/* crumb */
/* pagnavi */
.pagnavi {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagnavi a {
    display: inline-block;
    width: 50px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    margin: 5px;
    background: var(--main-color);
    color: var(--white-color);
    text-transform: capitalize;
}

.pagnavi a:hover {
    background: var(--text-color);
    color: var(--white-color);
}

.pagnavi .current {
    background: var(--hover-color);
    color: var(--white-color);
}

/* pagnavi */
/* page-banner */
.page-banner {
    position: relative;
}

.page-banner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    opacity: 0.7;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.page-banner-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--white-color);
    text-align: center;
}

/* page-banner */
/* line card */
.line-card-table tr:nth-child(even) {
    background: var(--border-color);
}

/* line card */
/* manufacturer */
.manufacturer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.manufacturer-list li a {
    font-size: 18px;
    font-weight: 500;
}

/* manufacturer */
/* sidebar */
.side {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
}

.side-title {
    position: relative;
    z-index: 1;
    font-size: 20px;
    line-height: 30px;
    display: block;
    color: var(--main-color);
    font-weight: 600;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.side-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--hover-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: 500;
    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-cat>li {
    padding: 15px;
    font-size: 14px;
    line-height: 1.2;
    color: var(--main-color);
}

.side-ul>li:nth-child(n+2) {
    border-top: 1px dotted rgba(0, 0, 0, .1);
}

.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;
}

.side-our-team {
    background: var(--hover-color);
    color: var(--white-color);
}

.side-our-team-title {
    font-size: 30px;
    font-weight: 700;
}

.side-our-team .btn {
    background: var(--white-color);
    color: var(--hover-color);
}

.side-test-process-list li {
    position: relative;
    padding-left: 15px;
}

.side-test-process-list li::before {
    content: "\f287";
    font-family: bootstrap-icons !important;
    font-size: 6px;
    color: var(--hover-color);
    position: absolute;
    left: 0;
    top: 8px;
}

.side-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* sidebar */
/* single products */
.page {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* toppro */
.toppro-img {
    flex-shrink: 0;
}

.toppro-img img {
    border-radius: 10px;
}

.toppro-text {
    flex: 1;
}

.toppro-text h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
}

.toppro-text>p {
    font-size: 15px;
    line-height: 28px;
}

.toppro-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toppro-ul>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background: var(--white-color);
}

.toppro-ul span {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
}

.toppro-contact {
    color: var(--hover-color);
    display: flex;
    gap: 30px;
}

.toppro-contact>a {
    border: 1px solid var(--hover-color);
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--hover-color);
    font-size: 20px;
}

.toppro-contact>a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.toppro-contact i {
    margin-right: 5px;
}

.toppro-img .swiper-button-next,
.toppro-img .swiper-button-prev {
    color: var(--hover-color);
}

/* toppro */
.single-title {
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.single-title h1 {
    font-weight: 700;
    font-size: 40px;
    color: var(--main-color);
    line-height: 1.2;
    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 {
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
}

.single-arc h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

.single-arc h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.single-arc img {
    display: block;
    width: inherit;
}

.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: 10px 0;
    list-style-type: disc;
}

.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 */
/* single blog */
.single-table {
    overflow-x: auto;
    width: 100%;
}

.infolist {
    display: flex;
    align-items: center;
    gap: 15px;
}

.infolist i {
    color: var(--hover-color);
    margin-right: 5px;
}

/* single blog */
/* rel */

/* rel */
/* list-blog */
.info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info li {
    font-size: 15px;
    font-weight: 300;
    color: var(--hover-color);
}

.bloglist li .more {
    text-transform: capitalize;
    color: var(--hover-color);
}

/* list-blog */
/* add */
.add form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.add-input {
    height: 60px;
}

/* add */
/* about */
.testimonials-list {
    gap: 50px;
}

.testimonials-list>li {
    border-left: 5px solid var(--border-color);
    padding-left: 15px;
}

/* about */
/* 404 */
.page404 {
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.page404 h1 {
    font-size: 100px;
    font-weight: 700;
    color: var(--hover-color);
    margin-bottom: 30px;
}

.page404 p {
    margin-bottom: 30px;
}

/* 404 */
/* search */
.search-text {
    flex: 1;
}

.search-text .btn {
    align-self: start;
}

.search-text-table th {
    background: var(--white-color);
    color: var(--main-color);
    font-weight: 500;
}

.search-text-table td {
    background: var(--white-color);
}

.search-info .download {
    padding: 15px 0;
    background: var(--hover-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* search */
/* location */
.location-map {
    display: flex;
    flex-direction: column;
    background: var(--border-color);
}

.location-map-item {
    flex-shrink: 0;
}

.location-map-text {
    flex: 1;
}
.location-map-text h2{
    font-weight: 700;
}
.location-map-text-ul i{
    color: var(--hover-color);
    margin-right: 5px;
}
.location-map-text .btn{
    align-self: self-start;
}
/* location */
.modal-header{
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}
.close-modal{
    font-size: 30px;
}
.modal-body{
    padding: 15px;
}
.modal-body form{
    display: grid;
    gap: 15px;
}
.modal-body form input,.modal-body form textarea{
    background: var(--border-color);
}
.btn-wrap {
  grid-column: 1 / -1;
  justify-self: center;  
}
.highlight {
    padding: 0 2px;
    border-radius: 2px;
    font-weight: bold;
    color: #d14836;
}