/* css public like tailwind */

@font-face {
    font-family: 'Cardo Bold';
    src: url('../fonts/Cardo-Bold.ttf');
}
@font-face {
    font-family: 'Cardo Italic';
    src: url('../fonts/Cardo-Italic.ttf');
}
@font-face {
    font-family: 'Cardo';
    src: url('../fonts/Cardo-Regular.ttf');
}
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/Figtree-Medium.ttf');
}

.article-content {
    font-family:var(--textBodySecondary) !important;
}

:root {
    --textBold: 'Cardo Bold';
    --textItalic: 'Cardo Italic';
    --textBody: 'Cardo';
    --textBodySecondary :'Figtree'
}

.footer-info,
.mail-footer,
.section-intro p{
    font-family:var(--textBodySecondary) !important;
    font-weight: 600;
}

.secondary-font {
    font-family:var(--textBodySecondary) !important;
}

body {
    font-family: var(--textBody) !important;
}

.edgtf-section-subtitle {
    font-family: var(--textBody) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--textBold) !important;
}

.container {
    width: 1440px;
    max-width: 1440px;
}

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

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

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

.btn.btn-default {
    display: block;
    width: 200px;
    text-align: center;
    background-color: #A60000 !important;
    color: #fff;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.btn.btn-default::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 4, 4, 0.68);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.btn.btn-default:hover::before {
    left: 0;
}

.btn.btn-default:hover span{
    z-index: 1;
    position: relative;
}


.btn.btn-default:hover {
    background-color: #8C0000 !important;
}
