﻿/*Color Define*/

:root {
    --color-bule-text: #115DA1;
    --color-red-company: #B22D2D;
    --color-yellow-text: #FEDE00;
    --color-dark-bg: #232323;
}
.color-bule-text {
    color: var(--color-bule-text);
}

.color-red-company {
    color: var(--color-red-company);
}

.color-yellow-text {
    color: var(--color-yellow-text);
}

.color-dark-text {
    color: #000000;
}

.color-dark2-text {
    color: var(--color-dark-bg);
}

/*Font-size Define*/
.xxs-font {
    font-size: 0.7rem;
}

.xs-font {
    font-size: 0.8rem;
}

.s-font {
    font-size: 0.85rem;
}

.m-font {
    font-size: 1.1rem;
}

.l-font {
    font-size: 1.3rem;
}

.ll-font {
    font-size: 1.6rem;
}

.xl-font {
    font-size: 2.3rem;
}

.xl-font2 {
    font-size: 1.8rem;
}

.xxl-font {
    font-size: 3.2rem;
}

@media all and (min-width: 993px) and (max-width: 1200px) {
    .xxl-font {
        font-size: 2.5rem;
    }
}

@media all and (min-width: 769px) and (max-width: 992px) {
    .xxl-font {
        font-size: 1.8rem;
    }
}

@media all and (max-width: 768px) {
    .xxl-font {
        font-size: 1.1rem;
    }
}

/*Margin Define*/
.mg-t10 {
    margin-top: 10px;
}
.mg-t15 {
    margin-top: 15px;
}
.mg-t20 {
    margin-top: 20px;
}
.mg-b15 {
    margin-bottom: 15px;
}

.mg-b20 {
    margin-bottom: 20px;
}

.mg-l20 {
    margin-left: 20px;
}

.mg-l40 {
    margin-left: 40px;
}

.mg-r20 {
    margin-right: 20px;
}
.mg-r40 {
    margin-right: 40px;
}
.pd-10{
    padding: 15px;
}
.pd-t20 {
    padding-top: 20px
}
.pd-r10 {
    padding-right: 10px;
}
.pd-r20 {
    padding-right: 20px;
}
.pd-r40 {
    padding-right: 40px;
}

/*TextJusity Define*/
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/*ContentFlex Define*/
.content-flex-row {
    display: flex;
    flex-direction: row;
}

.content-flex-col {
    display: flex;
    flex-direction: column;
}

/*ContentJusity Define*/
.conten-right {
    justify-content: right !important;
}

/*font-style*/
.font-weight-bold {
    font-weight: bold;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

.font-space-3 {
    letter-spacing: 3px;
}

.font-space-5 {
    letter-spacing: 5px;
}