127 lines
4.1 KiB
Vue
127 lines
4.1 KiB
Vue
<template>
|
|
<div class="bg-white">
|
|
<!-- Banner section with background image -->
|
|
<div class="aboutimgBg h-[300px] md:h-[600px]" :style="{
|
|
backgroundImage: `url(/images/maskgroup2.png)`,
|
|
backgroundSize: 'cover',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center'
|
|
}">
|
|
<div class="banDes">
|
|
<div class="clientTit text-center">
|
|
<h2 class="text-3xl md:text-[50px] font-bold animated fadeInLeft">{{ $t('clients_b1') }}</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Clients content section -->
|
|
<div class="mainBg pb-10 md:pb-[100px]">
|
|
<div class="oneBox1Bg">
|
|
<div class="container mx-auto px-4">
|
|
<div class="clientBox1">
|
|
<h3 class="animated fadeInUp text-lg md:text-2xl font-medium text-center text-[#606060] px-4 mt-[-60px] md:mt-[-120px]">{{ $t('clients_b2') }}</h3>
|
|
</div>
|
|
<div class="clientBg1 mt-12 md:mt-[100px]">
|
|
<div class="clientBg1img flex flex-col md:flex-row items-center justify-between">
|
|
<div class="clientBg1imgdx w-full md:w-[300px] mb-6 md:mb-0">
|
|
<img class="oneBox1Bg1img1 w-full h-auto object-contain" src="/images/image8.png" alt="Client">
|
|
</div>
|
|
<div class="clientBg1imgt text-center md:text-left pl-0 md:pl-[30px]" style="flex: 1;">
|
|
<h3 class="text-2xl md:text-[40px] font-bold mb-2">{{ $t('clients_b3') }}</h3>
|
|
<h4 class="text-base md:text-xl text-[#606060] mt-4 md:mt-[30px] px-4 md:px-0">{{ $t('clients_b4') }}</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="clientxiah1 w-full h-[1px] bg-gray-200 my-8"></div>
|
|
|
|
<div class="clientimg flex flex-wrap justify-center gap-4 md:gap-6 mt-8">
|
|
<img src="/images/maskgroup3.png" class="w-[150px] md:w-[200px] h-auto mb-4 md:mb-0" alt="Client">
|
|
<img src="/images/image8.png" class="w-[150px] md:w-[200px] h-auto mb-4 md:mb-0" alt="Client">
|
|
<img src="/images/clients56.png" class="w-[150px] md:w-[200px] h-auto mb-4 md:mb-0" alt="Client">
|
|
<img src="/images/clients11.png" class="w-[150px] md:w-[200px] h-auto mb-4 md:mb-0" alt="Client">
|
|
<img src="/images/clients11.png" class="w-[150px] md:w-[200px] h-auto mb-4 md:mb-0" alt="Client">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted } from 'vue'
|
|
|
|
onMounted(() => {
|
|
// You can add any code that needs to run after component is mounted
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "@/assets/animate/animate.min.css";
|
|
|
|
.aboutimgBg {
|
|
position: relative;
|
|
}
|
|
|
|
.container {
|
|
max-width: 100%;
|
|
@media (min-width: 768px) {
|
|
max-width: 1310px;
|
|
}
|
|
}
|
|
|
|
.clientTit h2::after {
|
|
content: '';
|
|
margin: 0 auto;
|
|
width: 180px;
|
|
height: 20px;
|
|
@media (min-width: 768px) {
|
|
width: 300px;
|
|
height: 28px;
|
|
margin-top: -30px;
|
|
}
|
|
background: #A8CBFF;
|
|
display: block;
|
|
margin-top: -20px;
|
|
}
|
|
|
|
.clientBox1 h3 {
|
|
font-weight: 500;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
@media (min-width: 768px) {
|
|
font-size: 24px;
|
|
line-height: 31px;
|
|
}
|
|
color: #606060;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.clientBg1imgt h3::after {
|
|
content: '';
|
|
width: 150px;
|
|
height: 16px;
|
|
@media (min-width: 768px) {
|
|
margin-top: -20px;
|
|
width: 250px;
|
|
height: 20px;
|
|
margin-left: -4px;
|
|
}
|
|
background: #A8CBFF;
|
|
display: block;
|
|
margin-top: -14px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
@media (min-width: 768px) {
|
|
margin-left: -4px;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.clientimg {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
</style>
|