/*==================================
Theme Color All Codes Variable
==================================*/

:root {
    --theme-general-color: #606265;
    /* theme general color used*/
}
:root {
    --theme-primary-color: #da2828;
    /* theme primary color used*/
}
:root {
    --theme-secondary-color: #231f2a;
    /* theme secondary color used*/
}
:root {
    --theme-white-color: #ffffff;
    /* theme white font color used*/
}
:root {
    --theme-gray-color: #eceef2;
    /* theme gray font color used*/
}
:root {
    --theme-light-color: #f8f9fc;
    /* theme light gray color used*/
}
:root {
    --theme-text-gray: #d8d8d8;
    /* theme text gray color*/
}
:root {
    --theme-dark-color: #181b1e;
    /* theme dark color*/
}

:root {
    --theme-footer-color: #21222a;
    /* theme dark color*/
}

:root {
    --theme-primary-opacity-color: rgba(218, 40, 40, .5);
    /* theme secondary color*/
}

:root {
    --theme-secondary-opacity-color: rgba(35, 31, 42, .8);
    /* theme secondary color*/
}

:root {
    --theme-extra1-opacity-color: rgba(34, 144, 135, .8);
    /* theme secondary color*/
}

:root {
    --theme-extra2-opacity-color: rgba(29, 45, 58, .8);
    /* theme secondary color*/
}

:root {
	 --text-light-color: #a5a5a5;  
	 /* text light color */
}


/*==================================
Font Variable
==================================*/

:root {
    --theme-general-font: 'Quicksand', sans-serif;
    /* Font use for normal text and general text used*/
}

:root {
    --theme-highlight-font: 'Barlow Condensed', sans-serif;
    ;
    /* Font used in title or special area used*/
}

:root {
    --theme-hiperlink-font: 'Quicksand', sans-serif;
    /* Font use for normal text and link text */
}
#page_wrapper {
	background-color: var(--theme-white-color);
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--theme-highlight-font);
    color: var(--theme-secondary-color);
}
h1,
.h1 {
    font-size: 60px;
    font-weight: 700;
}
h2,
.h2 {
    font-size: 48px;
    font-weight: 700;
}
h3,
.h3 {
    font-size: 36px;
    font-weight: 700;
}
h4,
.h4 {
    font-size: 30px;
    font-weight: 700;
}
h5,
.h5 {
    font-size: 24px;
    font-weight: 700;
}
h6,
.h6 {
    font-size: 21px;
    font-weight: 700;
}
.footer-logo img {
	width: auto;
}
.footer-widget .widget-title {
	font-weight: 500;
	font-size: 24px;
}
.sub-title {
	font-size: 20px;
	color: var(--theme-general-color);
	font-family: var(--theme-highlight-font);
}
.dropdown-item {
    font-size: 14px;
    font-weight: 600;
}
.btn-primary, .btn-primary:hover {
	color: var(--theme-white-color)
}