/* ========================================
   THEME NORMALIZATION & BASE STYLES
   ======================================== */

/*----------------------------------------*/
/*  01. CSS Variables & Theme Colors
/*----------------------------------------*/
:root {
    /* Font Family Declaration */
    --tp-ff-body: 'DM Sans', sans-serif;
    --tp-ff-heading: 'DM Sans', sans-serif;
    --tp-ff-p: 'DM Sans', sans-serif;
    --tp-ff-fontawesome: Font Awesome 5 Pro;

    /* Color Declaration */
    --tp-common-white: #ffffff;
    --tp-common-black: #292930;
    --tp-common-black-2: #3A3A42;
    --tp-common-blue: #68a7ff;
    --tp-common-pink: #FFADAD;
    --tp-common-dpink: #FD346E;
    --tp-common-paste: #1EE2CF;
    --tp-heading-primary: #292930;
    --tp-grey-1: #F7F8FD;
    --tp-grey-2: #f8f8f8;
    --tp-text-body: #3c3c3c;
    --tp-text-p: #8A90A2;
    --tp-theme-1: #5956E9;
    --tp-theme-2: #423EF3;
    --tp-theme-primary: #FFDC60;
    --tp-theme-secondary: #57c9da;
    --tp-border-1: #E8ECF2;
    --tp-border-2: #4E4E59;

    /* Bootstrap Variables */
    --bs-body-font-size: 14px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.6;
    --bs-body-color: var(--tp-text-body);
    --bs-body-bg: var(--tp-common-white);

    /* Preloader Variables */
    --pre-bg: #ffffff;
    --accent: #2563eb;
    --text-color: #333;
    --fade-duration: 500ms;
}

/*----------------------------------------*/
/*  02. Reset & Universal Styles
/*----------------------------------------*/
*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--tp-ff-body), serif;
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    overflow-x: hidden;
}

/*----------------------------------------*/
/*  03. Typography
/*----------------------------------------*/
h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    font-family: var(--tp-ff-p), serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--tp-text-body);
    line-height: 30px;
}

/*----------------------------------------*/
/*  04. Lists & Links
/*----------------------------------------*/
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
    transition: all 0.3s ease-out 0s;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
    outline: none;
}

/*----------------------------------------*/
/*  05. Form Elements
/*----------------------------------------*/
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
    transition: all 0.3s ease-out 0s;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

input,
select,
textarea {
    outline: none;
    transition: all 0.3s ease-out 0s;
}

input[type="color"] {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

/*----------------------------------------*/
/*  06. Media & Images
/*----------------------------------------*/
img {
    max-width: 100%;
    max-height: 100%;
    contain: layout;
    transition: all 0.3s ease-out 0s;
}

/*----------------------------------------*/
/*  07. Text Selection
/*----------------------------------------*/
*::-moz-selection,
::-moz-selection,
::selection {
    background: var(--tp-common-black);
    color: var(--tp-common-white);
    text-shadow: none;
}

/*----------------------------------------*/
/*  08. Placeholders
/*----------------------------------------*/
*::-moz-placeholder,
*::placeholder {
    color: var(--tp-common-black);
    opacity: 1;
}

/*----------------------------------------*/
/*  09. Global Transitions
/*----------------------------------------*/
.btn,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
    transition: all 0.3s ease-out 0s;
}

/*----------------------------------------*/
/*  10. Utility Classes
/*----------------------------------------*/
.z-index {
    position: relative;
    z-index: 3;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

/*----------------------------------------*/
/*  11. Blockquotes
/*----------------------------------------*/
blockquote {
    background: var(--tp-grey-1);
    padding: 35px 50px;
    margin-bottom: 35px;
}

blockquote p {
    line-height: 1.5;
    font-size: 20px;
    color: #57565e;
    font-weight: 400;
}

blockquote cite {
    font-size: 18px;
    display: block;
    margin-top: 10px;
    color: #070337;
    font-style: inherit;
    font-weight: 600;
    position: relative;
}

blockquote cite::before {
    content: "";
    font-size: 28px;
    color: var(--tp-theme-1);
    padding-bottom: 0;
    display: inline-block;
    background: var(--tp-theme-1);
    height: 2px;
    width: 40px;
    font-weight: 400;
    text-align: center;
    top: -4px;
    margin-right: 10px;
    position: relative;
}