/*!
 * Copyright 2015
 * Author M.P
*/

html{
    height:100%;/* make sure it is at least as tall as the viewport */
    position:relative;
    width:100%;
}
body{
    height:100%; /* force the BODY element to match the height of the HTML element */
    width:100%;
    background: #f3f3f3;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
f
  visibility:hidden;
  opacity:0;
  transition:opacity .75s;
  -webkit-transition:opacity .75s;
}
body.loaded{
  visibility:visible;
  opacity:1;
}




textarea:focus,
input[type="text"]:focus,
.uneditable-input:focus {
    border-color: transparent;
    outline: 0 none;
}

input[type="button"]:focus{
    border-color: transparent;
    outline: 0 none;
}


.transparent{
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}


.spacer-25{
    padding-top:10%;
}
.spacer-5{
    padding-top:5%;
}


/*SECTIONS*/
header{
    position: relative;
    min-height: 540px !important;
}
.container-fluid{
    padding:0px;
    margin:0px;
}


/*.wrap{
    position:absolute;
    top:50%;
    left:50%;
    display: inline-block;

    transform:translateX(-50%) translateY(-50%);
    -webkit-transform:translateX(-50%) translateY(-50%);
    -moz-transform:translateX(-50%) translateY(-50%);

}*/


/*ABOUT*/
#about{
     background-image:url(../images/about.jpg);
     background-size: cover;
    background-attachment: fixed;
     background-position: 50% 0px;
     background-repeat: no-repeat;
     position: relative;
}
#about .content{
    position:relative;
    text-align: center;
}
#about .content h1{
    font-size:46px;
    line-height:normal;
    color:#ffffff;
    display:inline-block;
    padding:0 0 19px;
    position: relative;
}
#about .content h1:after
{
    content: '';
    position: absolute;
    height:6px;
    width:60%;
    max-width:128px;
    background:url('../images/t-left.png') no-repeat left center;
    left:-60%;
    top:30px;
}
#about .content  h1.title-eng:after
{
    top:28px;
left:-80%;
}
#about .content h1:before
{
    content: '';
    position: absolute;
    height:6px;
    width:60%;
    max-width:128px;
    background:url('../images/t-right.png') no-repeat right top;
    right:-60%;
    top:30px;
}
#about .content  h1.title-eng:before
{
    top:28px;
right:-80%;
}

#about .block-left p,
#about .block-right p{
    font-size:18px;
    line-height:29px;
    color:#ffffff;
    text-align: left;
}
#about .block-left p{
    padding-right:10px;
}
#about .block-right p{
    padding-left:10px;
}

@media (max-width: 991px) {
    #about .block-left p{
        padding-right:0;
    }
    #about .block-right p{
        padding-left:0;
    }
    #about .content  h1:after
    {
        display:none;
    }
    #about .content h1:before
    {
        display:none;
    }
    #about .content h1{
        margin-top:40px;
         font-size:38px;
     }
}

/*TASK*/
nav{
    position: fixed;
    top:40px;
    left:0;
    width:100%;
    z-index: 99;
    height: 80px;
    -webkit-transition:border .25s, background .5s, top .5s ease;
    -o-transition:border .25s, background .5s, top .5s ease;
    -moz-transition:border .25s, background .5s, top .5s ease;
    transition:border .25s, background .5s, top .5s ease;
    background: transparent;
}

nav.move-top{
    top:0;
    background: #424037;
    border-bottom:0px solid #5c5a50;
}

.task{
    position: relative;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    height:100%;
}
.task.fadeTo{
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    filter: alpha(opacity=1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transition: opacity .75s ease;
    -o-transition: opacity .75s ease;
    -moz-transition: opacity .75s ease;
    transition: opacity .75s ease;
}

.fadeInAnimation{
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -ms-animation: fadein 2s;
    -o-animation: fadein 2s;
    animation: fadein 2s;
}

.logo{
    position: absolute;
    top:50%;
    left:80px;
    display: block;
    height:67px;
    width:195px;
    background-image: url('../images/logo.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size:194.5px 105px;
    z-index: 2;
    transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    -moz-transition: all .15s ease;
    transition: all .15s ease;
}
.logo.mini{
    background-position: 0 -64px;
    background-size:194.5px 105px;
    top:47px;
}


@media (max-width: 991px) {
    .logo{
        position: absolute;
        top:50%;
        left:20px;
        display: block;
        height:32px;
        width:88px;
        background-image: url('../images/logo-mini.png');
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size:100%;
        z-index: 2;
    }
    .logo.mini{
        background-position: 0 0;
        background-size:100%;
        top:50%;
    }
}


.fb{
    position: absolute;
    right:115px;
    top:50%;
    display: inline-block;
    transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    margin:0;
    background-image: url('../images/fb.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size:7px 14px;
    padding:0 17px 0 14px;
    color:#ffffff;
    text-decoration: none;
}
.fb:after{
    content:'';
    position: absolute;
    width:1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    right:0; top:50%;
    transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
}
.fb:hover,.fb:active,.fb:visited,.fb:focus{
    color:#ffffff;
    text-decoration: none;
}

.lang{
    position: absolute;
    right:80px;
    top:50%;
    display: inline-block;
    transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    padding:0; margin:0;
}

.lang dt{
    display:inline-block;
    font-size:16px;
    font-weight:normal;
    opacity:1;
    color:#ffffff;
    position:relative;
    cursor:pointer;
}

.lang dt:hover{
    opacity:0.8;
    -webkit-transition: opacity .6s ease;
    -o-transition: opacity .6s ease;
    transition: opacity .6s ease;
}




/*MENU*/

.menu{
    position: absolute;
    left:50%;
    top:50%;
    display: inline-block;
    transform:translateX(-50%) translateY(-50%);
    -webkit-transform:translateX(-50%) translateY(-50%);
    -moz-transform:translateX(-50%) translateY(-50%);
    padding:0; margin:0;
}

.menu .menu-item{
    display:inline-block;
    position: relative;
    margin:0px; padding:0px;
    margin-right:27px;
}

.menu .menu-item:last-child{
    margin-right:0px;
}

.menu .menu-item a{
    font-size:18px;
    color:#ffffff;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
}
.main-page .menu .menu-item a{
    font-size:20px;
    color:#ffffff;
}
.menu .menu-item.active a{
    color:#ffffff;
}
.main-page .menu .menu-item.active a{
    color:#ffffff;
}

.menu .menu-item::before {
    content: '';
    color:transparent;
    position: absolute;
    bottom: -3px;
    left: 0;
    right:0;
    margin:0 auto;
    padding: 0 0;
    width:0;
    border-bottom: 2px solid #ffffff;
    height:1px;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
}
.main-page .menu .menu-item::before {
    border-bottom: 2px solid #ffffff;
}

.menu .menu-item.active::before{
    width: 100%;
}



.menu .menu-item:hover::before,
.menu .menu-item:focus::before {
    width: 100%;
}

.menu .menu-item:hover a,
.menu .menu-item:focus a {
    color:#ffffff;
}
.main-page .menu .menu-item:hover a,
.main-page .menu .menu-item:focus a {
    color:#ffffff;
}


.fadeOut{
    opacity:1;
}
.fadeIn{
    opacity:1;
}



@media (max-width: 991px) {
    nav{
        top:0px;
    }

    .task{
        padding:0px;
    }
    .menu-navbar{
        background: #424037;
        height: 100%;
        display: none-;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 3;
        backface-visibility: hidden;
        -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
        -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
        -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
        transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);

    }
    .menu-navbar.slideRight{
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    .lang{
        position: absolute;
        right:auto;
        left:125px;
        margin: 0;
        text-align: left;
        top:310px;
        padding:0;
        opacity:0;
    }
.lang-eng{

        left:180px;
}
    .lang dt{
        color:#ffffff;
    }

    .fb{
        position: absolute;
        right:auto;
        left:25px;
        top:310px;
        display: inline-block;
        opacity:0;
    }


    .menu{
        position: absolute;
        left:25px;
        top:87px;
        display: inline-block;
        transform:translateX(0%) translateY(0%);
        -webkit-transform:translateX(0%) translateY(0%);
        -moz-transform:translateX(0%) translateY(0%);
        padding:0; margin:0;
    }

    .menu .menu-item{
        display:block;
        position: relative;
        margin-right:0px;
        margin-bottom:5px;
    }
    .menu .menu-item::before {
        position: absolute;
        bottom: -3px;
        left: 0;
        padding: 0px 0;
        width:0%;
        border-bottom: 0px solid #da020d;
        content: '';
        height:1px;
        display:none;
        -webkit-transition: width 0.3s;
        -moz-transition: width 0.3s;
        transition: width 0.3s;
    }
    .menu .menu-item a{
        font-size:24px;
        color:#ffffff;
    }
    .main-page .menu .menu-item a{
        font-size:24px;
        color:#ffffff;
    }
    .menu .menu-item.active a{
        color:#ffffff;
    }
    .menu .menu-item:hover a,
    .menu .menu-item:focus a {
         color:#ffffff;
    }


    .fadeOut{
        opacity:0;
        -webkit-transition:all 0.35s ease-in-out;
        -moz-transition: all 0.35s ease-in-out;
        -ms-transition: all 0.35s ease-in-out;
        -o-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }
    .fadeIn{
        opacity:1;
        -webkit-transition:all 0.35s ease-in-out;
        -moz-transition: all 0.35s ease-in-out;
        -ms-transition: all 0.35s ease-in-out;
        -o-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    #mask{
        background: #2c2c2c;
        position:fixed;
        left:0px;
        right:0px;
        bottom:0px;
        top:0px;
        opacity:0.7;
        width:100%;
        height: 100%;
        z-index: 2;
        display:none;
    }
}







/*Brands*/

/*CONTACTS*/



#brands{
    background:#f5f3e6;
    position: relative;
}

#brands .brands-wrap{
    padding:100px 0 200px;
    display: table;
    margin:0 auto;
    text-align: center;
}
#brands .brands-wrap h1{
    font-size:46px;
    line-height:normal;
    color:#161616;
    display:inline-block;
    /*padding:0 0 28px;*/
    position: relative;
}
#brands .brands-wrap  h1:after
{
    content: '';
    position: absolute;
    height:6px;
    width:60%;
    max-width:128px;
    background:url('../images/tb-left.png') no-repeat left center;
    left:-60%;
    top:30px;
}
#brands .brands-wrap  h1.title-eng:after
{
    top:28px;
	left:-80%;
}
#brands .brands-wrap h1:before
{
    content: '';
    position: absolute;
    height:6px;
    width:60%;
    max-width:128px;
    background:url('../images/tb-right.png') no-repeat right top;
    right:-60%;
    top:30px;
}
#brands .brands-wrap h1.title-eng:before
{
    top:28px;
	right:-80%;
}



#brands .brands-wrap p{
    font-size:18px;
    line-height:29px;
    color:#000000;
    padding:0;
    margin:0;
}


/*categories*/
.brand-categories{
    padding: 0;
    margin:30px 0px 0px;
}
.brand-categories li{
    padding: 0;
    margin:0 0 0 25px;
    list-style-type: none;
    display: inline-block;
}
.brand-categories li:first-child{
    margin:0 0 0 0;
}
.brand-categories li a{
    position: relative;
    text-decoration: none;
    color:#000000;
    opacity:0.5;
    font-size:15px;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.brand-categories li a.active{
    opacity:1;
}

.brand-categories li a::before {
    content: '';
    color:transparent;
    position: absolute;
    bottom: -7px;
    left: 0;
    right:0;
    margin:0 auto;
    padding: 0 0;
    width:0;
    border-bottom: 2px solid #000000;
    height:1px;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
}

.brand-categories li a.active::before{
    width: 100%;
}

.brand-categories li a:hover{
    opacity:1;
}
.brand-categories li a:hover::before{
    width: 100%;
}


@media (max-width: 991px) {
    .brand-categories{
        padding: 0;
        margin:30px auto 0;
        width: 160px;
        position: relative;
    }
    .brand-categories li{
        margin:0 auto;
        list-style-type: none;
        width: 160px;
        text-align: left;
        display: none;
        position: absolute;
        z-index: 10;
        left:0;
        height:30px;
        padding:5px 10px 0;
    }
    .brand-categories li{
        background: rgba(66,64,55,0.94);
    }
    .brand-categories #first-li{
        top:20px;
    }
    .brand-categories #second-li{
        top:50px;
    }
    .brand-categories #third-li{
        top:80px;
    }

    .brand-categories li.active-li{
        position: relative;
        text-decoration: none;
        color:#000000;
        opacity:1;
        font-size:15px;
        display: block;
        background: url("../images/arrow-down.png") no-repeat right center transparent;
        height:auto;
        padding:0;
    }
    .brand-categories li a{
        position: relative;
        text-decoration: none;
        color:#ffffff;
        opacity:1;
        font-size:15px;
    }

    .brand-categories li a.active{
        opacity:1;
        color: #000000;
    }

    .brand-categories li a::before {
        display: none;
    }


    .brand-categories li a:hover{
        opacity:1;
    }
}



#brands-response{
    width: 100%;
    max-width: 1143px;
    margin:30px auto 0;
}


#brands-response .slick-slider{
    position: relative;
}


#brands-response ul,li{
    padding: 0; margin: 0;
    list-style-type: none;
}

#brands-response .brands-ul .brands-li{
    width:220px;
    height:140px;
    background-color: #ffffff;
    display: inline-block;
    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin:0 5px 8px 0;
    position: relative;
}
#brands-response .brands-ul .brands-li.null{
    width:220px;
    height:140px;
    background-color: transparent;
    display: inline-block;
    cursor: default;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin:0 5px 8px 0;
    position: relative;
}

#brands-response .brands-ul .brands-li a{
    background: rgba(66,64,55,0.94);
    position: absolute;
    left:0; right:0;
    top:0; bottom: 0;
    margin: auto;
    opacity:0;
    -webkit-transition:all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    color: #ffffff;
    font-size:15px;
    text-decoration: none;
}

#brands-response .brands-ul .brands-li:hover a{
   opacity:1;
}
#brands-response .brands-ul .brands-li a span{
    position: absolute;
    top:50%;
    left:0;
    width: 100%;
    text-align: center;
    transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
}
#brands-response .brands-ul .brands-li a span::after{
    content: '';
    position: absolute;
    bottom:8px;
    right:10px;
    width: 26px;
    height:2px;
    background: #ffffff;
}

#brands-response .brands-ul .brands-li:nth-of-type(4)   a span::after,
#brands-response .brands-ul .brands-li:nth-of-type(5)   a span::after,
#brands-response .brands-ul .brands-li:nth-of-type(9)   a span::after,
#brands-response .brands-ul .brands-li:nth-of-type(10)  a span::after
{
    left:10px;
}

#brands-response .brands-ul .brands-li .tooltip-txt{
    background: rgba(66,64,55,0.94);
    position: absolute;
    top:0; bottom: 0;
    opacity:0;
    vertical-align: middle;
    height: 100%;
    color: #ffffff;
    font-size:15px;
    text-decoration: none;
    width:calc(200% + 16px);
    -webkit-width:calc(200% + 16px);
    -moz-width:calc(200% + 16px);
    left:100%;
    z-index: 10;
    -webkit-transition:all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    visibility: hidden;
}
#brands-response .brands-ul .brands-li .tooltip-txt span{
    position: absolute;
    top:50%;
    left:0;
    width: 95%;
    text-align: right;
    transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);

}
#brands-response .brands-ul .brands-li:nth-of-type(4)  .tooltip-txt span,
#brands-response .brands-ul .brands-li:nth-of-type(5)  .tooltip-txt span,
#brands-response .brands-ul .brands-li:nth-of-type(9)  .tooltip-txt span,
#brands-response .brands-ul .brands-li:nth-of-type(10)  .tooltip-txt span
{
    text-align: left;
    right:0;
    left:auto;
}

#brands-response .brands-ul .brands-li:nth-of-type(4) .tooltip-txt,
#brands-response .brands-ul .brands-li:nth-of-type(5) .tooltip-txt,
#brands-response .brands-ul .brands-li:nth-of-type(9) .tooltip-txt,
#brands-response .brands-ul .brands-li:nth-of-type(10) .tooltip-txt{
    right:100%;
    left:auto;
}
#brands-response .brands-ul .brands-li:hover .tooltip-txt{
    opacity:1;
    visibility: visible;
}



@media (max-width: 1260px) {
    #brands-response{
        max-width: 800px;
    }
    #brands-response .brands-ul .brands-li .tooltip-txt{
        display: none;
    }
    #brands-response .brands-ul .brands-li a span::after{
        content: '';
        position: absolute;
        bottom:-10px;
        left:40%;
        width: 20%;
        height:2px;
        background: #ffffff;
    }
    #brands-response .brands-ul .brands-li:nth-of-type(4)   a span::after,
    #brands-response .brands-ul .brands-li:nth-of-type(5)   a span::after,
    #brands-response .brands-ul .brands-li:nth-of-type(9)   a span::after,
    #brands-response .brands-ul .brands-li:nth-of-type(10)  a span::after
    {
        content: '';
        position: absolute;
        bottom:-10px;
        left:40%;
        width: 20%;
        height:2px;
        background: #ffffff;
    }
}

@media (max-width: 991px) {
    #brands .brands-wrap h1{
        font-size:38px;
    }
    #brands-response{
        max-width: 760px;
    }
    #brands .brands-wrap  h1:after
    {
        display:none;
    }
    #brands .brands-wrap h1:before
    {
        display:none;
    }
    #brands .brands-wrap{
        padding:60px 0 200px;
        display: table;
        margin:0 auto;
        text-align: center;
    }
    #brands-response .brands-ul .brands-li.null{
        display:none;
    }
}
@media (max-width: 767px) {
    #brands-response{
        max-width: 572px;
    }
}
@media (max-width: 582px) {
    #brands-response{
        max-width: 236px;
    }
}




/*CONTACTS*/


#contacts{
    background-color:#f5f3e6;
    background-image:url(../images/contact.png);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

#contacts .contacts-wrap{
    padding:100px 0 200px;
    display: table;
    margin:0 auto;
    text-align: center;
}
#contacts .contacts-wrap h1{
    font-size:46px;
    line-height:normal;
    color:#161616;
    display:inline-block;
    padding:0 0 38px;
    position: relative;
}
#contacts .contacts-wrap h1:after
{
    content: '';
    position: absolute;
    height:6px;
    width:60%;
    max-width:128px;
    background:url('../images/tb-left.png') no-repeat left center;
    left:-80%;
    top:30px;
}
#contacts .contacts-wrap  h1.title-eng:after
{
    top:28px;
}

#contacts .contacts-wrap h1:before
{
    content: '';
    position: absolute;
    height:6px;
    width:60%;
    max-width:128px;
    background:url('../images/tb-right.png') no-repeat right top;
    right:-80%;
    top:30px;
}

#contacts .contacts-wrap  h1.title-eng:before
{
    top:28px;
}


#contacts .contacts-wrap address,.phone,.email{
    font-size:18px;
    line-height:normal;
    color:#1e1e1e;
    display:block;
    text-align: center;
}

#contacts .contacts-wrap .email{
    padding:7px 0px 31px;
}
#contacts .contacts-wrap .email a{
    text-decoration: none;
    color:#1e1e1e;
}


#contacts .contacts-wrap h2{
    font-size:30px;
    line-height:normal;
    color:#161616;
    display:inline-block;
    padding:0 0 0;
    position: relative;
}

.contact-form{
    width:100%;
    max-width:700px;
    margin:0px auto;
}
.contact-form .np{
    padding:0; margin:0;
}

.contact-form .contact-inputs{
    width:calc(100% - 10.5px);
    width:-webkit-calc(100% - 10.5px);
    width:-moz-calc(100% - 10.5px);
    height:50px;
    color:#353535;
    padding-left:23px;
    font-size:15px;
    border:2px solid #ffffff;
}
.contact-form textarea.contact-inputs{
    resize: none;
    height:145px;
}
.contact-form .contact-inputs.error{
    border:2px solid #ffa0a0;
}
.contact-form .contact-submit{
    background: #424037;
    color:#ffffff;
    font-size:15px;
    padding:0 45px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    border:0;
    margin-top:15px;
}
.contact-form .mtmb{
    margin:10px 0;
}


@media (max-width: 991px) {
    #contacts .contacts-wrap{
        padding:50px 0 200px;
    }

    #contacts .contacts-wrap h1{
        font-size:38px;
        padding:0 0 30px;
    }
    #contacts .contacts-wrap h1:after
    {
        display: none;
    }

    #contacts .contacts-wrap h1:before
    {
        display: none;
    }
    #feedback div:nth-of-type(2){
        margin:10px 0;
    }
}
/*FOOTER*/

footer{
    position: absolute;
    bottom:20px;
    left:0; right:0;
    margin:auto;
    text-align: center;
}
footer p{
    color:#000000;
    font-size:15px;
}
footer .footer-image{
    padding-bottom:23px;
}