/* Import Settings */

/* Setting */

/* Colors */

/* Fonts */

/* Fonts Size */

/* Letter-Spacing */

/* Line Height */

/* Forms */

/* Params */

/* TABLE OF CONTENTS
    1. Basic
    2. Container
    3. Columns
    4. Typography
    5. Links
    6. Buttons
    7. Preloader
    8. Forms
    9. Lists
    10. Code
    11. Tables
    12. Alignment
    13. Text Formating
    14. Blockquote
    15. Animations
*/

/* 1. Basic */

html {
    margin-right: 0 !important;
}

body {
    margin: 0;
    padding: 0;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt;
    color: #000000;
    background: #fff;
    letter-spacing: 0;
    font-weight: 400;
}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }

    body {
        color: #fff;
        background: #000;
    }
}

body header,
body footer,
body .section {
    opacity: 0;
    visibility: hidden;
}

body.loaded header,
body.loaded footer,
body.loaded .section {
    opacity: 1;
    visibility: visible;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.clear {
    clear: both;
}

/* 2. Container */

.container {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

@media (max-width: 840px) {
    .container {
        margin: 0px;
    }
}

.container .line {
    content: '';
    position: fixed;
    background: #2972FA;
    z-index: 105;
}

.container .line.top {
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
}

@media (max-width: 840px) {
    .container .line.top {
        height: 15px;
    }
}

.container .line.bottom {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 30px;
}

@media (max-width: 840px) {
    .container .line.bottom {
        height: 15px;
    }
}

.container .line.left {
    left: 0;
    top: 0;
    width: 30px;
    height: 200%;
}

@media (max-width: 840px) {
    .container .line.left {
        width: 15px;
    }
}

.container .line.right {
    left: auto;
    right: 0;
    top: 0;
    width: 30px;
    height: 200%;
}

@media (max-width: 840px) {
    .container .line.right {
        width: 15px;
    }
}

.wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 1060px;
}

/* 3. Columns */

.cols {
    position: relative;
}

.cols .col.col-sm {
    float: left;
    width: 25%;
}

@media (max-width: 840px) {
    .cols .col.col-sm {
        width: 100%;
    }
}

.cols .col.col-lg {
    float: left;
    width: 75%;
}

@media (max-width: 840px) {
    .cols .col.col-lg {
        width: 100%;
    }
}

.cols .col.col-md {
    float: left;
    width: 45%;
}

.cols .col.col-md.right {
    float: right;
}

@media (max-width: 840px) {
    .cols .col.col-md {
        width: 100%;
    }
}

.cols:after {
    content: '';
    display: block;
    clear: both;
}

/* 4. Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    margin-bottom: 30px;
    color: #000000;
    font-size: 12pt;
}

p {
    font-size: 12pt;
    line-height: 24px;
    padding: 0;
    margin: 30px 0;
}

strong {
    font-weight: 600;
}

/* 5. Links */

a {
    text-decoration: none;
    opacity: 1;
    outline: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* 6. Buttons */

a.btn,
.btn {
    display: inline-block;
    vertical-align: middle;
    height: 42px;
    line-height: 40px;
    text-align: center;
    color: #000000;
    font-size: 12pt;
    background: none;
    border: 2px solid #dddddd;
    position: relative;
    overflow: hidden;
    padding: 0 30px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

a.btn.fill,
.btn.fill {
    color: #ffffff;
    background: #2972FA;
    border: 2px solid #2972FA;
}

a.btn:hover,
.btn:hover {
    color: #ffffff;
    background: #2972FA;
    border: 2px solid #2972FA;
}

/* 7. Preloader */

.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: black;
    padding: 30px 60px 30px 60px;
}

@media (max-width: 480px) {
    .preloader {
        padding: 30px 20px 30px 20px;
    }
}

.preloader .load {
    color: #fff;
    font-size: 12pt;
}

.preloader .typed-load,
.preloader .typed-cursor {
    color: #fff;
    font-size: 12pt;
}

/* 8. Forms */

input,
textarea,
button {
    display: block;
    background: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt;
    height: 60px;
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
    border: none;
    border-bottom: 2px solid #808080;
    -webkit-appearance: none;
    resize: none;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -khtml-border-radius: 0px;
    outline: 0;
}

input:focus,
textarea:focus,
button:focus {
    border-bottom: 2px solid #000;
}

@media (prefers-color-scheme: dark) {

    input,
    textarea,
    button {
        color: #fff;
    }

    input:focus,
    textarea:focus,
    button:focus {
        border-bottom: 2px solid #fff;
    }
}

textarea {
    height: 120px;
    padding: 0;
    margin-top: 55px;
}

button {
    width: auto;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    border-bottom: 2px solid #dddddd;
    cursor: pointer;
}

label,
legend {
    display: block;
    padding-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt;
}

fieldset {
    border-width: 0;
    padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

::-webkit-input-placeholder {
    color: #808080;
}

:-moz-placeholder {
    color: #808080;
}

::-moz-placeholder {
    color: #808080;
}

:-ms-input-placeholder {
    color: #808080;
}

input.error,
textarea.error {
    border-bottom: 2px solid red !important;
}

label.error {
    display: none !important;
}

input.error::-moz-placeholder,
textarea.error::-moz-placeholder {
    color: red;
}

input.error:-moz-placeholder,
textarea.error:-moz-placeholder {
    color: red;
}

input.error:-ms-input-placeholder,
textarea.error:-ms-input-placeholder {
    color: red;
}

input.error::-webkit-input-placeholder,
textarea.error::-webkit-input-placeholder {
    color: red;
}

/* 9. Lists */

ol,
ul {
    list-style: none;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 0px;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin-bottom: 0px;
}

li {
    margin-bottom: 0px;
}

/* 10. Code */

code {
    background: #dddddd;
    font-size: 12pt;
    font-family: 'Open Sans', sans-serif;
    margin: 20px 0;
    padding: 10px 20px;
}

/* 11. Tables */

table {
    width: 100%;
    margin: 30px 0;
    padding: 0;
    border-collapse: collapse;
}

th {
    font-weight: 500;
    border: none;
    border-bottom: 2px solid #dddddd;
    color: #141414;
    padding: 12px 15px;
    text-align: left;
}

td {
    border: none;
    border-bottom: 2px solid #dddddd;
    padding: 12px 15px;
    text-align: left;
    color: #000000;
}

/* 12. Alignment */

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

.align-right {
    text-align: right !important;
}

.align-left {
    text-align: left !important;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.pull-none {
    float: none !important;
}

.full-width {
    max-width: 100% !important;
    width: 100% !important;
}

.full-max-width {
    max-width: 100% !important;
    width: auto !important;
}

.centrize {
    display: table !important;
    table-layout: fixed !important;
    height: 100% !important;
    position: relative !important;
}

.vertical-center {
    display: table-cell !important;
    vertical-align: middle !important;
}

/* 13. Text Formating */

.text-uppercase {
    text-transform: uppercase !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-regular {
    font-weight: 400 !important;
}

.text-bold {
    font-weight: 700 !important;
}

.text-italic {
    font-style: italic !important;
}

/* 14. Blockquote */

blockquote {
    font-family: 'Open Sans', sans-serif;
}

/* Mouse Button Animations */

@keyframes mouse-anim {
    0% {
        top: 0px;
    }

    50% {
        top: 10px;
    }

    100% {
        top: 0px;
    }
}
