/* Google Fonts */


/* font-family: 'Quattrocento', serif; */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Quattrocento', serif;
    outline: none;
    -webkit-appearance: none;
}

a{
    color: inherit;
    text-decoration:initial
}

html,body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.ov {
    overflow: hidden;
}

.row-no-padding>[class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.row-no-margin>[class*="col-"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.padding-10 {
    padding: 10px !important;
}

.padding-20 {
    padding: 20px !important;
}

.padding-30 {
    padding: 30px !important;
}

.padding-40 {
    padding: 40px !important;
}

.padding-50 {
    padding: 50px !important;
}

/* BG */

.bg_gray{
    background-color: #fbfbfb;
}

.bg_black{
    background-color: #000000;
}

/*  */

.imagethmb {
    display: table;
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 0;
}

.imagethmb_inner {
    vertical-align: middle;
    display: table-cell;
}

.imagethmb .imagethmb_inner img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}


/* Loader */

.loader-dash {
    background-color: #fefefe;
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
}

.loader,
.loader:before,
.loader:after {
    background: #535353;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 0.5em;
}

.loader {
    color: #535353;
    text-indent: -9999em;
    position: absolute;
    font-size: 5px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}

.loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 1.5em;
}

@-webkit-keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}


/* Align */

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

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


/* Headers */

h1 {
    font-weight: 200;
}

h2 {
    font-weight: 400;
}

h3 {
    font-weight: 400;
}

/* Button */

.soci_button_default{
    display: block;
    color: #000000;
    font-family: 'Lato', sans-serif;
    border-color: #000000;
    font-size: 12px;
    line-height: 46px;
    height: 46px;
    font-style: normal;
    font-weight: 700;
    background-color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-width: 1px;
    padding: 0 50px;
    width: 200px;
    border: solid 1px;
    text-align: center;
    text-decoration: none;
}

.soci_button_default:hover{
    transition-duration: 0.3s;
    background-color: #000000;
    color: #FFF;
}

.auto-center{
    margin: 0 auto;
}