/**** Google Font ****/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;700&display=swap');

/* font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif; */


/* Variables */

:root {
    /* Color */
    --body_bg: #ffffff;
    --body_color: #1a1a1a;
    --primary_color: #1a1a1a;
    --secondary_color: #bf624c;
    --hover_color: #bf624c;
    --light_color: #ffffff;
    /* Font Family */
    --title_font: 'Poppins', sans-serif;
    --body_font:  'Open Sans', sans-serif;
    /* Font Size Typo Variables */
    --fontsize_body: 16px;
    --heading_H1: 36px;
    --heading_H2: 30px;
    --heading_H3: 26px;
    --heading_H4: 20px;
    --heading_H5: 18px;
    --heading_H6: 16px;
    /* Transition */
    --site_transition: all 0.3s linear 0s;
}


/* Base */

body,
button,
input,
textarea,
select {
    font-family: var(--body_font);
    font-size: var(--fontsize_body);
    font-weight: 400;
    text-transform: none;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button[type="button"] {
    line-height: 1em;
}


/* Headings */

h1 {
    font-size: var(--heading_H1);
}

h2 {
    font-size: var(--heading_H2);
}

h3 {
    font-size: var(--heading_H3);
}

h4 {
    font-size: var(--heading_H4);
}

h5 {
    font-size: var(--heading_H5);
}

h6 {
    font-size: var(--heading_H6);
}


/* Basic Reset */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}


/* Base */

body {
    color: var(--body_color);
    font-size: var(--fontsize_body);
    font-family: var(--body_font);
    overflow-x: hidden;
    width: 100%;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
}

html {
    overflow-x: hidden;
    width: 100%;
}


/* Links */

a {
    color: var(--primary_color);
    text-decoration: none;
}

a:hover {
    color: var(--hover_color);
}


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary_color);
    font-family: var(--title_font);
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

p {
    line-height: 1.6em;
    margin-bottom: .5rem;
}


/**** Common Style ****/

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: auto;
}


/* body[dir="rtl"] {
  text-align: right;
} */


/* List */

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul li {
    display: inline-block;
}

ul li::marker {
    content: none;
}

img {
    max-width: 100%;
}


/* Default Section Style */

.section-padding {
    padding-top: 40px;
    padding-bottom: 50px;
}

.theme-title-section .subtitle {
    font-size: 18px;
    margin-bottom: 15px;
}

.theme-title-section .title+.subtitle {
    margin-top: 15px;
}

.theme-title-section .title {
    font-size: 34px;
    color: #1a1a1a;
    font-weight: 600;
}

.theme-title-section {
    margin-bottom: 30px;
}

.theme-title-section img {
    margin-bottom: 10px;
}

.button,
.theme-button {
    font-weight: 500;
    color: #fff;
    background-color: var(--secondary_color);
    padding: 1.2rem 2rem 1.2rem;
    display: inline-block;
    margin-top: 10px;
    transition: all 300ms linear;
    border: 1px solid currentColor;
    text-transform: uppercase;
}

.button:hover,
.theme-button:hover {
    color: #fff;
    background-color: var(--primary_color);
}


/*  */

.btn-group {
    width: 100%;
    display: block;
    margin-top: 50px;
    margin-bottom: 30px;
}

.btn-group a.button {
    margin: 0 10px 20px;
}

.store-pwd {
    font-family: monospace;
    font-size: 36px;
    margin-bottom: 50px;
}

.store-pwd span {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

.footer-section {
    background: #f7f7f7;
    margin-top: 20px;
    padding-top: 50px;
}

.footer-section h3 {
    font-size: 34px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section p {
    font-size: 18px;
}

.footer-section a.button {
    width: auto;
    margin: 15px auto 0;
}

section.landing-section.section-padding {
    padding-bottom: 10px;
}

.site-logo img {
    width: 140px;
}
