@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/*
font-family: "Playfair Display", serif;
font-family: "Antonio", sans-serif;
*/
html,body{
    width:100%;
    height:100%;
}
body{
    font-size:13px;
    font-family: "Playfair Display", serif;
    color:var(--text-color);
}
@media only screen and (min-width: 1440px){
    body{
        font-size:16px;
    }
}
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{position:absolute;top:0;left:0;width:100%;border-top:44px solid #000000;padding:40px 0 0 0;z-index:9;}
header .h-body .container{display:flex;flex-direction:row;justify-content:space-between;align-items:center;}
header .logo{max-width:30%;flex:0 0 30%;}
header .logo img{max-width:100%;height:auto;}
header .menu{max-width:70%;flex:0 0 70%;padding-left:100px;}
header .menu .menu-bar{display:none;}
header .menu>ul{display:flex;flex-direction:row;justify-content:space-between;list-style:none;margin:0;padding:0;}
header .menu>ul>li{}
header .menu>ul>li>a{display:block;font-size:1.06em;color:#fff;border-bottom:2px solid transparent;padding:5px 0;transition:all .3s esae-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;}
header .menu>ul>li>a:hover{border-bottom:2px solid #fff;}
@media only screen and (max-width:767px){
    header{padding:20px 0 0 0;}
    header .h-body .container{flex-direction:column;justify-content:unset;align-items:unset;}
    header .logo{max-width:100%;flex:0 0 100%;margin-bottom:15px;}
    header .logo img{max-width:75%;margin:0 auto;display:block;}
    header .menu{max-width:100%;flex:0 0 100%;padding-left:0;}
    header .menu .menu-bar{display:block;padding:10px;font-size:1.3em;color:#fff;background:#000;}
    header .menu>ul{flex-direction:unset;justify-content:unset;display:none;background:rgba(0, 0, 0, .9);padding:10px;}
    header .menu>ul>li>a{border-bottom:1px dashed #aaaa;padding:10px;}
    header .menu>ul>li:last-child>a{border:0;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    header{padding:20px 15px 0 15px;}
    header .h-body .container{flex-direction:column;justify-content:unset;align-items:unset;}
    header .logo{max-width:100%;flex:0 0 100%;margin-bottom:15px;}
    header .logo img{max-width:75%;margin:0 auto;display:block;}
    header .menu{max-width:100%;flex:0 0 100%;padding-left:0;}
    header .menu .menu-bar{display:block;padding:10px;font-size:1.3em;color:#fff;background:#000;}
    header .menu>ul{flex-direction:unset;justify-content:unset;display:none;background:rgba(0, 0, 0, .9);padding:10px;}
    header .menu>ul>li>a{border-bottom:1px dashed #aaaa;padding:10px;}
    header .menu>ul>li:last-child>a{border:0;}
}
/*--- SLIDER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider{position:relative;}
.slider .swiper-slide .bg{width:100%;height:auto;}
.slider .swiper-s-prev{width:42px;height:42px;background:#fff;line-height:42px;border-radius:50%;text-align:center;position:absolute;top:calc(50% - 21px);left:3%;z-index:9;font-size:1.7em;color:#000;}
.slider .swiper-s-next{width:42px;height:42px;background:#fff;line-height:42px;border-radius:50%;text-align:center;position:absolute;top:calc(50% - 21px);right:3%;z-index:9;font-size:1.7em;color:#000;}
.slider .swiper-slide .text{width:33%;left:15%;position:absolute;top:0;height:100%;display:flex;flex-direction:column;justify-content:center;z-index:9;}
.slider .swiper-slide .text h2{font-size:3.5em;color:#fff;margin-top:10%;transform:translate(0,50px);opacity:0;visibility:visible;transition:all .3s ease-in-oout;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;font-weight:300;}
.slider .swiper-slide-active .text h2{opacity:1;visibility:visible;transform:translate(0,0);transition-delay:.3s;}
@keyframes leftToRight{
    0%{
        object-position: left;
    }
    100% {
        object-position: right;
    }
}
@media only screen and (max-width:767px){
    .slider .swiper-slide .text{width:70%;}
    .slider .swiper-slide .text h2{font-size:2.5em;text-align:center;}
    .slider .swiper-slide .bg{height:75vh;object-fit:cover;}
    .slider .swiper-slide-active .bg{animation:leftToRight 7s infinite linear;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .slider .swiper-slide .text{width:70%;}
    .slider .swiper-slide .text h2{text-align:center;}
    .slider .swiper-slide .bg{height:75vh;object-fit:cover;}
    .slider .swiper-slide-active .bg{animation:leftToRight 7s infinite linear;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .slider .swiper-slide .bg{height:100vh;object-fit:cover;}
}
@media only screen and (min-width:1200px) and (max-width:1400px){
    .slider .swiper-slide .bg{height:100vh;object-fit:cover;}
}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{padding:0 10%;overflow:hidden;}
.m1 .m1-wrapper{display:flex;flex-direction:row;position:relative;}
.m1 .m1-wrapper:before{content:'';width:90%;height:90%;background:#EFE9E8;position:absolute;top:0;right:0;z-index:-1;}
.m1 .m1-wrapper .icon{position:absolute;top:20px;left:20%;max-width:20%;height:auto;}
.m1 .m1-wrapper .img{border:30px solid #fff;margin-top:35vh;margin-bottom:50px;max-width:35%;flex:0 0 35%;position:relative;z-index:9;}
.m1 .m1-wrapper .img img{width:100%;height:620px;object-fit:cover;}
.m1 .m1-wrapper .content{display:flex;flex-direction:column;gap:30px;padding:150px 55px 55px 55px;max-width:65%;flex:0 0 65%;position:relative;z-index:9;}
.m1 .m1-wrapper .content>h2{font-size:2.06em;color:#000;font-weight:700;font-family: "Antonio", sans-serif;}
.m1 .m1-wrapper .content>.text{font-size:3.62em;color:#333333;}
.m1 .m1-wrapper .content>span{font-size:2.5em;color:#333333;}
.m1 .m1-wrapper .content>.more{display:flex;gap:40px;align-items:center;font-size:1.06em;width:fit-content;background:#AC7069;color:#fff;line-height:94px;padding:0 40px;font-family: "Antonio", sans-serif;}
@media only screen and (max-width:767px){
    .m1{padding:0 15px;overflow:hidden;}
    .m1 .m1-wrapper{flex-direction:column-reverse;}
    .m1 .m1-wrapper:before{left:-40%;margin:0 auto;width:100%;height:100%;}
    .m1 .m1-wrapper .icon{left:15px;}
    .m1 .m1-wrapper .img{margin-top:0;max-width:100%;flex:0 0 100%;}
    .m1 .m1-wrapper .img{max-width:100%;flex:0 0 100%;}
    .m1 .m1-wrapper .content{padding:100px 15px 15px 15px;}
    .m1 .m1-wrapper .content>h2{font-size:1.3em;}
    .m1 .m1-wrapper .content>.text{font-size:1.5em;}
    .m1 .m1-wrapper .content>span{font-size:1.1em;}
    .m1 .m1-wrapper .content>.more{line-height:64px;}
    .m1 .m1-wrapper .img img{height:310px;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m1{padding:0 45px;overflow:hidden;}
    .m1 .m1-wrapper{flex-direction:column-reverse;}
    .m1 .m1-wrapper:before{left:-40%;margin:0 auto;width:100%;height:100%;}
    .m1 .m1-wrapper .icon{left:15px;}
    .m1 .m1-wrapper .img{margin-top:0;max-width:100%;flex:0 0 100%;}
    .m1 .m1-wrapper .img{max-width:100%;flex:0 0 100%;}
    .m1 .m1-wrapper .content{padding:150px 15px 15px 15px;}
    .m1 .m1-wrapper .content>h2{font-size:1.7em;}
    .m1 .m1-wrapper .content>.text{font-size:2.0em;}
    .m1 .m1-wrapper .content>span{font-size:1.3em;}
    .m1 .m1-wrapper .content>.more{line-height:64px;}
    .m1 .m1-wrapper .img img{height:410px;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .m1 .m1-wrapper:before{height:80%;}
    .m1 .m1-wrapper .content>.text{font-size:2.0em;}
    .m1 .m1-wrapper .content>span{font-size:1.6em;}
    .m1 .m1-wrapper .content>.more{line-height:64px;}
    .m1 .m1-wrapper .img img{height:410px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .m1 .m1-wrapper:before{height:80%;}
    .m1 .m1-wrapper .content>.text{font-size:2.7em;}
    .m1 .m1-wrapper .content>span{font-size:1.6em;}
    .m1 .m1-wrapper .content>.more{line-height:64px;}
    .m1 .m1-wrapper .img img{height:510px;}
}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{padding:50px 10%;}
.m2 .m2-wrapper{width:100%;}
.m2 .m2-wrapper .m2-title{margin-bottom:50px;}
.m2 .m2-wrapper .m2-title h2{font-size:2.06em;font-family: "Antonio", sans-serif;text-align:center;}
.m2 .m2-wrapper .m2-title p{color:#333333;text-align:center;font-size:1.25em;}
.m2 .m2-wrapper .m2-list{margin-bottom:50px;border-bottom:1px solid #6C6C6C;}
.m2 .m2-wrapper .m2-list>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;justify-content:space-between;}
.m2 .m2-wrapper .m2-list>ul>li>button{border:0;background:unset;color:#6C6C6C;position:relative;padding:10px 0;}
.m2 .m2-wrapper .m2-list>ul>li>.active{color:#000000;}
.m2 .m2-wrapper .m2-list>ul>li>.active:before{content:'';border-bottom:3px solid #000000;position:absolute;bottom:-2px;left:0;width:100%;}
.m2 .m2-wrapper .m2-list-body-wrapper{position:relative;overflow:hidden;}
.m2 .m2-wrapper .m2-list-body-wrapper .m2-list-body{position:absolute;top:0;left:0;width:100%;height:auto;opacity:0;visibility:hidden;transition:all 4s ease-in-out;-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out;z-index:-99;}
.m2 .m2-wrapper .m2-list-body-wrapper .m2-list-body-active{position:relative;z-index:0;opacity:1;visibility:visible;}
.m2 .m2-list-row{display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-15px;margin-right:-15px;}
.m2 .m2-list-row .pro-box{max-width:20%;flex:0 0 20%;margin-bottom:30px;padding:0 15px;}
.m2 .m2-list-row .pro-box .img{border:4px solid #D1D1D1;border-radius:28px;overflow:hidden;}
.m2 .m2-list-row .pro-box .img img{width:100%;height:290px;object-fit:cover;}
.m2 .m2-list-row .pro-box .content{padding:20px 10%;}
.m2 .m2-list-row .pro-box .content h3{text-align:center;font-size:1.06em;margin:0;line-height:1.2em;min-height:3.6em;}
.m2 .m2-list-row .pro-box .more{}
.m2 .m2-list-row .pro-box .more a{display:block;width:80%;font-size:1.06em;line-height:42px;border-radius:21px;background:#30B020;color:#fff;text-align:center;font-family: "Antonio", sans-serif;margin:0 auto;}
.m2 .m2-list-row .pro-box .more a>i{font-size:1.5em;}
@media only screen and (max-width:767px){
    .m2{padding:50px 15px;}
    .m2 .m2-wrapper .m2-list{margin-bottom:20px;}
    .m2 .m2-wrapper .m2-list>ul{flex-wrap:wrap;gap:5px;justify-content:center;margin-bottom:20px;}
    .m2 .m2-wrapper .m2-list>ul>li>button{width:fit-content;border:1px solid #ddd;padding:10px 10px;border-radius:50px;}
    .m2 .m2-wrapper .m2-list>ul>li>.active{background:#f9f9f9;}
    .m2 .m2-wrapper .m2-list>ul>li>.active:before{display:none;}

    .m2 .m2-list-row{margin-left:-5px;margin-right:-5px;}
    .m2 .m2-list-row .pro-box{max-width:50%;flex:0 0 50%;padding:0 5px;}
    .m2 .m2-list-row .pro-box .img img{height:210px;}
    .m2 .m2-list-row .pro-box .more a{width:100%;font-size:.9em;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m2{padding:50px 45px;}
    .m2 .m2-list-row{margin-left:-5px;margin-right:-5px;}
    .m2 .m2-list-row .pro-box{max-width:33.33%;flex:0 0 33.33%;padding:0 5px;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .m2 .m2-list-row{margin-left:-5px;margin-right:-5px;}
    .m2 .m2-list-row .pro-box{max-width:25%;flex:0 0 25%;padding:0 5px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .m2 .m2-list-row{margin-left:-10px;margin-right:-10px;}
    .m2 .m2-list-row .pro-box{max-width:25%;flex:0 0 25%;padding:0 10px;}
}
/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:55px 0;position:relative;}
.m3:before{content:'';width:80%;height:100%;position:absolute;top:0;left:0;z-index:-1;background:#EFE9E8;}
.m3 .title{display:flex;flex-direction:column;justify-content:center;height:calc(100% - 30px);gap:50px;margin-bottom:30px;}
.m3 .title h2{font-size:2.06em;}
.m3 .title h2>a{color:#D6A091;}
.m3 .title p{font-size:1.68em;color:#333333;}
.m3 .title .more{display:flex;gap:40px;align-items:center;font-size:1.06em;width:fit-content;background:#AC7069;color:#fff;line-height:94px;padding:0 40px;font-family: "Antonio", sans-serif;}
.m3 .box{position:relative;margin-bottom:30px;}
.m3 .box .bg{width:100%;height:610px;object-fit:cover;}
.m3 .box .text{position:absolute;bottom:0;left:0;width:100%;padding:10%;}
.m3 .box .text h3{color:#fff;text-align:center;font-size:1.43em;}
.m3 .box .text .date{display:block;text-align:center;color:#fff;text-transform:uppercase;}
.m3 .swiper-nav{display:flex;flex-direction:row;gap:15px;justify-content:center;}
.m3 .swiper-nav>div{width:40px;height:40px;border-radius:50%;background:#000;color:#EFE9E8;line-height:40px;text-align:center;font-size:1.3em;}
.m3 .swiper-nav>div:active{opacity:.5;}
@media only screen and (max-width:767px){
    .m3 .title{width:75%;}
    .m3 .title .more{line-height:64px;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m3 .title{width:75%;}
    .m3 .title .more{line-height:64px;}
}
/*--- M4 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m4{padding:130px 0 0 0;}
.m4 .title{margin-bottom:30px;font-family: "Antonio", sans-serif;}
.m4 .title h2{font-size:2.06em;text-align:center;color:#000;}
.m4 .title .more{display:flex;justify-content:center;align-items:center;font-size:3.5em;gap:20px;font-weight:700;}
.m4 .m4-body{margin-bottom:50px;}
.m4 .m4-body img{width:100%;height:auto;}
/*--- M5 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m5{padding:50px 0;background:#EFE9E8;}
.m5 .box{display:flex;flex-direction:column;gap:50px;align-items:center;text-align:center;padding:0 10%;}
.m5 .box .content h2{font-size:3.06em;margin-bottom:30px;}
.m5 .box .content .text{font-size:1.75em;color:#888888;display:flex;flex-direction:column;gap:30px;}
.m5 .box .more{display:flex;gap:40px;align-items:center;font-size:1.06em;width:fit-content;background:#AC7069;color:#fff;line-height:64px;padding:0 40px;font-family: "Antonio", sans-serif;}
@media only screen and (max-width:767px){
    .m5 .content{font-size:10px;}
}
/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{padding:150px 0;background:#222222;color:#ffffff;}
footer a{color:#ffffff;}
footer .f-wrapper{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:150px;align-items:center;}
footer .logo{width:420px;max-width:100%;}
footer .logo img{width:100%;height:auto;}
footer .list{}
footer .list>ul{list-style:none;margin:0;padding:0;}
footer .list>ul>li{display:flex;align-items:center;}
footer .list>ul>li>a{display:inline-block;font-size: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>a:hover{padding-left:5px;}
footer .social-media{}
footer .social-media>h3{font-size:2em;}
footer .social-media>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;gap:25px;}
footer .social-media>ul>li>a{display:block;width:61px;height:61px;background:#D69991;border-radius:50%;line-height:61px;text-align:center;font-size:28px;}
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;filter:invert(100%);}
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;}
@media only screen and (max-width:991px){
    footer .f-wrapper{flex-direction:column;gap:50px;}
    footer .logo img{max-width:75%;height:auto;margin:0 auto;display:block;}
    footer .list>ul>li{justify-content:center;}
    footer .list>ul>li>a{text-align:center;}
    footer .social-media>h3{text-align:center;}
}
/*--- PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page .page-head{padding:300px 0 35px 0;background:var(--bg-color);}
.page .page-head h1{font-size:2.5em;font-weight:600;margin-bottom:25px;color:#fff;}
.page .page-head p{font-size:1.3em;font-weight:200;margin-bottom:25px;color:#fff;}
.page .page-head .breadcrumb{font-size:.8em;color:#fff;}
.page .page-head .breadcrumb-item+.breadcrumb-item::before{color:#fff}
.page .page-head .breadcrumb .active{color:#ddd;}
.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;}
.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: block;padding: 10px 20px;background: #aaa;color: #fff;text-align: center;text-decoration: none;}
@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;display:none;}
.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);}