.slider_section .item{
    position: relative;    
}
.slider_section .sliderSwiper {
    position: relative;
    cursor: move;
}
.slider_section .sliderSwiper .item img {
    width: 100%;
    max-height: 750px;
}
.slider_section .sliderSwiper:hover .button_navigation {
    visibility: visible;
}
.slider_section .sliderSwiper .button_navigation {
    position: absolute;
    width: 36px;
    height: 36px;
    z-index: 11;
    color: #333;
    top: 50%;
    background-color: #FFF;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 20px;
    transform: translateY(-50%);
    opacity: 0.7;
    cursor: pointer;
    visibility: hidden;
}

.slider_section .sliderSwiper .button_navigation:hover {
    opacity: 1;
}
.slider_section .sliderSwiper .slider-next {
    right: 30px;
}
.slider_section .sliderSwiper .slider-prev {
    left: 30px;
}
.slider_section .slider-pagination {
    position: absolute;
    bottom: 15px !important;
    width: auto !important;
    z-index: 11;
    left: 50% !important;
    transform: translateX(-50%);
}
.slider_section .slider-pagination .swiper-pagination-bullet {
    padding: 8px;
    background-color: transparent;
    border: 2px solid #fff;
}
.slider_section .slider-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}
.slider_section .item .content{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.slider_section .item .content .container{
    height: 100%;
}
.slider_section .item .content .box{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #FFF;
    width: 40%;
}
.slider_section .item .content .box h2{
    font-weight: 900;
    font-size: 45px;
    text-transform: uppercase;
    text-shadow: 1px 1px #2E8FCE;
}
.slider_section .item .content .box h3{
    margin: 10px 0 25px;
    font-weight: 700;
    text-shadow: 0.5px 0.5px #2E8FCE;
}
.slider_section .item .content .box .btn_viewmore{
    background-color: #FCB813;
    height: 50px;
    line-height: 50px;
    color: #FFF;
    cursor: pointer;
    border-radius: 30px;
    display: table;
    width: 150px;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
}
.slider_section .item .content .box .btn_viewmore:hover{
    background-color: #DA332D;
    color: #FFF;
}
/* product bc */
.product_bc{
    padding: 3rem 0;
    background-color: #f4f1e9;
}
.product_bc h2 {
    font-size: 30px;
    margin: 0px 0px 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1682C8;
    text-align: center;
}
.product_bc .line{
    width: 150px;
    margin: 0 auto 1.5rem;
    text-align: center;
    position: relative;
}
.product_bc .line:after{
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    z-index: 1;
}
.product_bc .line .line_img{
    padding: 0px 5px;
    position: relative;
    z-index: 2;
    display: table;
    margin: 0 auto;
}
.product_bc .box{
    padding: 0 5px;
    position: relative;
}
.product_bc .item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgb(0 9 128 / 4%), 0 7px 18px rgb(0 9 128 / 5%);
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    margin-bottom: 1.5rem;
    background-color: #FFF;
    border: 1px solid #f5f5f5;
}
.product_bc .item .box_img {
    width: 100%;
    position: relative;
}
.product_bc .item .box_img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.product_bc .item:hover .box_img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine{100%{left:125%}}@keyframes shine{100%{left:125%}}
.product_bc .item .box_img .img {
    height: 260px;
    background-position: center;
    background-size: cover;
}
.product_bc .item .box_info {
    padding: 10px 10px 15px;
}
.product_bc .item .box_info h3 {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 24px;
    font-weight: bold;
    line-height: 25px;
    padding: 5px 0px;
    min-height: 60px;
}
.product_bc .item .box_info a {
    color: #1c1c1c;
}
.product_bc .item .box_info a:hover {
    color: #1682C8;
}
.product_bc .item .box_info .price span, .product_bc .item .box_info .insurance span {
    color: red;
    font-weight: 700;
}
.product_bc .item .box_info .btn_advise{
    background-color: #FCB813;
    height: 40px;
    line-height: 40px;
    color: #FFF;
    cursor: pointer;
    border-radius: 30px;
    display: table;
    width: 100%;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}
.product_bc .item .box_info .btn_advise:hover{
    background-color: #DA332D;
    color: #FFF;
}
.product_bc .slider-pagination-bc {
    position: absolute;
    bottom: -20px !important;
    width: auto !important;
    z-index: 11;
    left: 50% !important;
    transform: translateX(-50%);
}
.product_bc .slider-pagination-bc .swiper-pagination-bullet {
    padding: 8px;
    background-color: transparent;
    background-color: #2E8FCE;
}
.product_bc .slider-pagination-bc .swiper-pagination-bullet-active {
    background-color: #FCB813;
}
/* cate product  */
.cate_product{
    padding: 3rem 0;
    background-image: url('../images/bg5.png');
    background-position: top center;
    background-size: cover;
}
.cate_product .container {
    width: 900px;
    max-width: 100% !important;
}
.cate_product h2 {
    font-size: 30px;
    margin: 0px 0px 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #333;
    text-align: center;
}
.cate_product .line{
    width: 150px;
    margin: 0 auto 1.5rem;
    text-align: center;
    position: relative;
}
.cate_product .line:after{
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    z-index: 1;
}
.cate_product .line .line_img{
    background: #f1f4fb;
    padding: 0px 5px;
    position: relative;
    z-index: 2;
    display: table;
    margin: 0 auto;
}
.cate_product .item {
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 5px 10px rgb(0 9 128 / 4%), 0 7px 18px rgb(0 9 128 / 5%);
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease; */
    margin-bottom: 1.5rem;
    /* background-color: #FFF; */
}
.cate_product .item .box_img {
    width: 100%;
    position: relative;
}
/* .cate_product .item .box_img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
} */
.cate_product .item:hover .box_img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine{100%{left:125%}}@keyframes shine{100%{left:125%}}
.cate_product .item .box_img .img {
    height: 200px;
    width: 200px;
    margin: auto;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    background-color: #FFF;
    box-shadow: 0 5px 10px rgb(0 9 128 / 4%), 0 7px 18px rgb(0 9 128 / 5%);
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    border-radius: 100%;
}
.cate_product .item:hover .box_img .img {
    border: 1px solid #f5f5f5;
}
.cate_product .item .box_info {
    padding: 10px 10px 15px;
}
.cate_product .item .box_info h3 {
    font-size: 1.2rem;
    line-height: 24px;
    font-weight: 900;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
}
.cate_product .item .box_info a {
    color: #1c1c1c;
}
.cate_product .item .box_info a:hover {
    color: #1682C8;
}
.cate_product .item .box_info .total_pro {
    text-align: center;
}
.cate_product .item .box_info .total_pro span {
    font-weight: 700;
}
/* ideas */
.ideas{
    position: relative;
    padding: 0 0 60px;
    width: 100%;
    background-color: #f4f1e9;
}
.ideas .testimonial-nine__bg{
    background-image: url('../images/testimonial-bg-two.png');
    width: 100%;
    height: 100%;
    background-position: center -30px;
    background-repeat: no-repeat;
}
.testimonial-nine__wrapper {
    position: relative;
    z-index: 1;
    padding: 65px 0 0;
    text-align: center;
}
.testimonial-nine__single {
    position: relative;
    margin-bottom: 0px;
}
.testimonial-nine__single__quote {
    width: 51px;
    height: 51px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #171827;
    font-size: 22px;
    margin: auto;
}
.testimonial-nine__single__quote i{
    margin-top: 5px;
}
.testimonial-nine__single__rating {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FCB813;
    letter-spacing: 7px;
    margin: 31px auto 24px;
}
.testimonial-nine__single__text {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #9d9ea4;
    max-width: 700px;
    margin: 0 auto;
}
.ideas .ideaSwiper {
    position: relative;
}
.ideas .ideaSwiper .button_navigation {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 11;
    color: #FFF;
    top: 50%;
    background-color: #9d9ea4;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}
.ideas .ideaSwiper .button_navigation:hover {
    background-color: #DA332D;
}
.ideas .ideaSwiper .button_navigation i{
    margin-top: 5px;
}
.ideas .ideaSwiper .slider-next-idea {
    right: 0px;
}
.ideas .ideaSwiper .slider-prev-idea {
    left: 0px;
}
.testimonial-nine__carousel-thumb {
    max-width: 290px;
    margin: auto;
    position: relative;
    padding-bottom: 3rem;
}
.testimonial-nine__carousel-thumb .item {
    position: relative;
    text-align: center;
    display: inline-block;
    padding: 0 0 0;
}
.testimonial-nine__meta {
    position: relative;
    display: block;
    visibility: hidden;
    margin-left: -48%;
    opacity: 0;
    transform: translateY(20%);
    transition: 500ms ease;
}
.testimonial-nine__meta__name {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 700;
    color: #171827;
    line-height: 1;
    margin-bottom: 5px;
}
.testimonial-nine__meta__designation {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    color: #9d9ea4;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    line-height: 1;
}
.testimonial-nine__carousel-thumb .item .testimonial-nine__meta-thumb {
    width: 67px;
    height: 67px;
    border-radius: 50%;
    opacity: 0.5;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: 500ms ease;
    margin: 38px 0 20px;
}
.testimonial-nine__carousel-thumb .item .testimonial-nine__meta-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.ideas .swiper-slide-active .item .testimonial-nine__meta-thumb{
    opacity: 1;
    transform: scale(1.4);
    border: 5px solid #FCB813;
}
.ideas .swiper-slide-active .item .testimonial-nine__meta{
    opacity: 1;
    visibility: visible;
}
/* partner */
.partner_section {
    background-image: url('../images/bg2.png');
    background-size: cover;
    width: 100%;
    padding: 3rem 0;
}
.partner_section h2 {
    font-size: 30px;
    margin: 0px 0px 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1682C8;
}
.partner_section .item {
    text-align: center;
    background-color: #FFF;
    border-radius: 5px;
}
.partner_section .item img{
    max-width: 90%;
    height: 100px;
}
/* news home */
.news_home {
    padding: 3rem 0;
    background-color: #f4f1e9;
}
.news_home h2{
    font-size: 30px;
    margin: 0px 0px 3rem;
    font-weight: 700;
    text-align: center;
}
.news_home h2 span{
    color: #F25B35;
}
.news_home .blog__image-wrap {
    position: relative;
    margin-bottom: 10px;
}
.news_home .item .blog__img {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left center;
    mask-position: left center;
    -webkit-mask-position-y: top;
    -webkit-mask-position-x: right;
    border-radius: 15px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    overflow: hidden;
    position: relative;
}
.news_home .item .blog__img:after {
    content: '';
    width: 160px;
    height: 100px;
    background-color: #FFF;
    position: absolute;
    bottom: -35px;
    right: -78px;
    transform: rotate(135deg);
}
.news_home .blog__image-wrap a {
    box-shadow: none;
    text-decoration: none;
}
.news_home .blog__image-wrap img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.news_home .item .blog__img img {
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.news_home .item .blog__link a {
    position: absolute;
    bottom: 10px;
    right: 5px;
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #FCB813;
    font-size: 25px;
    line-height: 72px;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
}
.news_home .item .blog__link a:hover {
    background: #FCB813;
    color: #FFF;
}
.news_home .item .blog__img img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.news_home .item h3{
    font-size: 1.2rem;
    line-height: 25px;
}
.news_home .item a{
    color: #333;
}
.news_home .item a:hover{
    color: #1682C8;
}
.news_home .view_more {
    display: table;
    margin: 1rem auto 0;
    text-decoration: underline;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FCB813;
}
/* table */
@media screen and (max-width: 1024px) {
    
}
@media screen and (max-width: 992px) {
}
@media screen and (min-width: 768px) and (max-width: 992px) {
   
}
/* mobile */
@media screen and (max-width: 668px) {
    
}
@media screen and (max-width: 612px) {
    
}