@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:1141px){
    body{
        font-size:16px;
    }
}
@media only screen and (min-width:1600px){
    .container{max-width:1440px;}
}
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{padding:30px 0;background:#D9CFC0;}
header .container{display:flex;flex-direction:row;justify-content:space-between;align-items:center;}
header .logo img{display:block;max-width:100%;height:auto;}
header .menu .menu-bar{display:none;}
header .menu>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;gap:30px;align-items:center;}
header .menu>ul>li>a{display:block;font-size:1.12em;color:#707070;font-weight:300;}
header .menu>ul>li> .icon-btn{border:1px solid #693B2A;border-radius:10px;color:#693B2A;padding:5px 20px;}
header .menu>ul>li> .icon-btn .icon{width:20px;height:auto;}
@media only screen and (max-width:991px){
    header .container{flex-direction:column;align-items:unset;}
    header .logo{margin-bottom:15px;}
    header .logo img{display:block;margin:0 auto;}
    header .menu{position:relative;}
    header .menu .menu-bar{display:block;background:#444;color:#fff;padding:10px;}
    header .menu>ul{position:absolute;left:0;gap:0;width:100%;background:rgba(0, 0, 0, .9);padding:20px;flex-direction:column;z-index:9;display:none;}
    header .menu>ul>li>a{color:#ffffff;border-bottom:1px dashed #999;line-height:40px;}
    header .menu>ul>li:last-child>a{border:0;}
}
/*--- MAIN ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
main{background: transparent linear-gradient(180deg, #D9CFC0 0%, #F2F0EC 52%, #693b2a 100%) 0% 0% no-repeat padding-box;}

/*--- SLIDER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider{top:0;height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;}
.slider .img{display:block;margin:0 auto;max-height:100%;max-width:100%;height:auto;width:auto;will-change: transform;transition: transform 0.1s linear;}

.slider .boxes{position:absolute;width:75%;top:10%;left:0;right:0;margin:0 auto;height:80%;}

.slider .boxes .box1{position:absolute;top:0;left:0;}
.slider .boxes .box2{position:absolute;top:0;right:0;}
.slider .boxes .box3{position:absolute;bottom:0;left:0;}
.slider .boxes .box4{position:absolute;bottom:0;right:0;}

.slider .boxes .box{max-width:25%;}
.slider .boxes .box span{position:absolute;color:#483A33;font-size:1.5em;width:100%;height:100%;font-weight:700;top:0;left:0;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:0 40px;}
.slider .boxes .box .img{width:100%;height:auto;}

.slider .boxes .box1 span{transform:rotate(-45deg);}
.slider .boxes .box2 span{transform:rotate(10deg);}
.slider .boxes .box3 span{transform:rotate(-45deg);}
.slider .boxes .box4 span{transform:rotate(12deg);}

.slider .text{position:absolute;top:0;left:0;right:0;margin:0 auto;width:25%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;gap:30px;}
.slider .text strong{font-size:2.5em;font-weight:700;}
.slider .text span{font-size:1.5em;color:#1E2228;width:70%;}
.slider .img,
.slider .images img,
.slider .text {
    will-change: transform, opacity;
    transition: transform 0.1s linear, opacity 0.2s linear;
}
@media only screen and (max-width:767px){
    .slider .boxes .box{max-width:50%;}
    .slider .boxes .box span{font-size:1.2em;}
    .slider .text{width:60%;}
    .slider .text strong{font-size:2em;}
    .slider .text span{font-size:1.2em;}
}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{padding:115px 0;}
.m1 .steps{display:grid;grid-template-columns: 1fr 1fr;gap:20px;}
.m1 .steps .step-item{position:relative;border-radius:20px;overflow:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m1 .steps .step-item .img1{width:100%;height:auto;position:relative;z-index:8;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m1 .steps .step-item .img2{width:100%;height:auto;position:absolute;top:0;left:0;opacity:0;visibility:hidden;z-index:9;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m1 .steps .step-item .t{display:flex;padding:30px;align-items:center;gap:30px;justify-content:space-between;width:100%;flex-direction:row;position:absolute;top:0;left:0;font-size:1.25em;font-weight:900;color:#414141;z-index:9;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m1 .steps .step-item .t>img{filter:grayscale(100%);max-width:40%;}
.m1 .steps .step-item .t-reverse{flex-direction:row-reverse;}
.m1 .steps .step-item:nth-child(3) .t, .m1 .steps .step-item:nth-child(4) .t{position:absolute;top:unset;bottom:0;left:0;}
.m1 .steps .step-item:hover,.m1 .steps .active{box-shadow: 4px 3px 10px #00000043;}
.m1 .steps .step-item:hover .img2, .m1 .steps .active .img2{opacity:1;visibility:visible;}
.m1 .steps .step-item:hover .t, .m1 .steps .active .t{color:#414141;}
.m1 .steps .step-item:hover .t>img, .m1 .steps .active .t>img{filter:grayscale(0);}
.m1 .box{display:flex;flex-direction:column;justify-content:center;gap:30px;height:100%;}
.m1 .box h2{font-size:1.56em;font-weight:300;padding-left:120px;position:relative;color:#F19867;}
.m1 .box h2:before{content:'';width:100px;height:3px;background:#F19867;position:absolute;left:0;top:calc(50% - 1.5px);}
.m1 .box h3{color:#F19867;font-size:2.5em;font-weight:700;margin-bottom:0;width:75%;}
.m1 .box .text{color:#707070;font-size:1.25em;}
.m1 .box .more{display:inline-block;color:#ffffff;width:fit-content;padding:0 30px;line-height:45px;background: transparent linear-gradient(180deg, #693B2A 0%, #351E15 100%) 0% 0% no-repeat padding-box;border-radius: 30px;}
@media only screen and (max-width:767px){
    .m1 .steps .step-item .t{padding:15px;gap:0;font-size:.9em;}
    .m1 .steps{margin-bottom:50px;}
    .m1 .steps .step-item span{font-size:1em;}
    .m1 .steps .step-item:nth-child(3) span, .m1 .steps .step-item:nth-child(4) span{font-size:1em;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m1 .steps{position:sticky;top:20px;bottom:20px;}
    .m1 .steps .step-item span{font-size:.9em;}
    .m1 .steps .step-item:nth-child(3) span, .m1 .steps .step-item:nth-child(4) span{font-size:.9em;}
}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{padding:250px 0;position:relative;overflow:hidden;margin:100px 0;}
.m2 .m2-body-1{width:150%;left:-12.5%;position:relative;margin-top:50px;}
.m2 .swiper-services-1 .swiper-slide{}
.m2 .swiper-services-1 .swiper-slide-prev{opacity:0;}
.m2 .swiper-services-1 .swiper-slide-active{opacity:1;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;}
.m2 .swiper-services-1 .box{border-radius:30px;overflow:hidden;position:relative;}

.m2 .swiper-services-1 .box img{width:100%;height:auto;aspect-ratio: 1/1;position:relative;z-index:1;object-fit:cover;}
.m2 .swiper-services-1 .box h3{font-size:1.4em;font-weight:700;color:#fff;position:absolute;bottom:15%;text-align:center;z-index:3;width:100%;opacity:0;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;}
.m2 .swiper-services-1 .swiper-slide-active .box h3{opacity:1;}

.m2 .swiper-services-1 .swiper-slide .box:before{content:'';width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;background:#ffffff;opacity:.6;}
.m2 .swiper-services-1 .swiper-slide-active .box:before{content:'';width:100%;height:100%;position:absolute;top:0;left:0;z-index:2;background:transparent linear-gradient(180deg, #693B2A00 0%, #693B2A 100%) 0% 0% no-repeat padding-box;}
.m2 .swiper-services-1 .swiper-slide-next .box:before{background:#ffffff;opacity:.6;}


.m2 .m2-body-2{width:30%;position:absolute;top:75px;left:17.2%;height:calc(100% - 150px);}
.m2 .m2-body-2:before{content:'';position:absolute;top:-10%;left:-20%;width:140%;height:120%;background:rgba(235, 232, 228, 1);opacity:.27;}
.m2 .m2-body-2>*{position:relative;z-index:9;}
.m2 .m2-body-2 .title{display:flex;flex-direction:row;justify-content:space-between;align-items:center;}
.m2 .m2-body-2 .title h2{font-size:1.81em;text-transform:uppercase;position:relative;line-height:2em;letter-spacing:5.8px;padding-left:30px;margin:0;}
.m2 .m2-body-2 .title h2:before{content:'';width:7px;height:7px;background:#F19867;position:absolute;left:0;top:calc(50% - 3.5px);}
.m2 .m2-body-2 .title h2>a{color:#721717;}
.m2 .m2-body-2 .title .swiper-nav{display:flex;flex-direction:column;gap:5px;}
.m2 .m2-body-2 .title .swiper-nav>div{}
.m2 .m2-body-2 .title .swiper-nav>div:active{opacity:.5;}
.m2 .m2-body-2 .swiper-services-2{width:100%;height:calc(100% - 37px);}
.m2 .m2-body-2 .swiper-slide{opacity:0;}
.m2 .m2-body-2 .swiper-slide-active{opacity:1;}
.m2 .m2-body-2 .box{display:flex;flex-direction:column;gap:20px;justify-content:center;height:100%;overflow:hidden;}
.m2 .m2-body-2 .box h3{font-size:1.31em;font-weight:700;transform: translate(0,-30px);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;}
.m2 .m2-body-2 .swiper-slide-active .box h3{transform: translate(0,0);opacity:1;visibility:visible;}
.m2 .m2-body-2 .box h3>a{color:#F19867;}
.m2 .m2-body-2 .box .text{transform: translate(0,-30px);color:#707070;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;margin-bottom:50px;}
.m2 .m2-body-2 .swiper-slide-active .box .text{transform: translate(0,0);opacity:1;visibility:visible;}
.m2 .m2-body-2 .box .more{display:flex;flex-direction:row;align-items:center;gap:30px;color:#ffffff;line-height:60px;padding:0 30px;width:fit-content;background: transparent linear-gradient(180deg, #693B2A 0%, #351E15 100%) 0% 0% no-repeat padding-box;border-radius: 30px;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;}
.m2 .m2-body-2 .swiper-slide-active .box .more{transform: translate(0,0);opacity:1;visibility:visible;}
@media only screen and (max-width:991px){
    .m2{display:flex;flex-direction:column-reverse;padding:0 15px;margin:0;}
    .m2 .m2-body-2{width:100%;position:relative;top:0;left:0;height:450px;padding-top:30px;margin-bottom:30px;}
    .m2 .m2-body-1{width:100%;left:0%;position:relative;}
    .m2 .swiper-services-1 .swiper-slide-prev{opacity:1;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .m2 .m2-body-2{left:45px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .m2 .m2-body-2{left:17%;}
}
/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:50px 0;}
.m3 .title{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:50px;}
.m3 .title h2{font-size:1.81em;text-transform:uppercase;position:relative;line-height:2em;letter-spacing:5.8px;padding-left:30px;margin:0;}
.m3 .title h2:before{content:'';width:7px;height:7px;background:#F19867;position:absolute;left:0;top:calc(50% - 3.5px);}
.m3 .title h2>a{color:#721717}
.m3 .title small{display:block;font-size:1.12em;color:#707070;}
.m3 .title .swiper-nav{display:flex;flex-direction:column;gap:5px;}
.m3 .title .swiper-nav div:active{opacity:.5;}
.m3 .swiper-slide img{width:100%;height:auto;}
.m3 .swiper-wrapper{align-items:center;}
.m3 .swiper-slide {
    width: 30%;
}
.m3 .swiper-slide:nth-child(2n) {
    width: 40%;
}
.m3 .swiper-slide:nth-child(3n) {
    width: 20%;
}
/*--- M4 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m4{padding:100px 0;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{display:flex;flex-direction:row;justify-content:space-between;align-items:center;margin-bottom:50px;}
.m4 .title h2{color:#F19867;font-size:1.81em;text-transform:uppercase;position:relative;line-height:2em;letter-spacing:5.8px;padding-left:30px;margin:0;font-weight:300;}
.m4 .title h2:before{content:'';width:7px;height:7px;background:#F19867;position:absolute;left:0;top:calc(50% - 3.5px);}
.m4 .swiper-nav{display:flex;flex-direction:row;gap:15px;}
.m4 .swiper-nav div:active{opacity:.5;}
.m4 .m4-body{display:flex;flex-direction:row;}
.m4 .m4-body .m4-b-left{max-width:30%;flex:0 0 30%;}
.m4 .m4-body .m4-b-left h3{font-size:3.3em;color:#721717;font-weight:300;}
.m4 .m4-body .m4-b-right{max-width:70%;flex:0 0 70%;}
.m4 .m4-body .m4-b-right .m4-slide-body{width:130%;}
.m4 .box{background: #FFFFFF 0% 0% no-repeat padding-box;margin:15px;box-shadow: 0px 3px 6px #00000029;border-radius: 65px 30px;padding:50px;}
.m4 .box .icon{position:relative;margin-bottom:100px;}
.m4 .box .icon:before{content:'';width:100px;height:100px;background:#EBE8E4;border-radius:50%;position:absolute;top:0;left:0;}
.m4 .box .icon img{position:relative;z-index:9;transform:translate(20px,20px);}
.m4 .box .t h3{font-size:1.56em;color:#1E2228;font-weight:300;}
.m4 .box .t h3 a{display:flex;flex-direction:row;justify-content:space-between;align-items:center;}
.m4 .swiper-slide{opacity:.5;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;}
.m4 .swiper-slide-active{opacity:1;}
@media only screen and (max-width:991px){
    .m4 .title{flex-direction:column;justify-content:center;}
    .m4 .m4-body{flex-direction:column;}
    .m4 .m4-body .m4-b-left h3{font-size:2.5em;text-align:center;}
    .m4 .m4-body .m4-b-left{max-width:100%;flex:0 0 100%;}
    .m4 .m4-body .m4-b-right{max-width:100%;flex:0 0 100%;}
}
/*--- M5 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m5{padding:75px 0;overflow:hidden;}
.m5 .title{display:grid;grid-template-columns:40% 60%;align-items:center;margin-bottom:65px;}
.m5 .title .img img{display:block;max-width:100%;height:auto;}
.m5 .title .slogan{font-size:1.81em;color:#F19867;}
.m5 .m5-body{display:grid;grid-template-columns:20% 1fr;gap:160px;align-items: center;}
.m5 .m5-body .m-title h2{font-size:1.25em;position:relative;background:transparent linear-gradient(180deg, #693B2A 0%, #351E15 100%) 0% 0% no-repeat padding-box;border-radius:20px;padding:40px 30px;}
.m5 .m5-body .m-title h2 a{display:flex;flex-direction:column;justify-content:flex-end;align-items:flex-end;}
.m5 .m5-body .m-title h2:before{content:'';width:100%;height:100%;position:absolute;top:0;right:0;transform:translate(20px,-20px);border-radius:20px;border:1px solid #351E15;z-index:-1;}
.m5 .m5-body .m-title h2 .t{display:block;margin-bottom:20px;color:#ffffff;}
.m5 .m5-body .m-title h2 .icon{display:block;width:50px;height:50px;background:#ffffff;border-radius:50%;line-height:50px;text-align:center;}
.m5 .m5-body .m5-body-wrapper{width:140%;display:grid;grid-template-columns:repeat(3, 1fr);gap:30px;}
.m5 .box .img img{width:100%;height:300px;border-radius:20px;object-fit:cover;}
.m5 .box .content{padding:20px 0;display:flex;flex-direction:column;gap:15px;}
.m5 .box .content h3{font-size:1.2em;color:#693B2A;line-height:1.2;min-height:2.4;font-weight:700;}
.m5 .box .content h3:hover a{color:#F19867;}
.m5 .box .content .text{font-size:1em;color:#707070;}
.m5 .box .content .more{display:flex;flex-direction:row;gap:15px;align-items:center;width:fit-content;color:#693B2A;font-weight:700;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;}
.m5 .box .content .more:hover{color:#F19867;}
@media only screen and (max-width:991px){
    .m5 .title, .m5 .m5-body{display:unset;grid-template-columns:unset;}
    .m5 .m5-body .m-title{margin:30px 30px 0 0;}
    .m5 .m5-body .m5-body-wrapper{width:100%;grid-template-columns:1fr;}

}
/*--- M6 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m6{padding:50px 0;}
.m6 .title{margin-bottom:50px;}
.m6 .title h2{font-size:1.81em;text-transform:uppercase;position:relative;line-height:2em;letter-spacing:5.8px;padding-left:30px;margin:0;}
.m6 .title h2:before{content:'';width:7px;height:7px;background:#F19867;position:absolute;left:0;top:calc(50% - 3.5px);}
.m6 .title h2>a{color:#721717}
.m6 .title small{display:block;font-size:1.12em;color:#707070;}
.m6 .m6-body{width:100%;height:auto;min-height:200px;}
.m6 .url{display:block;text-align:center;}
.m6 .url a{display:inline-block;font-size:20px;color:#707070;}
@media only screen and (max-width:991px){
    .m6 .title h2{text-align:center;line-height:1;margin-bottom:20px;}
    .m6 .title h2:before{display:none;}
    .m6 .title small{text-align:center;}
}
/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{padding:100px 0 75px 0;overflow:hidden;background:url('../images/footer-bg.jpg') no-repeat top center;background-size:cover;-moz-background-size:cover;-o-background-size:cover;-webkit-background-size:cover;}
footer .f-left{position:relative;padding-top:75px;}
footer .f-left:before{content:'';border-right:1px solid #693b2a;height:300%;position:absolute;right:0;top:-255px;}
footer .f-left:after{content:'';width:200%;position:absolute;top:250px;right:0;border-top:1px solid #693b2a;}
footer .f-left h3{font-size:1em;font-weight:700;color:#721717;}
footer .f-left ul{list-style:none;margin:0;padding:0;margin-bottom:30px;}
footer .f-left ul>li>a{font-size:1.25em;font-weight:200;color:#707070;line-height:32px;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;}
footer .f-left ul>li>a:hover{color:#C6B9AA;}
footer .f-left .logo{margin-bottom:75px;}
footer .f-left .logo img{max-width:100%;height:auto;}
footer .f-right{}
footer .f-right .f-right-top{margin-bottom:75px;padding:0 10%;}
footer .f-right .f-right-top h3{font-size:42px;color:#721717;position:relative;width:fit-content;font-weight:300;}
footer .f-right .f-right-top h3 span{position:relative;z-index:9;}
footer .f-right .f-right-top h3 .icon{position:absolute;right:-10%;bottom:0;max-width:55%;height:auto;}
footer .f-right .f-right-center{margin-bottom:75px;padding:0 10%;}
footer .f-right .f-right-center .f-flex{display:flex;flex-direction:row;}
footer .f-right .f-right-center .f-flex>div{max-width:50%;flex:0 0 50%;}
footer .f-right .f-right-center .f-flex .f-flex-left a{display:block;font-size:2.5em;color:#721717;font-weight:200;line-height:1.6em;}
footer .f-right .f-right-center .f-flex .f-flex-right{display:flex;flex-direction:row;gap:20px;}
footer .f-right .f-right-center .f-flex .f-flex-right .whatsapp-btn{background:#fff;width:120px;border-radius:20px;min-height:120px;}
footer .f-right .f-right-center .f-flex .f-flex-right .whatsapp-btn a{color:#C6B8AA;display:flex;flex-direction:column;justify-content:center;align-items:center;height:100%;gap:20px;}
footer .f-right .f-right-center .f-flex .f-flex-right .whatsapp-btn i{font-size:2em;}
footer .f-right .f-right-center .f-flex .f-flex-right .whatsapp-btn span{font-weight:200;}
footer .f-right .f-right-center .f-flex .f-flex-right .social-media{background:#fff;border-radius:20px;flex-grow:1;}
footer .f-right .f-right-center .f-flex .f-flex-right .social-media>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;gap:0;justify-content:space-evenly;align-items:center;height:100%;}
footer .f-right .f-right-center .f-flex .f-flex-right .social-media>ul>li>a{color:#C6B9AA;display:block;font-size:1.7em;}
footer .f-right .f-right-bottom{padding:75px 0;position:relative;}
footer .f-right .f-right-bottom:before{content:'';width:150%;height:1px;position:absolute;top:0;left:-25px;background:#693b2a;}
footer .f-right .f-right-bottom:after{content:'';width:150%;height:1px;position:absolute;bottom:0;left:-25px;background:#693b2a;}
footer .f-right .f-right-bottom .f-flex{display:flex;flex-direction:row;align-items:center;}
footer .f-right .f-right-bottom .f-flex .working-hours{max-width:50%;flex:0 0 50%;padding:0 10%;}
footer .f-right .f-right-bottom .f-flex .working-hours h3{font-size:1.37em;font-weight:700;color:#721717;margin-bottom:20px;}
footer .f-right .f-right-bottom .f-flex .working-hours p{font-size:1.68em;color:#721717;margin:0;font-weight:300;}
footer .f-right .f-right-bottom .f-flex .meeting{max-width:50%;flex:0 0 50%;display:flex;flex-direction:column;justify-content:flex-end;align-items:flex-end;position:relative;padding-left:30px;text-align:center;}
footer .f-right .f-right-bottom .f-flex .meeting:before{content:'';width:1px;height:calc(100% + 174px);position:absolute;left:0;top:-86px;background:#693b2a;}
footer .f-right .f-right-bottom .f-flex .meeting a{display:flex;flex-direction:column;justify-content:center;align-items:center;}
footer .f-right .f-right-bottom .f-flex .meeting a>img{position:relative;z-index:9;}
footer .f-right .f-right-bottom .f-flex .meeting a>span{position:relative;width:fit-content;}
footer .f-right .f-right-bottom .f-flex .meeting a>span>span{position:relative;z-index:9;text-align:center;font-size:1.56em;color:#908274;display:block;font-weight:200;line-height:50px;}
footer .f-right .f-right-bottom .f-flex .meeting a>span>.icon{position:absolute;bottom:0;left:-10%;width:120%;height:auto;}
footer .swa{margin-bottom:50px;text-align:center;}
footer .swa>a>img{display:block;width:50px;height:50px;margin:0 auto;opacity:.95;}
footer .f-services{padding:30px;}
footer .f-services h3{font-size:1em;font-weight:700;color:#721717;}
footer .f-services a{display:block;font-size:1.25em;font-weight:200;color:#707070;line-height:32px;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;}
footer .f-services a:hover{color:#C6B9AA;}
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;margin-top:30px;}
footer .contracts a{display:inline-block;padding:0 10px;font-size:.8em;margin:0 0 5px 0;}
@media only screen and (max-width:767px){
    footer .f-left .logo img{display:block;margin:0 auto;}
    footer .f-left h3{text-align:center;}
    footer .f-left ul>li>a{display:block;text-align:center;}
    footer .f-left:before{display:none;}
    footer .f-right .f-right-top{padding:0;}
    footer .f-right .f-right-center{padding:0;}
    footer .f-right .f-right-top h3{text-align:center;}
    footer .f-right .f-right-top h3 .icon{left:0;right:0;margin:0 auto;}
    footer .f-right .f-right-center .f-flex{flex-direction:column;}
    footer .f-right .f-right-center .f-flex>div{max-width:100%;flex:0 0 100%;}
    footer .f-right .f-right-center .f-flex .f-flex-left{margin-bottom:30px;}
    footer .f-right .f-right-center .f-flex .f-flex-left a{font-size:2em;text-align:center;}
    footer .f-right .f-right-bottom .f-flex{flex-direction:column;gap:40px;}
    footer .f-right .f-right-bottom .f-flex .working-hours{max-width:100%;flex:0 0 100%;padding:0 15px;text-align:center;}
    footer .f-right .f-right-bottom .f-flex .meeting{max-width:100%;flex:0 0 100%;}
    footer .f-right .f-right-bottom .f-flex .meeting:before{display:none;}
    footer .f-services h3{text-align:center;}
    footer .f-services a{text-align:center;}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
    footer .f-left .logo img{display:block;margin:0 auto;}
    footer .f-right .f-right-top{padding:0;}
    footer .f-right .f-right-center{padding:0;}
    footer .f-right .f-right-bottom .f-flex .working-hours{padding:0;}
    footer .f-right .f-right-bottom .f-flex .meeting{justify-content:center;align-items:center;}
    footer .f-left:before{display:none;}
    footer .f-services h3{text-align:center;}
    footer .f-services a{text-align:center;}
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
    footer .f-right .f-right-center .f-flex .f-flex-left a{font-size:1.7em;}
    footer .f-right .f-right-bottom .f-flex .working-hours p{font-size:1.2em;}
}
/*--- 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;color:#721717;position:relative;width:fit-content;}
.page .page-head h1 *{position:relative;z-index:99;}
.page .page-head h1:before{content:'';width:100%;height:80%;position:absolute;opacity:.3;transform:translate(25%,0);bottom:0;right:0;background:url('../images/firca.svg') no-repeat center center;background-size:contain;-webkit-background-size:contain;-moz-background-size:contain;-o-background-size:contain;}
.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(.5);transform: scale(.5);}}

.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:hover{z-index: 9999999;}
.fixed-button>a>i{line-height:40px;font-size:17px;}
.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;}

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