/*-----------------------
    TABLE OF CONTENT
------------------------
    1. TEXT TYPOGRAPHY CSS
    2. ALIGNMENT  
    3. MARGIN CSS
    4. PADDING CSS
    5. DISPLAY & WIDTH
    6. BACKGROUND CSS
    7. COLOR CSS
    8. BORDER CSS
    9. FORM & INPUT CSS
    10. SPACE CSS
------------------------*/

/*--------------------------
    1. TEXT TYPOGRAPHY CSS
-----------------------------*/

/*Define main font on google font*/
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700|Rubik:300,300i,400,400i,500,500i,700,700i,900&display=swap');


.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

a {
    color: var(--color-text-legacy-gray-dark);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}

a:hover {
    color: var(--color-primary);
}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}

img {
    max-width: 100%;
    height: auto;
}

html{
    scroll-behavior: smooth;
}
body,
html {
    height: 100%;
}


.tuc{
    text-transform: uppercase;
}
.tct{
    text-transform: capitalize;
}


.font_light{
    font-weight: 300;
}
.font_bold{
    font-weight: 700
}
.font_regular{
    font-weight: 400;
}
.font_thin{
    font-weight: 100;
}
.b{
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

h1{
    font-size: var(--font-size-display);
    line-height: 110px;
    color: var(--color-text-primary);
    letter-spacing: -4px;
}

h2{
    font-size: var(--font-size-display);
    letter-spacing: -2px;
    line-height: 74px;
    color: var(--color-text-legacy-dark);
}

h3{
    font-size: var(--font-size-h5);
    color: var(--color-text-legacy-gray);
}


h6{
    font-size: var(--font-size-body);
    color: var(--color-text-legacy-blue-gray);
}

h5{
   font-size: var(--font-size-body-lg);
    line-height: 28px;
    color: var(--color-primary);
    font-weight: 400;
}

h4{
    font-size: var(--font-size-body-lg);
    color: var(--color-text-primary);
}

body {
    font-size: var(--font-size-body);
    line-height: 27px;
    color: var(--color-text-legacy-blue-gray);
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
}

/*
==========================
Estilos de Headers e Listas
==========================
*/
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

/*----------------------
    ALIGN
-----------------------*/

.center,
.left,
.right {
    position: relative;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

/*-----------------------
    FONTS
------------------------*/
.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

/*--------------------
    WIDTH
---------------------*/
.width100p,
.width100p img {
    width: 100%;
}

.width50p {
    width: 50%;
}

/*-----------------------
    DISPLAY
------------------------*/
.display-table {
    display: table;
}

.display-table-cell {
    display: table-cell;
}

.vertical-align-middle {
    vertical-align: middle;
}


.last-p-mb0 p:last-of-type {
    margin-bottom: 0;
}

.first-h4-mb0 h4:first-of-type {
    margin-bottom: 0;
}

.font300 {
    font-weight: 300;
}

.font400 {
    font-weight: 400;
}

.font500 {
    font-weight: 500;
}

.font600 {
    font-weight: 600;
}

.font700 {
    font-weight: 700;
}

.font800 {
    font-weight: 800;
}

/*--------------------
    CONTENT POSITION
---------------------*/
.fix {
    overflow: hidden;
}

.relative {
    position: relative;
    overflow: hidden;
}

.absulute {
    position: absolute;
}

.v-center {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    z-index: 9;
}

.h-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.h-center-reverse {
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.content-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.flex-v-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.display-block {
    display: block;
}

.social-bookmark li {
    display: inline;
}

.social-bookmark li a {
    display: inline-block;
    margin: 0 2px;
    text-align: center;
}

.inline li {
    display: inline;
}

.inline-block li {
    display: inline-block;
}

.inline-block {
    display: inline-block;
}

@media (min-width: 768px) and (max-width: 991px) {
    .sm-width100p {
        width: 100%;
    }

    .flex-v-center {
        display: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .xs-width100p {
        width: 100%;
    }

    .flex-v-center {
        -webkit-box-align: inherit;
        -ms-flex-align: inherit;
        align-items: inherit;
        display: inherit;
    }
}

/*--------------------------
    MARGIN CSS
----------------------------*/
.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.no-margin {
    margin: 0;
}

/* ----------------------------
    PADDING CSS
------------------------------ */
.section-padding {
    padding: 50px 0;
    overflow: hidden;
    
}

.padding-top {
    padding-top: 50px;
}

.padding-bottom {
    padding-bottom: 50px;
}

.padding-100-70 {
    padding-top: 100px;
    padding-bottom: 70px;
}

.padding-100-50 {
    padding-top: 100px;
    padding-bottom: 50px;
}

.padding-100-40 {
    padding-top: 100px;
    padding-bottom: 40px;
}

.padding-100-30 {
    padding-top: 100px;
    padding-bottom: 30px;
}

.padding-50-50 {
    padding: 50px 0;
}

.padding-150-150 {
    padding: 150px 0;
}
.padding-200-200 {
    padding: 200px 0;
}



.padding-10-10{
    padding: 10px 0;

}
.padding-20-20{
    padding: 20px 0;
}


/*-----------------*/
.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

/*--------------------
    PADDING
---------------------*/
.padding50 {
    padding: 50px;
}

.padding30 {
    padding: 30px;
}

.padding20 {
    padding: 20px;
}

.padding10 {
    padding: 10px;
}

.no-padding {
    padding: 0;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

/* ----------------------------
    BACKGROUND CSS
------------------------------- */

.theme-bg {
    background: var(--color-icon-orange-dark);
}

.green-bg {
    background: var(--color-bg-light-blue);
}

.white-green-bg {
    background: var(--color-bg-light-cyan);
}

.gray-bg {
    background: var(--color-bg-light-gray);
}
.color_orange{
    color: var(--color-primary);
}
.color_help{
    color: var(--color-icon-pink);
}
.color_water{
    color: var(--color-icon-blue);
}
.color_users i{
    color: var(--color-primary);
}
.color_global i{
    color: var(--color-icon-blue);
}
.color_cup i{
    color: var(--color-icon-pink);
}
.color_plan i{
    color: var(--color-icon-purple);
}

.case_text_bg1{
    background: var(--color-icon-orange-light) !important;
}
.case_text_bg2{
    background: var(--color-icon-purple) !important;
}

.case_text_bg3{
    background: var(--color-icon-pink) !important;
}


.white_bg{
    position: relative;z-index: 2;
}

.white_bg:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background: var(--color-text-primary);
    opacity: .95;
}

.w3bg{
    position: relative;z-index: 2;
}

.w3bg:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background: var(--color-success);
    opacity: .9;
}

.yellow-bg{
    background-color: var(--color-bg-legacy-gold);
}
.white-bg{
    background-color: white;
}
.light-gray-bg {
    background-color: var(--color-bg-legacy-light);
}

.deep-gray-bg {
    background-color: var(--color-bg-legacy-purple-light);
}

.sky-gray-bg {
    background: var(--color-bg-legacy-blue-light);
}

.soft-gray-bg {
    background: var(--color-bg-legacy-blue-lighter);
}

.dark-bg {
    background: var(--shadow-legacy-medium);
    color: var(--color-text-primary);
}

.alt-dark-bg {
    background: var(--color-bg-legacy-dark-small);
    color: var(--color-text-primary);
}

.deep-dark-bg {
    background: var(--shadow-legacy-dark);
    color: var(--color-text-primary);
}

.alt-deep-dark-bg {
    background: var(--color-bg-legacy-dark-medium);
    color: var(--color-text-primary);
}

.sky_color{
    color: var(--color-icon-blue);
}


.no-bg {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}


.white-bg{
    background: var(--color-text-primary);
}


.bgaf{
    background-attachment: fixed;
}



/*-----------------------
    COLOR CSS
------------------------*/
.black,
.black a,
.black h1,
.black h2,
.black h3,
.black h4,
.black h5,
.black h6,
.black small,
.red,
.red a,
.red h1,
.red h2,
.red h3,
.red h4,
.red h5,
.red h6,
.red small,
.white,
.white a,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6,
.white small {
    color: var(--color-text-primary);
}



/* ----------------------------
    BORDER CSS
------------------------------ */

.border {
    border: 1px solid var(--color-border-light-gray);
}

.border-left {
    border-left: 1px solid var(--color-border-light);
}

.border-right {
    border-right: 1px solid var(--color-border-light);
}

.border-bottom {
    border-bottom: 1px solid var(--color-border-light);
}

.border-top {
    border-top: 1px solid var(--color-border-light);
}

.border-righ-bottom {
    border-right: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.border_black_1px{
    border: 1px solid var(--color-border-dark); 
}
.border_black_2px{
    border: 2px solid var(--color-border-dark); 
}.border_black_3px{
    border: 3px solid var(--color-border-dark); 
}

@media only screen and (max-width: 767px) {
    .border-xs {
        border: 1px solid var(--color-border-light);
    }
}

.border-radious5 {
    border-radius: 5px;
}

.border-radious10 {
    border-radius: 10px;
}

.border-radious20 {
    border-radius: 20px;
}

.border-radious50 {
    border-radius: 50px;
}

.border-_5px_white{
    border: .5px solid var(--color-text-primary);
}

/*-----------------------
    SHADOW CSS
------------------------*/
.shadow {
    -webkit-box-shadow: 0 0 3px var(--color-border-light);
    box-shadow: 0 0 3px var(--color-border-light);
}

.shadow10 {
    -webkit-box-shadow: 0 0 10px var(--color-border-light);
    box-shadow: 0 0 3px var(--color-border-light);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.shadow10:hover,
.shadow:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.no-shadow {
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
}

/* ----------------------------
    FORM & INPUT CSS
------------------------------ */

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    outline: 0;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    outline: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    outline: 0;
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    outline: 0;
}

select {
    border: 1px solid var(--color-border-medium);
}

textarea {
    width: 100%;
}

embed,
iframe,
object {
    width: 100%;
}



/*==============
COMMON CSS
=================*/

.bg{
    background-position: center !important;
    -webkit-background-size: cover !important;
    background-size: cover !important;
}


/*==============
SPACE CSS
=================*/

.space-100 {
    height: 100px;
}

.space-50 {
    height: 50px;
}

.space-80 {
    height: 80px;
}

.space-40 {
    height: 40px;
}

.space-60 {
    height: 60px;
}
.space-70 {
    height: 70px;
}

.space-30 {
    height: 30px;
}

.space-20 {
    height: 20px;
}

.space-10 {
    height: 10px;
}
