﻿/* Showcase Area */
.showcase {
    height: 400px;
    background-color: var(--primary-color);
    position: relative;
}

    .showcase h1 {
        font-size: 30px;
    }

    .showcase p {
        margin: 20px 0;
    }

    .showcase .grid {
        overflow: visible;
        grid-template-columns: 55% 45%;
        gap: 30px;
    }

.showcase-text {
    animation: slideInFromLeft 1s ease-in;
}

.showcase-form {
    position: relative;
    top: 60px;
    height: 380px;
    width: 500px;
    padding: 40px;
    z-index: 100;
    animation: slideInFromRight 1s ease-in;
}

    .showcase-form .form-control {
        margin: 30px 0;
    }

    .showcase-form input[type='text'],
    .showcase-form input[type='email'],
    .showcase-form textarea {
        border: 0;
        border-bottom: 1px solid #b4becb;
        width: 100%;
        padding: 3px;
        font-size: 16px;
    }

        .showcase-form input:focus,
        .showcase-form textarea:focus {
            outline: none;
        }

.showcase-form-contact {
    position: relative;
    top: 60px;
    height: 420px;
    width: 500px;
    padding: 40px;
    z-index: 100;
    animation: slideInFromRight 1s ease-in;
}

    .showcase-form-contact .form-control {
        margin: 30px 0;
    }

    .showcase-form-contact input[type='text'],
    .showcase-form-contact input[type='email'],
    .showcase-form-contact textarea {
        border: 0;
        border-bottom: 1px solid #b4becb;
        width: 100%;
        padding: 3px;
        font-size: 16px;
    }

        .showcase-form-contact input:focus,
        .showcase-form-contact textarea:focus {
            outline: none;
        }

.showcase-form-home {
    position: relative;
    top: 60px;
    height: 380px;
    width: 500px;
    padding: 40px;
    z-index: 100;
    animation: slideInFromRight 1s ease-in;
}

.showcase-form-home .form-control {
    margin: 30px 0;
}

    .showcase-form-home input[type='text'],
    .showcase-form-home input[type='email'],
    .showcase-form-home textarea {
        border: 0;
        border-bottom: 1px solid #b4becb;
        width: 100%;
        padding: 3px;
        font-size: 16px;
    }

        .showcase-form-home input:focus,
        .showcase-form-home textarea:focus {
            outline: none;
        }

.showcase::before,
.showcase::after {
    content: '';
    position: absolute;
    height: 100px;
    bottom: -70px;
    right: 0;
    left: 0;
    background: #fff;
    transform: skewY(-3deg);
    -webkit-transform: skewY(-3deg);
    -moz-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
}

/* Features*/

.features {
    padding-top: 100px;
    animation: slideInFromBottom 1s ease-in;
}

.features-heading {
    max-width: 500px;
    margin: auto;
}

.stats .grid h3 {
    font-size: 35px;
}

.stats .grid p {
    font-size: 20px;
    font-weight: bold;
}

/* Image and grid */

.image .grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

    .image .grid > *:first-child {
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
    }

/* Graphics section */
.graph .grid {
    grid-template-columns: 4fr 3fr;
}

/* Languages Section */

.languages .flex {
    flex-wrap: wrap;
}

.languages .card {
    text-align: center;
    margin: 18px 10px 40px;
    transition: transform 0.2 ease-in;
}

    .languages .card h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .languages .card:hover {
        transform: translateY(-15px);
    }

/* Videos Section */
.videos-head img,
.gallery-head img {
    width: 200px;
    justify-self: flex-end;
}

.videos-sub-head img {
    width: 250px;
    justify-self: flex-end;
}

.videos-main .card > i {
    margin-right: 20px;
}

.videos-main .grid {
    padding: 30px;
}

.videos-main .vid {
    padding: 30px;
}

.videos-main .grid > *:first-child {
    grid-column: 1 / span 3;
}

.videos-main .grid > *:nth-child(2) {
    grid-column: 1 / span 2;
}

/* Gallery */
.docs-main h3 {
    margin: 20px 0;
}

.docs-main .grid {
    grid-template-columns: 1fr 2fr;
    align-items: flex-start;
}

.docs-main nav li {
    font-size: 17px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px rgb(250, 249, 249) solid;
}

.docs-main a:hover {
    font-weight: bold;
}
