/**************************************************************************************************************
                                    HOTEL THE MEWAr
                    Colors: 
                        #FFF - White
                        #F8b55E - Amaranth
                        #FFB20F - Dark Tangerine
                        #333 - Night Rider
                        #3E6990 - Calypso
                    Font:
                        Headings : Monoton
                        Content : Comfortaa
**********************************************************************************************************/

/*******************************************************************************************
                                            CSS Variables
*******************************************************************************************/
:root{
    --white: #fff;
    --pink: #F8b55E;
    --orange: #FF9F19;
    --greyblack: #41464b;
    --blue: #3E6990;
    --purple: #731DD8;
    --white-blue: #f8faff;
}
/*********************************************SCROLL-BAR**********************/
::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}
::-webkit-scrollbar-track{
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background: #aaa;
}
::-webkit-scrollbar-thumb:hover {
    background: #777;
}
::selection{
    background-color: #fff;
    color: var(--pink);
}
/*******************************PRE-LOADER***************************************/
#pre-loader{
    position: fixed;
    background: var(--white);
    height: 100%;
    width: 100%;
    z-index: 99999;
    opacity: 1;
    display: block;
    transition: opacity .5s ease-out;
}
.loader-area{
    width: 200px;
    height: 200px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loader-ring{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 8px solid #edd4e1;
    border-top: 8px solid var(--pink);
    animation: rotate 2.5s linear infinite;
}
.loading-logo{
    position: absolute;
    top: 25%;
    left: 20%;
    animation: blink .5s alternate infinite;
}
@keyframes blink {
    from{opacity: 1;}
    to{opacity: 0;}
}
@keyframes rotate {
    from{transform: rotate(360deg);}
}
/*********************************************************************************************
                                            @font-face
**********************************************************************************************/
@font-face{
    font-family: 'Comfortaa';
    src: url('fonts/Comfortaa/Comfortaa-Regular.ttf');
    font-weight: normal;
}
@font-face{
    font-family: 'Comfortaa';
    src: url('fonts/Comfortaa/Comfortaa-Bold.ttf');
    font-weight: bold;
}
@font-face{
    font-family: 'Monoton';
    src: url('fonts/Monoton/Monoton-Regular.ttf');
    font-weight: normal;
}

/*****************************************************************************************************
                                            General CSS
******************************************************************************************************/
html, body{
    font-family: 'Comfortaa','Roboto', sans-serif;
    margin: 0;
    overflow-x: hidden;
}
section{
    font-size: 15px;
    position: relative;
    margin-bottom: 40px;
}
div[class*="-cover"]{
	position: relative;
    height: 100%;
    background-size: cover;
}
section[id*="-home"]{
    height: 100vh;
}
h1{
    font-size: 30px;
    font-weight: bold;
    color: var(--white);
}
h2{
    font-size: 30px;
    font-weight: bold;
    color: var(--white);
}
.title-pink{
    color: var(--pink);
    font-size: 40px;
    font-weight: bold;
}
h2.title-white.text-center,
h2.title-black.text-center{
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
    padding-top: 40px;
    margin-bottom: 0;
    font-weight: bold;

}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after{
    font-size: 25px;
    margin-left: 0;
}
h2.title-black.text-center{
    color: var(--greyblack);
}
.btn-general{
    padding: 10px 20px;
    border-radius: 0;
    margin-top: 20px;
    margin-right: 20px;
    font-weight: bold;
}
.btn-pink{
    border: solid 2px var(--pink);
    color: var(--pink);
    border-radius: 10px;
    /*box-shadow: #333 1px 2px 2px 2px;*/
}
.btn-pink-fill{
    border: solid 2px var(--pink);
    background-color: var(--pink);
    color: var(--white);
    border-radius: 10px;
}
.btn-pink-fill:hover,
.btn-pink-fill:focus{
    background-color: transparent;
    color: var(--pink);
}
.btn-pink:hover,
.btn-pink:focus{
    background-color: var(--pink);
    color: var(--white);
}
.btn-white{
    border: solid 2px var(--white);
    color: var(--white);
    border-radius: 10px;
}
.btn-white:hover,
.btn-white:focus{
    background-color: var(--white);
    color: var(--pink);
}
.page-divider:before{
    content: "";
    display: block;
    height: 15px;
    width: 15px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--pink);
    position: relative;
    top: -6px;
}
.page-divider{
    content: '';
    border-radius: 50%;
    display: block;
    height: 4px;
    width: 180px;
    border-left: 80px solid var(--orange);
    border-right: 80px solid var(--orange);
    margin: 20px auto 40px;
    z-index: 999;
    position: relative;
}

.op,.op-dark,.op-mid{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.op{
    background-color: rgba(0,0,0,0.3);
}
.op-mid{
    background-color: rgba(0,0,0,0.5);
}
.op-dark{
    background-color: rgba(0,0,0,0.8);
}
@keyframes rotateLeftRight {
    from{transform: rotate(50deg);}
    to{transform: rotate(-50deg);}
}
.scroll-down{
    height: 80px;
    width: 60px;
    margin: 0 auto;
    animation-name: rotateLeftRight;
    animation-direction: alternate-reverse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    flex: .15;
}
.scroll-down .down-arrow{
    border-radius: 100%;
    border: #fff solid 2px;
    height: 40px;
    width: 40px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    transform: rotate(90deg);
    padding-top: 5px;
    display: block;
    cursor: pointer;
    margin: 0 auto 10px;
}
.scroll-down .dot{
    border-radius: 100%;
    background-color: #fff;
    height: 8px;
    width: 8px;
    display: block;
    margin: 5px auto;
}
/******************************************************************************************************
                                        OWL Carousel 
******************************************************************************************************/

.owl-stage-outer {
    position:relative;
    z-index:10;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    position:relative;
    z-index:99;
    margin-top:-35px;
}
.prev-btn>i, .next-btn>i{
    line-height: 50px;
}
.prev-btn,
.next-btn{
    z-index: 9997;
    width: 50px;
    height: 50px;
    position: absolute;
    text-align: center;
    background: rgba(0,0,0,0.5);
    color: #aaa;
    cursor: pointer;
    border-radius: 20px;
}
.prev-btn{
    top: 45%;
    left: 10px;
}
.next-btn{
    top: 45%;
    right: 10px;
}
.curve{
    background: white;
    position: absolute;
    width: 300px;
    height: 60px;
    bottom: -16px;
    left: 50%;
    margin: 0 0 0 -150px;
    z-index: 98;
    border-radius: 51px 51px 0 0;
}
.curve::before{
    content: '';
    display: block;
    position: absolute;
    left: -13px;
    bottom: -20px;
    background: white;
    width: 11%;
    height: 100%;
    transform: rotate(45deg);
}
.curve::after{
    content: '';
    display: block;
    position: absolute;
    right: -13px;
    bottom: -20px;
    background: white;
    width: 11%;
    height: 100%;
    transform: rotate(-45deg);
}
/******************************************************************************************************
                                        PARALLAX BG
******************************************************************************************************/
.bg-parallax{
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/*****************************************************************************************
                                        Header CSS
******************************************************************************************/
#image-title{
    color: var(--pink);
    text-align: left;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 10px 0px 30px;
}
#image-title img {
    height: 24px;
}
#image-title .image-sub-title{
    font-size: 14px;
    text-align: left;
    padding: 0.25rem;
    margin: 0.25rem;
    color: #00DD80;
    text-transform: none;
    margin-left: 0;
    padding-left: 0;
}
#image-title .couple {
    border: 2px solid var(--pink);
    border-radius: 5px;
    display: inline-block;
}
#image-title .couple-friendly {
    color: var(--white);
    background-color: var(--pink);
    padding: 5px;
}
#image-title .hearts {
    padding: 5px 0 5px 5px;
}
.elegance-brand{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}
.image{
    background-image: url('../images/logo.png');
    width: 100px;
    height: 77px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
}
.text-black, .text-white{
    text-transform: uppercase;
    z-index: 999;
    position: relative;
}
.text-black{
    color: var(--greyblack);
}
.text-white{
    color: var(--white);
}
#elegance-menu .menu>li>a{
    line-height: .5;
    font-size: 18px;
}
#elegance-menu .menu>li.active a{
    background: var(--pink);
    color: var(--white);
    height: 40px;
}
#elegance-menu .menu>li>a:hover,
#elegance-menu .menu>li>a:focus{
    text-decoration: none;
    outline: 0;
    color: var(--white);
}

@media (min-width: 1199px) {
    #elegance-menu .menu{
        list-style: none;
        padding-left: 0;
        transform: translate(-5%, 55%);
    }
    .navbar.navbar-default.navbar-start li>a{
        color: var(--white);
    }
    .navbar.navbar-default.navbar-start{
        background: transparent;
        border: 0;
        box-shadow: 0 0 0 #ababab;
    }
}
.navbar.navbar-default{
    border: 0;
    background: var(--white);
    box-shadow: 0 5px 10px #ababab;
}
@keyframes hoverAnimation
{
    from{
        width: 0;
        left: 50%;
    }
    to{
        width: 100%;
        left: 0;
    }
}
a:hover + .block,
a:focus + .block{
    display: block;
    animation: hoverAnimation .3s linear;
}

.block{
    display: none;
    width: 100%;
    background: var(--pink);
    height: 40px;
    position: absolute;
    top: 0;
    z-index: -1;
}
/*********************************************************************************************
                                        HOME SECTION
**********************************************************************************************/
#home{
    height: 100%;
    position: relative;
}
.stretch{
    height: 100vh;
    object-fit: cover;
    object-position: 50% 50%;
}
.home-cover{
    position: relative;
}
p{
    color: var(--white);
}
#home .content-box {

    justify-content: center;
}
.content-box{
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    top: -100%;
}
.home-content h1{
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}
.home-content{
    margin: 0 auto;
    text-align: center;
    animation-duration: 1s;
    animation-delay: 0.2s;
    flex: .45;
}
.home-content .title-pink{
    font-weight: 600;
    font-size: 50px;
    display: block;
    letter-spacing: 5px;
    line-height: 65px;
}
#home .home-content h1{
    font-family: 'Comfortaa','Roboto', sans-serif;
}
#home .page-divider{
    position: relative;
    bottom: -30px;
}
/*********************************************************************************************
                                        OUR HOTEL SECTION
**********************************************************************************************/
#our-hotel .content p{
    color: #666;
    text-align: justify;
    line-height: 30px;
    letter-spacing: 2px;
    text-indent: 50px;
    font-weight: 600;
}
.arrange-flex{
    display: flex;
    flex-direction: row;
    align-items: center;
}
/*********************************************************************************************
                                        watch-out SECTION
**********************************************************************************************/
#watch-out{
    position: relative;
}
#watch-out .watch-out-bg{
    background-image: url(../images/pattern-yellow.jpg);
    overflow: hidden;
}
.cards{
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 50px;
}
.cards .card{
    position: relative;
    background-size: cover;
    height: 230px;
    width: 100%;
    background-repeat: no-repeat;
}
.cards .card-padding{
    margin-bottom: 80px;
}
.cards .card:hover .title{
    bottom: 80%;
}
.cards .card:hover .description{
    z-index: 0;
    left: 50%;
    margin-left: -30%;
}
.cards .card:hover a{
    z-index: 0;
    left: 50%;
    margin-left: -13%;
}
.cards .card .description{
    height: 150px;
    text-align: justify;
    width: 60%;
    position: absolute;
    left: 300px;
    top: 60px;
    z-index: -1;
    line-height: 18px;
    transition: left 1s, z-index 1s;
}
.cards .card a{
    position: absolute;
    left: -20px;
    bottom: 10px;
    z-index: -1;
    transition: left 1s, z-index 1s;
}
.cards .card .title{
    position: absolute;
    bottom: 0;
    color: var(--white);
    width: 100%;
    transition: bottom .5s;
}
.cards .card .title h3{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}
.card.card1{
    background-image: url(../images/rooms/room8.jpg);
}
.card.card2{
    background-image: url(../images/resto/resto-1.jpg);
}
.card.card3{
    background-image: url(../images/gallery/wedding-ring.jpg);
}
.card.card4{
    background-image: url(../images/gallery/conferences.jpg);
}
.bold{
    font-size: 15px;
    font-weight: bold;
}
/************************FACILITIES****************************************/
.arrange-content{
    display: flex;
    flex-wrap: wrap;
}
.item{
    margin: 0 0 20px;
    padding: 20px 0;
    cursor: pointer;
}

.item-icon i::before{
    float: left;
    color: var(--pink);
    padding: 15px;
    margin-right: 25px;   
    width: 80px;
    height: 80px;
    text-align: center;
    font-size: 40px;
}
.item:hover .item-icon i::before{
    color: var(--white);
/*    background: var(--pink);*/
    background: linear-gradient(to top right, #971832, var(--pink));
    border-radius: 50%;
    transform: rotate(360deg);
    transition: transform .8s ease;
}

.item-title h3{
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px;
}

.item-desc p{
    margin: 0;
    padding-left: 100px;
    color: var(--greyblack);
}
/*********************************************************************************************
                                        LOCATE US SECTION
**********************************************************************************************/
#map {
    height: 500px;
    width: 100%;
}
/**********************************************************************************************
                                        TOP LAYOUT SECTION
************************************************************************************************/
.content-box .home-content h1{
    font-family: 'Monoton', cursive;
    font-size: 60px;
    font-weight: 300;
}
/************************ACTIVITIES COVER*******************************/
#activities-home .activities-cover{
    background-image: url(../images/activities/camel.jpg);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
#activities-home{
    margin-bottom: 0;
}
.content-box .home-content h1{
    font-size: 60px;
}
#main-content{
    margin-bottom: 0;
}
#main-content .activities,#main-content .activities .activities-list-wrapper {
    background-color: var(--pink);
}
#main-content .activities{
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
#main-content .activities .activities-list{
    list-style: none;
    text-align: right;
    padding: 10% 0;
}
#main-content .activities .activities-list li a{
    color: rgba(255,255,255,0.6);
}
#main-content .activities .activities-list li:hover a, #main-content .activities .activities-list li:visited a,#main-content .activities .activities-list li:active a, #main-content .activities .activities-list li:hover .list-icon::before{
    text-decoration: none;
    text-underline: none;
    color: var(--white);
    cursor: pointer;
}
#main-content .activities .activities-list li:hover .triangle{
    /*display: inline-block;*/
    z-index: 1;
}
#main-content .activities .activities-list li{
    font-size: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}
#main-content .activities-list li a{
    margin-right: 20%;
}
#main-content .activities-list .list-icon::before{
    /*font-size: 25px;*/
    margin-right: 20px;
    color: rgba(255,255,255,0.6);;
}
#main-content .activities .activities-list-wrapper {
    flex: 1.5;
}
#main-content .activities .show-activity *{
    color: var(--greyblack);
}
#main-content .activities .show-activity{
    flex: 2;
    background-color: var(--white);
}
#main-content .activities .show,#main-content .activities .hide{
    padding: 10%;
}
#main-content .activities-list .show{
    display: block;
}
#main-content .activities-list .hide{
    display: none;
}
#main-content .show-activity i::before{
    color: var(--pink);
    font-size: 100px;
}
#main-content .activities .activities-list .list-show a,#main-content .activities .activities-list .list-show i::before{
    color: var(--white);
}
#main-content .activities-list .list-hide .triangle{
    /*display: none;*/
    z-index: -1;
    position: relative;
}
#main-content .activities-list .triangle {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}
/************************ROOMS PAGE*********************************/

/************************ROOM COVER*******************************/
.room-cover{
    background-image: url(../images/rooms/cover2.jpg);
    background-position: 0 60%;
    background-repeat: no-repeat;
}
/************************ROOMS****************************************/
.odd{
    /*box-shadow: 9px 18px 15px #4e4e4e;*/
    box-shadow: 9px 17px 30px #ababab;
}
.even{
    /*box-shadow: -9px 18px 15px #4e4e4e;*/
    box-shadow: -9px 17px 30px #ababab;
}
.room-type{
    margin-bottom: 100px;
    margin-top: 50px;
    position: relative;
}
.room-type .container-fluid{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.room-image,.img,.room-image img{
    border-radius: 10px;
}
.room-image{
    position: relative;
    flex: 1;
}
.room-image .img:hover::after,
.room-image .img:hover::before{
    width: 100%;
    height: 100%;
}
.room-image .img::before,
.room-image .img::after{
    transition: all .8s ease-out;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}
.room-image .img::before{
    left: 0;
    bottom: 0;
    background: linear-gradient( to bottom left, transparent 0%, transparent 50%, rgba(237,37,78,0.2) 50%, rgba(255,159,25,0.2) 100%);
}
.room-image .img::after{
    right: 0;
    top: 0;
    background: linear-gradient( to top right, transparent 0%, transparent 50%,rgba(237,37,78,0.2) 50%, rgba(255,159,25,0.2) 100%);
}
/*.room-image .img::before{*/
    /*left: 0;*/
    /*bottom: 0;*/
    /*background: linear-gradient( to bottom left, transparent 0%, transparent 50%, rgba(79, 208, 206,0.5) 50%, rgba(122, 93, 158,0.5) 100%);*/
/*}*/
/*.room-image .img::after{*/
    /*right: 0;*/
    /*top: 0;*/
    /*background: linear-gradient( to top right, transparent 0%, transparent 50%,rgba(79, 208, 206,0.5) 50%, rgba(122, 93, 158,0.5) 100%);*/
/*}*/
.room-image img{
    object-fit: cover;
    width: 100%;
    height: 550px;
}
.room-image .right-badge,
.room-image .left-badge{
    background: var(--pink);
    margin: 0;
    text-align: center;
    font-size: 35px;
    position: absolute;
    top: 30px;
    font-weight: 300;
    padding: 10px 40px 5px;
    text-transform: uppercase;
}
.room-image .right-badge{
    right: -30px;
}
.room-image .left-badge{
    left: -30px;
}
.room-image .right-badge::after,
.room-image .left-badge::after{
    content: "";
    position: absolute;
    bottom: -20px;
    height: 20px;
    width: 30px;
    /*border-top: solid 20px #BA7413;*/
    border-top: solid 20px #be1034;
}
.room-image .right-badge::after{
    right: 0;
    border-right: solid 30px transparent;
}
.room-image .left-badge::after{
    left: 0;
    border-left: solid 30px transparent;
}
.room-details{
    position: relative;
    text-align: center;
    flex: 0.5;
}
.room-details .desc,
.room-details a{
    margin: 35px 40px;
    text-align: justify;
}
.listing{
    display: block;
    margin-top: 20px;
    text-align: justify;
    padding-left: 30%;
}
.room-details h4{
    font-size: 15px;
    font-weight: 300;
    display: inline-block;
}
.room-details *{
    color: var(--greyblack);
}
.room-facilities{
    list-style: none;
    padding-left: 0;
}
hr{
    background-color: #353535;
    height: 3px;
    width: 50%;
    margin: 0 auto;
    position: absolute;
    left: 25%;
}
.top-hr{
    top: 5px;
}
.bottom-hr{
    bottom: 5px;
}
.green-dot{
    display: inline-block;
    background-color: lawngreen;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

/*******************************AMENITIES PAGE************************/
.amenities-cover{
    background-image: url('../images/amenities-cover.jpg');
    background-position: 0 100%;
    background-repeat: no-repeat;
}
#conference .conference-content p{
    color: var(--greyblack);
    text-align: justify;
}
.conference-content{
    padding-left: 20px;
    flex: 1.5;
}
.wedding-content{
    padding-left: 20px;
    flex: 1.5;
}
.conference-img {
    margin-top: -20px;
    flex: 1;
}
.wedding-img{
    flex: 1;
}
.amenities{
    margin-top: 20px;
    list-style: none;
}
.amenities li{
    padding: 10px;
    font-size: 24px;
}
#restaurant{
    background-image: url('../images/food.jpg');
    margin-bottom: 0;
    padding: 40px 0;
    background-position: 0 100%;

}
#restaurant .item *{
    color: var(--white);
}
#restaurant .item-icon i::before {
    color: var(--white);
     background: var(--pink);
    border-radius: 50%;
}

#conference p,
#wedding-content p{
    color: #666;
    text-align: justify;
    line-height: 30px;
    letter-spacing: 2px;
    text-indent: 50px;
    font-weight: 600;
}
/*****************CONTACT US*****************************/
#message{
    resize: none;
}
.form-container{
    padding: 40px;
}
.contact-us-cover{
    background-image: url('../images/contact-us.jpg');
    background-position: 0 40%;
    background-repeat: no-repeat;
}
#contact-form .bank-account-details h3{
    color: var(--pink);
}
.form-btn{
    padding: 0;
    border-radius: 0;
}
/*****************BOOK NOW*****************************/
#message{
    resize: none;
}
.form-container{
    padding: 40px;
}
.book-now-cover{
    background-image: url('../images/book-now.jpg');
    background-position: 0 40%;
    background-repeat: no-repeat;
}
.bank-account-details h3{
    color: var(--pink);
}
.bank-account-details{
    /*border-left: var(--greyblack) 1px solid;*/
    padding-left: 30px;
    padding-top: 5px;
}
.bank-account{
    color: var(--greyblack);
    font-size: 13px;
    text-align: justify;
    padding: 20px;
}
/*********************************************************************************************
                                        FOOTER SECTION
**********************************************************************************************/
.footer-bg {
    width: 100%;
    margin-top: -2px;
    position: relative;
    z-index: 1;
    background-color: #222;
}
.footer-main {
    padding: 25px 0 0;
}
.container.footer-main .flex-wrapper{
    margin-bottom: 10%;
}
.row #CDSWIDFRR{
    margin: 0;
}
.footer-heading {
    font-size: 20px;
    color: var(--white);
    padding-bottom: 10px;
    font-weight: 500;
    text-align: left;
}
.footer-heading::after{
    content: '';
    display: block;
    background: var(--pink);
    width: 40%;
    height: 3px;
    margin: 10px 0;
}
.footer-content{
    font-size: 13px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 0;
}
.footer-content p,.footer-content a{
    color: #aaa;
    display: inline-block;
}
.footer-icon::before{
    /*color: var(--pink);*/
    font-size: 15px;
}
.footer-develop {
    font-size: 13px;
    color: #fff;
    text-align: center;
    padding: 12px;
    margin-top: 20px;
    border-top-width: 1px;
    border-top-style: solid;
    /*border-top-color: rgba(252, 220, 135, 0.5);*/
    border-top-color: var(--pink);
}

.footer-develop a {
    font-size: 15px;
    color: var(--pink);
    text-align: center;
}
.social-sites.footer-content{
    margin-left: -20px;
}
.social-icon{
    padding: 10px;
}
.social-icon:hover,
.social-icon:focus{
    text-decoration: none;
}
.social-icon i::before{
    font-size: 30px;
    padding: 5px;
    color: #aaa;
}
.social-icon-fb i:hover::before{
    background: linear-gradient(to bottom left, blue, lightblue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.social-icon-ig i:hover::before{
    background: linear-gradient(to bottom left, red, blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.social-icon-wa i:hover::before{
    background: linear-gradient(to bottom left, lightgreen, green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.flaticon-attributes{
    margin-left: -15px;
}