@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,body{
    width:100%;
    height:100%;
}
body{
    font-size:13px;
    font-family: "Poppins", sans-serif;
    color:var(--text-color);
}
@media only screen and (min-width:1441px){
    body{
        font-size:14px;
    }
}
a{
    color:var(--text-color);
    text-decoration: none;
    transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -webkit-transition:all .2s ease-in-out;
}
a:hover{
    color:var(--text-color-2);
}

p{margin-bottom:10px;}

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

/*--- HEADER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
header{border-top:25px solid #CF0001;}
header .h-wrapper{display:flex;flex-direction:row;gap:30px;}
header .h-wrapper .h-left{width:330px;}
header .h-wrapper .h-right{flex:1;display:flex;flex-direction:row;align-items:center;gap:30px;}
header .logo{position:relative;padding:15px 0;z-index:99;}
header .logo:before{content:'';width:100%;height:120%;position:absolute;top:0;left:0;background:#CF0001;transform: skew(-15deg);}
header .logo *{position:relative;z-index:1;}
header .logo img{display:block;margin:0 auto;max-width:100%;height:auto;}
header .menu{position:relative;flex:1;height:100%;}
header .menu .menu-bar{display:none;}
header .menu>ul{list-style:none;margin:0;padding:0;height:100%;display:flex;flex-direction:row;justify-content:space-between;}
header .menu>ul>li{}
header .menu>ul>li>a{display:flex;align-items:center;position:relative;height:100%;padding:0 15px;}
header .menu>ul>li>a *{position:relative;z-index:99;}
header .menu>ul>li>a:before{content:'';width:100%;height:0%;background:#CF0001;position:absolute;top:0;left:0;z-index:-1;opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
header .menu>ul>li>a:after{content:'';width:100%;height:0%;background:#CF0001;position:absolute;bottom:0;left:0;z-index:-1;opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
header .menu>ul>li>a:hover{color:#fff;}
header .menu>ul>li>a:hover:before{height:50%;opacity:1;visibility:visible;}
header .menu>ul>li>a:hover:after{height:50%;opacity:1;visibility:visible;}
header .contact{width:220px;}
header .contact a{display:flex;align-items:center;color:#CF0001;margin-bottom:10px;gap:10px;}
@media only screen and (max-width:991px){
    header .h-wrapper{flex-direction:column;}
    header .h-wrapper .h-left{display:block;margin:0 auto 20px auto;}
    header .h-wrapper .h-right{flex-direction:column-reverse;align-items:unset;gap:10px;}
    header .contact{width:100%;display:flex;justify-content:center;align-items:center;gap:20px;}
    header .menu{height:unset;margin-bottom:20px;}
    header .menu .menu-bar{display:block;background:#CF0001;color:#fff;padding:10px 20px;}
    header .menu>ul{position:absolute;left:0;width:100%;height:auto;background:rgba(0, 0, 0, .9);flex-direction:column;z-index:999;padding:20px 10px;display:none;}
    header .menu>ul>li>a{color:#fff;padding:10px;border-bottom:1px solid #666;}
    header .menu>ul>li:last-child>a{border:0;}
}
@media only screen and (min-width:992px) and (max-width:1440px){
    header .h-wrapper .h-left{width:170px;}
    header .logo img{max-width:80%;}
    header .contact{width:auto;}
}
/*--- SLIDER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider{position:relative;}
.slider .swiper-slide{position:relative;}
.slider .swiper-slide img{width:100%;height:auto;}
.slider .swiper-slide .text{position:absolute;left:15%;top:0;height:100%;width:35%;display:flex;flex-direction:column;justify-content:center;z-index:99;gap:20px;}
.slider .swiper-slide .text h2{font-size:2.78em;color:#fff;font-weight:700;opacity:0;visibility:hidden;transform:translate(0,50px); transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text h2{opacity:1;visibility:visible;transform:translate(0,0);transition-delay:.3s;}
.slider .swiper-slide .text p{font-size:1.71em;color:#fff;opacity:0;visibility:hidden;transform:translate(0,50px); transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text p{opacity:1;visibility:visible;transform:translate(0,0);transition-delay:.6s;}
.slider .swiper-slide .text .more{display:flex;flex-direction:row;align-items:center;gap:30px;padding:0 30px;line-height:45px;border-radius:40px;width:fit-content;border:1px solid #fff;color:#fff;opacity:0;visibility:hidden;transform:translate(0,50px); transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.slider .swiper-slide .text .more i{border:1px solid #fff;border-radius:50%;width:30px;height:30px;line-height:30px;text-align:center;}
.slider .swiper-slide-active .text .more{opacity:1;visibility:visible;transform:translate(0,0);transition-delay:.9s;}
@keyframes leftToRight{
    0%{
        object-position: right;
    }
    100%{
        object-position: left;
    }
}
@media only screen and (max-width:767px){
    .slider .swiper-slide img{width:100%;height:calc(100vh - 290px);object-fit:cover;animation:leftToRight 10s infinite linear;}
    .slider .swiper-slide .text{width:75%;left:15px;font-size:10px;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .slider .swiper-slide img{width:100%;height:calc(100vh - 290px);object-fit:cover;animation:leftToRight 10s infinite linear;}
    .slider .swiper-slide .text{width:720px;left:0;right:0;margin:0 auto;font-size:10px;padding-left:15px;padding-right:50%;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .slider .swiper-slide .text{width:960px;left:0;right:0;margin:0 auto;padding-left:15px;padding-right:40%;font-size:11px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .slider .swiper-slide .text{width:1140px;left:0;right:0;margin:0 auto;padding-left:15px;padding-right:40%;}
}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{padding:100px 0;position:relative;overflow:hidden;}
.m1:before{content:'';width:130%;height:100%;position:absolute;top:0;right:0;background:#EBEBEB;transform:skewX(-35deg);z-index:-1;}
.m1 .box{display:flex;flex-direction:column;gap:30px;}
.m1 .box h2{line-height:40px;position:relative;padding-left:100px;font-size:2.07em;color:#141414;text-transform:uppercase;}
.m1 .box h2:before{content:'';width:90px;height:5px;background:#141414;position:absolute;top:calc(50% - 2.5px);left:0;}
.m1 .box h3{font-size:3.35em;color:#CF0001;font-weight:900;}
.m1 .box .text{font-size:1.06em;color:#141414;width:65%;}
.m1 .box .more{display:flex;flex-direction:row;align-items:center;gap:30px;padding:0 30px;line-height:45px;border-radius:40px;width:fit-content;background:linear-gradient(to right,#CF0001,#AA0708);color:#fff;}
.m1 .box .more>i{border:1px solid #fff;border-radius:50%;width:30px;height:30px;line-height:30px;text-align:center;}
.m1 .img1{position:absolute;right:0;top:0;height:100%;width:auto;}
.m1 .img2{position:absolute;right:22%;bottom:0;height:80%;width:auto;}
@media only screen and (max-width:767px){
    .m1{padding:100px 0 0 0;}
    .m1 .img1{height:auto;width:100%;top:unset;bottom:0;position:relative;}
    .m1 .img2{height:auto;width:50%;right:50%;}
    .m1 .box{margin-bottom:50px;}
    .m1:before{width:100%;height:100%;}
    .m1 .box h3{font-size:2.5em;}
    .m1 .box .text{width:80%;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m1 .img1{height:auto;width:50%;top:unset;bottom:0;}
    .m1 .img2{height:auto;width:25%;right:30px;bottom:unset;top:5%;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .m1 .img1{right:-18%;}
}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{padding:50px 0;}
.m2 .title{margin-bottom:50px;}
.m2 .title h2{line-height:40px;position:relative;padding-left:100px;font-size:2.07em;color:#CF0001;text-transform:uppercase;}
.m2 .title h2:before{content:'';width:90px;height:5px;background:#CF0001;position:absolute;top:calc(50% - 2.5px);left:0;}
.m2 .title .t-right{display:flex;flex-direction:row;justify-content:space-between;align-items:center;}
.m2 .title p{width:40%;}
.m2 .title .swiper-nav{display:flex;flex-direction:row;gap:25px;}
.m2 .title .swiper-nav>div{width:48px;height:48px;border-radius:50%;border:2px solid #000000;color:#000000;line-height:48px;text-align:center;font-size:1.5em;}
.m2 .title .swiper-nav>div:active{opacity:.5;}

.service-box .image{margin-bottom:40px;position:relative;padding-top:40px;overflow:hidden;}
.service-box .image:before{content:'';width:calc(100% - 70px);height:calc(100% - 40px);position:absolute;top:0;right:0;background:#CF0001;z-index:-9;border-radius:0 0 0 225px;opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.service-box .image img{width:calc(100% - 30px);height:auto;border-radius:0 0 0 225px;border:1px solid #CF0001;position:relative;z-index:9;transform:translate(100%,40px);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}

.service-box .content{display:flex;flex-direction:column;gap:10px;position:relative;height:100%;padding-bottom:150px;margin-bottom:40px;}
.service-box .content h3{font-size:1.92em;font-weight:900;}
.service-box .content .text{font-size:1.06em;color:#424242;}
.service-box .content .more{display:flex;flex-direction:row;align-items:center;gap:5px;padding:0 30px;line-height:45px;border-radius:40px;width:fit-content;background:linear-gradient(to right,#CF0001,#AA0708);color:#fff;}
.service-box .content .more>i{margin-left:30px;border:1px solid #fff;border-radius:50%;width:30px;height:30px;line-height:30px;text-align:center;}
.service-box .content .num{position:absolute;bottom:0;right:0;font-size:6.35em;font-weight:900;color:transparent;-webkit-text-stroke-color:#CF0001;-webkit-text-stroke-width:1px;-webkit-text-fill-color:transparent;transform:translate(0,100%);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}

.swiper-slide-active .image:before{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.2s;}
.swiper-slide-active .image img{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.4s;}
.swiper-slide-active .content .num{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.4s;}

.service-box-active .image:before{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.2s;}
.service-box-active .image img{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.4s;}
.service-box-active .content .num{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.4s;}

/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:100px 0;background:#F8F8F8;}
.m3 .title{margin-bottom:50px;}
.m3 .title h2{line-height:40px;position:relative;padding-left:100px;font-size:2.07em;color:#141414;text-transform:uppercase;}
.m3 .title h2:before{content:'';width:90px;height:5px;background:#141414;position:absolute;top:calc(50% - 2.5px);left:0;}
.m3 .list{margin-bottom:30px;}
.m3 .list ul{list-style:none;margin:0;padding:0;margin-bottom:75px;}
.m3 .list ul>li{padding-left:100px;position:relative;height:30px;}
.m3 .list ul>li:before{content:'';width:30px;top:50%;border-top:1px solid #527294;position:absolute;left:0;}
.m3 .list ul>.long:before{content:'';width:90px;top:50%;border-top:1px solid #527294;position:absolute;left:0;}
.m3 .list ul>li>button{height:40px;border:0;width:100%;text-align:center;background:unset;font-size:1.12em;color:#272727;position:relative;font-weight:500;text-transform:uppercase;padding:0 10px;}
.m3 .list ul>li>.active{font-weight:700;}
.m3 .list .more{display:flex;flex-direction:row;align-items:center;gap:5px;padding:0 30px;line-height:45px;border-radius:40px;width:fit-content;background:linear-gradient(to right,#CF0001,#AA0708);color:#fff;}
.m3 .list .more>i{margin-left:30px;border:1px solid #fff;border-radius:50%;width:30px;height:30px;line-height:30px;text-align:center;}
.m3 .list-body{position:relative;display:flex;flex-direction:column;justify-content:center;height:100%;}
.m3 .list-body .list-body-item{position:absolute;top:0;left:0;opacity:0;visibility:hidden;}
.m3 .list-body .list-body-item-active{position:relative;opacity:1;visibility:visible;}
.m3 .list-body .list-body-item .box{box-shadow:7px 17px 12px #0000001D;border-radius:47px;overflow:hidden;background:#fff;margin-bottom:30px;padding:20px;}
.m3 .list-body .list-body-item .box img{width:100%;height:240px;object-fit:contain;border-bottom:3px solid #000000;margin-bottom:20px;}
.m3 .list-body .list-body-item .box h3{font-size:.85em;text-align:center;color:#424242;line-height:1.2;mine-height:2.4em;text-transform:uppercase;}
@media only screen and (max-width:991px){
    .m3{padding:50px 0;}
    .m3 .list ul>li{height:20px;}
    .m3 .list ul>li>button{height:20px;}
    .m3 .list .more{margin-left:0;}
    .m3 .list-body{height:auto;}
}
/*--- M4 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m4{padding:55px 0;position:relative;overflow:hidden;background:url('../images/m4-bg.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
.m4 .title{margin-bottom:50px;position:relative;z-index:99;}
.m4 .title h2{line-height:40px;position:relative;padding-left:100px;font-size:2.07em;color:#141414;text-transform:uppercase;}
.m4 .title h2:before{content:'';width:90px;height:5px;background:#141414;position:absolute;top:calc(50% - 2.5px);left:0;}
.m4 .bg{position:absolute;width:auto;height:auto;top:0;left:0;max-width:45%;max-height:100%;}
.m4 .accordion{margin-bottom:50px;position:relative;z-index:99;}
.m4 .accordion-item {background: #fff;border: none;margin-bottom: 10px;border-radius: 8px;box-shadow: 0 0 10px rgba(0,0,0,0.05);overflow: hidden;transition: all 0.3s ease;}
.m4 .accordion-button {background: #fff;color: #333;font-weight: 600;font-size: 16px;padding: 18px 20px;border: none;outline: none;box-shadow: none;display: flex;justify-content: space-between;align-items: center;width: 100%;transition: all 0.3s ease;}
.m4 .accordion-button::after {content: "+";font-size: 22px;font-weight: bold;color: #c00;transform: rotate(0deg);transition: all 0.3s ease;background-image:unset;}
.m4 .accordion-button:not(.collapsed)::after {content: "–";transform: rotate(0deg);background-image:unset;}
.m4 .accordion-button:hover {background: #f8f8f8;}
.m4 .accordion-body {padding: 15px 25px 20px;font-size: 15px;color: #555;line-height: 1.6;background: #fff;border-top: 1px solid #eee;}
.m4 .accordion-button:not(.collapsed){background-color: unset;color:unset;}
.m4 .accordion-button:focus{box-shadow: unset;}
.m4 .link{display:flex;flex-direction:row;justify-content:flex-end;position:relative;z-index:99;}
.m4 .link .more{display:flex;flex-direction:row;align-items:center;gap:5px;padding:0 30px;line-height:45px;border-radius:40px;width:fit-content;background:linear-gradient(to right,#CF0001,#AA0708);color:#fff;}
.m4 .link .more>i{margin-left:30px;border:1px solid #fff;border-radius:50%;width:30px;height:30px;line-height:30px;text-align:center;}
@media only screen and (max-width:991px){
    .m4 .bg{max-width:unset;}
}
/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{border-bottom:25px solid #CF0001;}
footer .logo{border-bottom:1px solid #CF0001;padding:25px 0;text-align:center;}
footer .logo img{display:block;margin:0 auto;max-width:280px;height:auto;}
footer h3{font-size:18px;font-weight:700;margin-bottom:20px;}
footer .logo{margin-bottom:50px;}
footer .logo img{width:100%;height:auto;}
footer .list{margin-bottom:50px;}
footer .list>ul{list-style:none;margin:0;padding:0;}
footer .list>ul>li{display:flex;align-items:center;}
footer .list>ul>li>i{margin-right:10px;}
footer .list>ul>li>span,footer .list>ul>li>a{display:inline-block;font-size:.9em;line-height:2em;transition:all .2s ease-in-out;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;}
footer .list>ul>li>span:hover,footer .list>ul>li>a:hover{padding-left:5px;}
footer .workhour{margin-bottom:50px;}
footer .map{margin-bottom:50px;}
footer .map>iframe{width:100%;height:250px;}
footer .copyright{margin-bottom:5px;font-size:11px;text-align:center;padding-top:25px;}
footer .swa{margin-bottom:50px;text-align:center;}
footer .swa>a>img{display:block;width:50px;height:50px;margin:0 auto;opacity:.95;}
footer .contracts{margin-bottom:50px;display:flex;flex-wrap:wrap;justify-content:center;}
footer .contracts a{display:inline-block;padding:0 10px;font-size:.8em;margin:0 0 5px 0;}
/*--- PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page .page-head{padding:75px 0 35px 0;background:var(--bg-color);}
.page .page-head h1{font-size:2.5em;font-weight:600;margin-bottom:25px;}
.page .page-head p{font-size:1.3em;font-weight:200;margin-bottom:25px;}
.page .page-head .breadcrumb{font-size:.8em;}
.page .page-body{padding:50px 0 20px 0;}
.page .page-foot{padding:50px 0 20px 0;background:var(--bg-color);margin-bottom:50px;}
.page .page-form{margin-bottom:50px;}
/*--- COOKIE-POLICY -----------------------------------------------------------------------------------------------------------------------------------------------------*/
.cookie-accept {position:fixed;bottom:-100%;left:0;right:0;width:100%;z-index:99;border:1px solid #ddd;background:#fff;display:flex;justify-content:center;align-items:center;transition:bottom 1s ease-in-out;-webkit-transition:bottom 1s ease-in-out;-moz-transition:bottom 1s ease-in-out;-o-transition:bottom 1s ease-in-out;padding:20px;}
.cookie-accept.active {bottom:0;}
.cookie-accept .close {position:absolute;right:15px;top:-15px;width:30px;height:30px;border:1px solid #ddd;line-height:30px;text-align:center;font-size:1.5em;background:#fff;}
.cookie-accept .icon {text-align: center;}
.cookie-accept .icon i {font-size:4em;}
.cookie-accept .content {padding:1.5em;}
.cookie-accept .content strong {display:block;font-size:1.5em;line-height:1;margin-bottom:10px;}
.cookie-accept .content p {font-size:1.1em;font-weight:200;margin:0;}
.cookie-accept .buttons ul {list-style:none;margin:0;padding:0;display:flex;gap:10px;}
.cookie-accept .buttons ul > li {flex:1 1 auto;}
.cookie-accept .buttons ul > li > a{display:flex;padding:10px 20px;background:#aaa;color:#fff;text-align:center;text-decoration:none;align-items:center;height:100%;}
@media only screen and (max-width: 767px) {
    .cookie-accept {flex-direction: column;}
}
/*--- FORM --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.form-group{margin-bottom:20px;}
.form-group label{display:block;font-size:1em;font-weight:700;margin-bottom:5px;}
.form-group .form-control{min-height:45px;border:0;border:1px solid #eee;font-size:1em;}
.form-group .form-control::placeholder{font-size:1em;}
.form-group input[type="checkbox"]{width:25px;height:25px;}
.form-checkbox-group{display:flex;line-height: 25px;}
.form-checkbox-group>input{accent-color:var(--primary-color);}
.form-checkbox-group a{padding-left:15px;}
.form-group button{background-color:var(--primary-color);color:#fff;font-size:1em;}
.form-group button:hover{background-color:var(--secondary-color);color:#fff;}
/*rating*/
.stars {width:100%;text-align: center;border:1px solid #eee;border-radius:5px;overflow: hidden;display: flex;justify-content: center;flex-direction: row-reverse;margin-bottom:20px;}
.stars-focus{box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);}
input.star {display: none;}
label.star {margin:0;padding: 0 5px;font-size: 30px;color: #ddd;transition: all .2s;}
input.star:checked ~ label.star:before {content: '\f005';color: #FD4;transition: all .25s;font-weight: 900;}
input.star-5:checked ~ label.star:before {color: #FE7;}
input.star-1:checked ~ label.star:before {color: #F62;}
input.star-2:hover ~ label.star-1 {color: #F62;}
input.star-3:hover ~ label.star-1, input.star-3:hover ~ label.star-2 { color: #F62; }
input.star-4:hover ~ label.star-1, input.star-4:hover ~ label.star-2, input.star-4:hover ~ label.star-3 { color: #F62; }
input.star-5:hover ~ label.star-1, input.star-5:hover ~ label.star-2, input.star-5:hover ~ label.star-3, input.star-5:hover ~ label.star-4 {color: #F62;}
label.star:hover {color: #ffa300;}
label.star:before {content: '\f005';font-family: 'Font Awesome 5 Free';font-weight: 400;}
/*security-input*/
.security-group{margin-bottom:20px;position:relative;}
.security-group label{display: block;font-size:14px;font-weight:700;margin-bottom:5px;}
.security-group .img{position:absolute;bottom:0;left:0;}
.security-group .img img{min-height:45px;}
.security-group .img button{border:0;min-height:45px;min-width:45px;margin:0;background:transparent;}
.security-group input{text-indent:175px;min-height:45px;min-height:45px;border:1px solid #eee;font-size:1em;}
/*--- LOADING ---------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#loading{width:100%;height:100vh;position:fixed;top:0;left:0;background:rgba(0,0,0,.7);z-index:9999999;display:flex;flex-direction:column;justify-content:center;align-items:center;}
@keyframes spin{to{transform: rotate(360deg);}from{transform: rotate(0);}}
#loading:before{content:'\f110';color:#fff;font-family: 'Font Awesome 6 Free';font-weight:900;animation: spin infinite 1s linear;}
/*--- NO-CONTENT --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.no-content{padding:40px 20px;border:1px dashed #eee;border-radius:10px;text-align:center;margin-bottom:30px;}
.no-content>i{font-size:30px;margin-bottom:15px;color:#aaa;}
.no-content>p{font-size:18px;padding:0;margin:0;font-weight:200;}
/*--- HEMEN ARA - WHATSAPP --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@-webkit-keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}
@keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}

.fixed-button{position:fixed;bottom:15px;left:15px;display:flex;flex-direction:column;gap:15px;z-index:9999;}
.fixed-button>a{height:40px;width:40px;text-align: center;border-radius:80px;z-index: 999;color: white;position:relative;}
.fixed-button>a>i{line-height:40px;font-size:25px;}
.fixed-button>a .ripple{position: absolute;width:120px;height:120px;z-index: -1;left: 50%;top: 50%;opacity: 0;margin: -60px 0 0 -60px;border-radius:80px;-webkit-animation: ripple 1.8s infinite;animation: ripple 1.8s infinite;}
.fixed-button>a .ripple:nth-child(2) {animation-delay: .3s;-webkit-animation-delay: .3s;}
.fixed-button>a .ripple:nth-child(3) {animation-delay: .6s;-webkit-animation-delay: .6s;}

.whatsAppBg{background-color: #068404 !important;background-image: linear-gradient(90deg, #068404, #0ba909);}
.hemenAraBg {background-color: #004080 !important;background-image: linear-gradient(90deg, #004080, #0073e6);}