@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap');

body {
    font-family: $principal-font;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: $secondary-font;
}
.title-hero {
    font-size: 38px;
    line-height: $headings-line-height;
    color: $paragraph-color-1;
}
.title-section {    
    font-size: 30px;
    // text-transform: uppercase;
    line-height: $heading-section-title-line-height;
    color: $paragraph-color-1;

    &.size-card {
        font-size: 20px;
    }

    &.title-xl {
        font-size: 38px;
    }
    &.title-xxl {
        font-size: 60px;
    }
    &.txt-m {
        font-size: 18px;
        font-family: $secondary-font;
    }
    @media (max-width:900px) {
        font-size: 20px;
        
        &.title-xl {
            font-size: 25px;
        }
        
    }

    &.rrss-mob {
        font-size: 18px;
    }
}
.green-small-title {
    padding-left: 35px;
    font-size: 12px;
    color: $color-2;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    font-family: $principal-font;
    transition: .5s all;

    &:before {
        content: '';
        width: 25px;
        height: 1px;
        display: block;
        position: absolute;
        top: 5.5px;
        left: 0;
        background: rgba(172,121,99,.8);
    }
    &.txt-xl {
        font-size: 30px;
        font-weight: 400;
        font-family: $secondary-font;
        color: $title-color-1;

        &:before {
            top: 17.5px;
        }
    }
    &.not-padd {
        display: inline-block;
        padding-left: 0;

        &:before {
            left: -35px;
        }
    }
    &.xl-line {
        padding-left: 0;

        &:before {
            width: 100%;
            left: -105%;
        }
    }
    &.lg-line {
        padding-left: 0;

        &:before {
            width: 70px;
            left: -13%;
        }
    }
    &.space-letter {
        letter-spacing: 1.64px;
    }
    &.sticky {
        font-family: $secondary-font;
        color: $paragraph-color-1;
        font-size: 16px;
        font-weight: 400;
        opacity: .5;
        transition: all .5s;
        text-transform: none;

        &:before {
            opacity: 0;
        }
        &:hover {
            opacity: 1;

            &:before {
                opacity: 1;
            }
        }
        &.active {
            opacity: 1;

            &:before {
                opacity: 1;
            }
        }
    }
    &.txt-lg {
        font-weight: 400;
        font-family: $secondary-font;
        font-size: 16px;
        text-transform: capitalize;
    }
    
}

p {
    font-size: 14px;
    line-height: $line-height-base;
    color: $paragraph-color-3;
}
.white-txt {
    color: #fff;
}

.title-footer {
    font-family: $secondary-font;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.56;
}

.fa {

    &.gold {
        color: #ac7963;
    }
}