/* Settings */
:root {
    --primary-color: #047aed;
    --secondary-color: #1c3fa8;
    --dark-color: #002240;
    --light-color: #f4f4f4;
    --success-color: #5cb85c;
    --error-color: #d9534f;
    --background-color: #ffffff;
    --body-item-color: #333;

    /*--light-color: #b1d0e050;
    --secondary-color: #b1d0e050;
    --c-medium: #6998ab60;
    --c-dark: #40688290;
    --dark-color: #40688260;
    --primary-color: #6998ab60;
    --c-bg-elements: #0004;
    --c-card-main: #b1d0e090;
    --c-card-side: #b1d0e040;
    --success-color: #5cb85c;
    --error-color: #d9534f;

    --background-color: #6998ab60;
    --body-item-color: #b1d0e040;*/
}

html,
body {
    width: 100%;
    height: 100%;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--body-item-color);
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}



ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--body-item-color);
}

h1,
h2 {
    font-weight: 300;
    line-height: 1.2;
    margin: 10px 0;
}

p {
    margin: 10px 0;
}

img {
    width: 100%;
}

.hidden {
    visibility: hidden;
    height: 0;
}

.showcase {
    height: 400px;
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
}

.showcase h1 {
    font-size: 40px;
}

.showcase p {
    margin: 20px 0;
}

.showcase .grid {
    overflow: visible;
    grid-template-columns: 55% auto;
    gap: 30px;
}

.showcase-text {
    animation: slideInFromLeft 0.4s ease-in;
}

.showcase-form {
    position: relative;
    top: 60px;
    height: 350px;
    width: 400px;
    padding: 40px;
    z-index: 100;
    justify-self: flex-end;
    animation: slideInFromRight 0.4s ease-in;
}

.contact-form {
    top: 60px;
    height: 500px;
    z-index: 100;
}

.showcase-form .form-control,
.contact-form .form-control {
    margin: 30px 0;
}


.showcase-form input[type='text'],
.showcase-form input[type='email'],
.showcase-form textarea,
.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form textarea {
    border: 0;
    border-bottom: 1px solid #b4becb;
    width: 100%;
    padding: 3px;
    font-size: 16px;
    outline: none;
}

.showcase-form input:focus {
    outline: none;
}

.contact-form input:focus {
    outline: none;
}

/*.showcase::before,
.showcase::after {
    content: '';
    position: absolute;
    height: 100px;
    bottom: -70px;
    right: 0;
    left: 0;
    background: #ffffff;
    transform: skewY(-3deg);
    -webkit-transform: skewY(-3deg);
    -moz-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
}*/

.stats {
    padding-top: 100px;
}

.stats-heading {
    max-width: 500px;
    margin: auto;
}

.stats .grid h3 {
    font-size: 35px;
}

.stats .grid p {
    font-size: 20px;
    font-weight: bold;
}

.cli .grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.cli .grid>*:first-child {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.cloud .grid {
    grid-template-columns: 4fr 3fr;
}

.imglist .flex {
    flex-wrap: wrap;
}

.imglist .card {
    text-align: center;
    margin: 18px 10px 40px;
    transition: transform 0.2s ease-in;
}

.imglist .card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.imglist .card:hover {
    transform: translateY(-15px);
}

.features-head img,
.docs-head img {
    width: 200px;
    justify-self: flex-end;
}

.features-sub-head img {
    width: 300px;
    justify-self: flex-end;
}

.features-main .card>i {
    margin-right: 20px;
}

.features-main .grid {
    padding: 30px;
}

.features-main .grid>*:first-child {
    grid-column: 1 / span 3;
}

.features-main .grid>*:nth-child(2) {
    grid-column: 1 / span 2;
}

.main-bg {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    position: fixed;
    background-color: var(--background-color);
    z-index: -1;
}

#background-video {
    height: 100%;
    width: 100%;
}


.footer .social a {
    margin: 0 10px;
}

.social-facebook:hover {
    color: #1773EA;
}

.social-github:hover {
    color: #000000;
}

.social-instagram:hover {
    color: #B32E87;
}

.social-twitter:hover {
    color: #1C9CEA;
}

/** {
    border: 1px solid red;
}*/