* {
    font-family: 'Rubik', sans-serif;
}

.text-uppercase{
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.full-height{
    height: 100%;
}

.full-width {
    width: 100%;
}

.half-width {
    width: 50%;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-bold{
    font-weight: bold;
}

.text-light {
    font-weight: 200;
}

.text-bold-700 {
    font-weight: 700;
}

.text-bold-500 {
    font-weight: 500;
}

.text-bold-400 {
    font-weight: 400;
}

.app-padding-lr{
    padding-left: 10%;
    padding-right: 10%;
}
.flex-one{
    flex: 1;
}
.d-flex{
    display: flex;
}
.mb-2 {
    margin-bottom: 10px;
}

.mr-2 {
    margin-right: 10px;
}

.app-accent-bg-color {
    background-color: #FFB600;
}

.app-faded-border-color {
    border: 1px solid #DBDDE3;
    border-radius: 50%;
}


.app-faded-bg-color {
    background-color: #F9F9FA;
}

.app-faded-color {
    color: #DBDDE3;
}

.app-accent-color {
    color: #FFB600;
}

.app-padding-tb {
    padding-top: 100px;
    padding-bottom: 100px;
}
.app-padding-starter-tb {
    padding-top: 50px;
    padding-bottom: 50px;
}

.c-pointer{
    cursor: pointer;
}

.flex-vertical{
    flex-direction: column;
}

.app-primary-bg-color {
    background-color: #13184D;
}

.unstyle-button {
    border: none;
    outline: none;
    background: none;
}

    .unstyle-button:focus {
        outline: none;
    }

.text-white{
    color: white !important;
}

.app-primary-color {
    color: #13184D;
}

.p-relative{
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-fixed {
    position: fixed;
}

.opacity-3{
    opacity: 0.3;
}

.font-size-15 {
    font-size: 15px;
}

.unstyle-ul {
    list-style-type: none;
    padding-left: 0;
}

.font-size-25 {
    font-size: 25px;
}

.font-size-30{
    font-size: 30px;
}

.font-size-70 {
    font-size: 70px;
}

.font-size-60 {
    font-size: 60px;
}

.font-size-65 {
    font-size: 65px;
}


.font-size-43 {
    font-size: 43px;
}

.font-size-as-parent{
    font-size: 100%;
}

.font-size-32{
    font-size: 32px;
}

.font-size-10 {
    font-size: 10px;
}

.no-margin{
    margin: 0;
}

.no-padding {
    padding: 0;
}

.text-left{
    text-align: left
}

.d-flex-self-center{
    align-self: center;
}

.contact-form {
    border: 1px solid #DBDDE3;
    padding: 50px 60px;
}

    .contact-form button.form-button {
        width: 50%;
    }

.contact-element {
    margin-bottom: 30px;
}



.contact-image {
    margin-bottom: 30px;
}

.d-flex-space-between{
    justify-content: space-between;
}
.d-flex-justify-center {
    align-items: center;
}

.j-content-center{
    justify-content: center;
}

.j-content-end {
    justify-content: flex-end;
}

.d-flex-align-items-center {
    align-items: center;
}

.reduce-letter-space-082 {
    letter-spacing: -0.78px;
}

.text-center{
    text-align: center;
}

.no-desktop-but-mobile {
    display: none;
}

.no-desktop-but-mobile-flex {
    display: none;
}

/*Media query*/
@media (max-width: 760px) {

    .app-padding-lr {
        padding-left: 5%;
        padding-right: 5%;
    }

    .no-desktop-but-mobile {
        display: block;
    }

    .no-desktop-but-mobile-flex {
        display: flex;
    }

    .no-mobile {
        display: none !important;
    }

    .mobile-font-size {
        font-size: 17px !important;
        line-height: 1.5rem !important;
    }

    .font-size-43 {
        font-size: 34px;
    }

    .font-size-32 {
        font-size: 25px;
    }

    .font-size-25 {
        font-size: 20px;
    }
}