﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
/*Smooth Box-shadow
      1. box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.12), 0 4px 4px rgba(0,0,0,0.12), 0 8px 8px rgba(0,0,0,0.12), 0 16px 16px rgba(0,0,0,0.12);
    source: https://tobiasahlin.com/blog/layered-smooth-box-shadows/
*/

@import url(fonts.css);
@import url(open-sans-font.css);

.text-orange {
    color: rgb(255, 138, 0);
}

.text-blue {
    color: rgb(59, 54, 140);
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top and Bottom Header Animations
    ------------------------*/
.top-header,
.bottom_header {
    transition: all ease .5s;
}
/*
    End Animations [top & bottom headers]
*/
/* Top header
-------------------------------------------------- */
.top-header {
    height: 33px;
    font-family: OpenSans-Regular;
    font-size: 14px;
    padding: 5px 40px;
    background-color: white;
    color: rgb(195, 195, 195);
    border-bottom: 1px solid rgb(238, 238, 238);
    border-top: solid 3px rgb(41,255,148);
}

    .top-header a:hover {
        color: rgb(32,232,85);
        text-decoration: underline;
    }

/* Bottom header
-------------------------------------------------- */
.bottom_header {
    font-family: OpenSans-Regular;
    font-size: 15px;
    height: 51px;
    width: 100%;
    padding: 0 40px;
    display: grid;
    text-transform: uppercase;
    /*-- use line height below to vertically align text --*/
    line-height: 50px;
    grid-template-columns: 0fr 0fr 100fr 3fr;
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(238, 238, 238);
    border-bottom: 1px solid rgb(230, 230, 230);
}

    .bottom_header .logo,
    .menuBtn,
    .navlinks,
    .actionBtn {
        white-space: nowrap;
    }

    .bottom_header .logo {
        width: 35px;
        text-align: center;
    }

.logo a,
.logo a:hover
.logo a:active {
    text-decoration: none;
}

.logo img {
    width: 35px;
    margin-top: -5px;
}

.menuBtn {
    width: 120px;
    text-align: center;
}

    .menuBtn img {
        width: 30px;
        margin: -3px -5px 0 0;
    }

    .menuBtn a {
        font-family: OpenSans-SemiBold;
        cursor: pointer;
    }

.navlinks {
    font-family: OpenSans-Bold;
    width: 100%;
    text-align: right;
}

    .navlinks a {
        padding: 15px 20px 13px 20px;
        text-decoration: none;
        color: rgb(33, 37, 41);
        border-bottom: 3px solid transparent;
    }

        .navlinks a:hover,
        .navlinks a:active {
            color: rgb(32, 232, 85);
            border-bottom: 3px solid rgb(32, 232, 85);
        }

.navlink_selected {
    color: rgb(32, 232, 85) !important;
    border-bottom: 3px solid rgb(32, 232, 85) !important;
}

.actionBtn {
    width: 170px;
    text-align: right;
}

    .actionBtn a {
        margin-right: 1px;
        padding: 10px 30px;
        border: 1px solid rgb(32,232,85);
        background-color: rgb(32,232,85);
        color: white;
        border-radius: 5px;
        text-decoration: none;
    }

        .actionBtn a:hover,
        .actionBtn a:active {
            border: 1px solid rgb(87, 255, 131);
            background-color: rgb(87, 255, 131);
        }

@media(max-width:950px) {
    .navlinks {
        display: none;
    }

    .actionBtn {
        position: fixed;
        right: 40px;
    }
}

@media(max-width:600px) {
    .top-header,
    .bottom_header {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media(max-width:400px) {
    .top-header,
    .bottom_header {
        padding-left: 10px;
        padding-right: 10px;
    }

    .actionBtn {
        display: none;
    }
}

/* Section 1
-------------------------------------------------- */
.section1 {
    margin-top: 83px;
    margin-bottom: -83px;
    background-color: rgb(255, 255, 255);
    background: url(../imgs/bg-imgs/homepage_banner_bg.svg) center content-box no-repeat;
    background-size: cover;
}

@media(max-width:1020px) {
    .section1 {
        margin-top: 83px;
        margin-bottom: -83px;
        background-color: rgb(255, 255, 255);
        background: url(../imgs/bg-imgs/homepage_banner_nobg_bg.svg) center content-box no-repeat;
        background-size: cover;
    }
}

.gif_preview_section {
    padding: 50px 0;
    background-color: rgb(255, 255, 255);
    background: url(../imgs/bg-imgs/portfolio_bg.svg) center content-box no-repeat;
    background-size: cover;
}

@media(max-width:1020px) {
    .gif_preview_section {
        padding: 0px 0;
    }
}

.gif_preview_grid {
    padding: 50px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    transition: all ease .5s;
}

@media(max-width:1150px) {
    .gif_preview_grid {
        padding: 50px 20px;
    }
}

@media(max-width:1000px) {
    .gif_preview_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:650px) {
    .gif_preview_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.gif_grid_item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    transition: all ease .2s;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}

    .gif_grid_item iframe {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .gif_grid_item:hover,
    .gif_grid_item:active {
        background-color: rgb(255, 255, 255);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 05);
    }

.preview_section_header .portfolio_head {
    font-family: OpenSans-SemiBold;
    color: rgb(67, 228, 171);
    font-size: 30px;
}

.main_download_projects {
    cursor: pointer;
    padding: 8px 60px;
    color: rgb(67,228,171) !important;
    border: solid 2px rgb(67,228,171);
    border-radius: 50px;
    text-decoration: none;
}

    .main_download_projects:hover,
    .main_download_projects:active {
        color: white !important;
        background-color: rgb(67,228,171);
        text-decoration: none;
    }

.portfolio_head_section {
    margin: 50px 0;
}
/*
    --------------- Animation Start
*/
/*@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}*/
/*
    --------------- Animation End
*/ /*
@media (max-width:950px) {
    .section1 {
        background-color: white;
        background-image: url(../imgs/bg-imgs/homepage_banner_bg.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}*/

.section1_container {
    max-width: 900px;
    color: black;
    background-color: transparent;
    margin-top: 120px!important;
}

.section_1-header {
    font-size: 44px;
    font-weight: 900;
    padding: 60px 0 0 30px;
}

.section1_checkmark {
    margin: -3px 2px 0 0;
}

.section1_package ul li {
    font-family: OpenSans-Regular, FiraSans-Regular,'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    margin: 12px;
    margin-left: 0px;
    color: rgb(0, 0, 0);
    padding-left: 30px;
}

    .section1_package ul li i {
        margin-right: 60px;
    }

.section1_button_container {
    margin-top: 30px;
    padding-left: 30px;
}

.section1_download-btn {
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 700;
    border: 2px solid;
    border-radius: 2px;
    padding: 10px 20px 10px 20px;
    border-color: rgb(0, 208, 55);
    background-color: rgb(0, 208, 55);
    transition: all .5s ease;
}

    .section1_download-btn:hover {
        text-decoration: none;
        border-color: rgb(32, 232, 85);
        background-color: rgb(32, 232, 85);
        color: rgb(255, 255, 255);
    }

.section1_pricing-btn {
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 700;
    border: 2px solid;
    border-radius: 2px;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    border-color: rgb(255, 114, 0);
    background-color: rgb(255, 114, 0);
    transition: all .5s ease;
}

    .section1_pricing-btn:hover {
        text-decoration: none;
        color: rgb(255, 255, 255);
        border-color: rgb(255, 156, 75);
        background-color: rgb(255, 156, 75);
        transition: all .5s ease;
    }

.section1_link {
    text-decoration: underline;
    padding-left: 30px;
}
/* Section 1B
-------------------------------------------------- */
.section1B_container {
    font-family: OpenSans-Regular;
    background-color: rgb(255, 255, 255);
}

.section1B_inner_container {
    min-height: 370px;
    width: 90%;
    margin: 80px auto;
    margin-top: 0px;
    background-color: transparent;
    border: 1px solid rgb(234, 234, 234);
    transition: all ease .5s;
}

    .section1B_inner_container:hover {
        box-shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.1);
    }

.section1B_top {
    color: rgb(68, 79, 96);
    padding: 20px 30px;
    background-color: rgb(255, 255, 255);
    text-align: center;
}

.section1B_bottom {
    padding: 25px 30px 8px 30px;
    font-size: 16px;
}

    .section1B_bottom ul li {
        padding: 8px 0;
    }

.section1B_bottom_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.section1B_try_zip_btn {
    color: white !important;
    padding: 15px 40px;
    min-width: 310px;
    background-color: rgb(98,255,76);
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    transition: all .7s ease;
}

    .section1B_try_zip_btn:hover,
    .section1B_try_zip_btn:active {
        text-decoration: none;
        background-color: rgb(60, 236, 35);
    }

.section1B_try_nuget_btn {
    border-radius: 0px;
    color: white !important;
    padding: 15px 40px;
    min-width: 310px;
    transition: all .7s ease;
    text-decoration: none;
    background-color: rgb(59, 122, 252);
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
}

    .section1B_try_nuget_btn:hover,
    .section1B_try_nuget_btn:active {
        background-color: rgb(43, 87, 176);
        text-decoration: none;
    }

/* Feedback Dropdown Section
-------------------------------------------------- */
.top-link {
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

    .top-link:hover {
        text-decoration: none;
    }

.header_text {
    font-size: 16px;
    font-weight: 700;
}

.socialIcon {
    text-decoration: none;
    transition: all .5s ease;
}

    .socialIcon:hover {
        text-decoration: none;
    }

.social_icon_fb {
    font-size: 35px;
    color: rgb(0, 86, 179);
}

    .social_icon_fb:hover {
        color: rgb(11, 60, 113);
    }

.social_icon_twt {
    font-size: 35px;
}

.social_icon_ins {
    font-size: 35px;
    color: rgb(255, 94, 34);
}

    .social_icon_ins:hover {
        color: rgb(196, 61, 11);
    }

.social_icon_yt {
    font-size: 35px;
    color: rgb(254, 0, 0);
}

    .social_icon_yt:hover {
        color: rgb(189, 18, 18);
    }

.social_icon_pi {
    font-size: 35px;
    color: rgb(198, 29, 38);
}

    .social_icon_pi:hover {
        color: rgb(156, 33, 39);
    }
/* Section2
-------------------------------------------------- */
.section2 {
    font-family: OpenSans-Regular;
    padding: 50px;
    background-color: white;
    background-image: url(../imgs/bg-imgs/section2-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section2_intro_container {
    padding: 50px;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.section2_grid_item {
    height: 165px;
    border: 1px solid rgba(0,0,0, 0.09);
    border-radius: 6px;
    color: rgb(142, 155, 175);
    transition: all .3s ease;
}

    .section2_grid_item:hover {
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.20);
    }

    .section2_grid_item p {
        margin-top: 25px;
        font-weight: 500;
    }

    .section2_grid_item img {
        margin-top: 25px;
    }

.section2_grid_item_a_wrapper {
    cursor: pointer;
}

    .section2_grid_item_a_wrapper:hover {
        text-decoration: none;
    }
/* Section3
-------------------------------------------------- */
.section3 {
    padding: 50px;
    padding-top: 0px;
    background-color: white;
    font-family: OpenSans-Regular;
}

.section3_grid {
    margin: 0px 50px 0 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 3px;
    padding: 30px;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
}

.section3_grid_item {
    padding: 10px 0 50px 30px;
}

    .section3_grid_item h2 {
        font-weight: 700;
    }

    .section3_grid_item h5 {
        font-weight: 500;
    }

    .section3_grid_item p {
        color: rgba(0, 0, 0, 0.6);
        font-size: 17px;
        margin-top: 20px;
        font-weight: 500;
    }

.section3_link_container {
    margin-top: 30px;
}

    .section3_link_container a {
        font-size: 18px;
        font-weight: 500;
    }

/* Section4
-------------------------------------------------- */
.section4 {
    font-family: OpenSans-Regular;
    padding: 50px;
    background-color: rgb(255, 255, 255);
}

.section4_button {
    padding: 10px 60px;
    background-color: rgb(89, 86, 233);
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: white !important;
    transition: all 1s ease;
}

    .section4_button:hover {
        text-decoration: none;
        background-color: rgb(117, 114, 248);
    }

.section4_grid {
    margin: 0 50px 0 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    padding: 30px;
    border: 1px solid rgb(219, 219, 219);
}

.section4_grid_item {
    padding: 10px 0 50px 30px;
}

    .section4_grid_item h1 {
        padding-top: 30px;
        font-size: 160px;
        font-weight: 900;
    }

    .section4_grid_item p {
        font-size: 16px;
        font-weight: 500;
    }
/* Section5
-------------------------------------------------- */
.section5_section {
    font-family: OpenSans-Regular;
    padding: 50px;
    color: rgb(142, 155, 175);
    background-color: rgb(250, 250, 250);
}

.section5_container {
    text-align: center;
    padding: 0px 50px;
}

    .section5_container h1 {
        font-size: 70px;
        font-weight: 700;
    }

.section5_grid {
    padding: 50px 50px 0 50px;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.section5_grid_item {
    padding: 35px;
    box-shadow: 0 0 15px rgba(0,0,0,.2);
    transition: all .9s ease;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 2px;
    color: black;
    background-color: rgb(255, 255, 255);
    display: grid;
    grid-template-columns: 2fr 10fr;
    cursor: default;
}

.section5_grid_item_header {
    font-family: OpenSans-SemiBold;
    font-size: 20px;
}

.section5_text_container {
    margin-left: 30px;
}

    .section5_text_container p {
        margin-top: 20px;
        font-size: 16px;
        font-weight: 500;
    }

.section5_a_div {
    color: white;
    text-decoration: none;
}

    .section5_a_div:hover {
        color: white;
        text-decoration: none;
    }

/* Section8
-------------------------------------------------- */
.section8 {
    padding: 20px;
    background-color: rgb(255, 255, 255);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section8_container {
    padding: 50px;
    color: rgb(0, 0, 0);
}

.section8_grid_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.section8_grid_item .section8_text {
    color: rgb(48, 99, 190);
    font-size: 17px;
}

.section8_subscribe_form {
    width: 90%;
    margin: auto;
    background-color: rgba(255, 255, 255,.85);
    border: 1px;
    border-radius: 2px;
    border-style: solid;
    padding: 20px;
    padding-bottom: 60px;
    color: gray;
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}

    .section8_subscribe_form p {
        font-size: 18px;
        font-weight: 400;
        margin-top: -10px;
        color: rgb(187, 187, 187);
    }

.subscribe_button {
    margin: 5px;
    padding: 20px 60px;
    border: 1px solid rgb(219, 219, 219);
    border-radius: 50px;
    background-color: rgb(32,232,85);
    border: 1px solid rgb(32,232,85);
    color: rgb(255, 255, 255);
    box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.5);
    transition: all ease .5s;
}

    .subscribe_button:hover,
    .subscribe_button:active {
        box-shadow: none;
    }

.section8_email_field {
    width: 500px;
    margin: auto;
}

/* Section9
-------------------------------------------------- */
.section9 {
    padding-top: 30px;
    font-family: OpenSans-Regular;
    background-color: rgb(250, 250, 250);
}

.section9_container footer {
    padding: 0 50px 0 50px;
}

footer .section9_grid {
    display: grid;
    grid-gap: 25px;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
}

.section9_grid_item h6 {
    font-family: OpenSans-SemiBold;
    cursor: default;
    font-size: 14px;
    color: rgb(97, 97, 97);
    padding-bottom: 10px;
    border-bottom: 1px dotted rgb(97, 97, 97);
}

.section9_grid_item_links_container {
    margin-top: 15px;
}

    .section9_grid_item_links_container ul li a {
        font-family: OpenSans-Regular;
        color: rgb(97, 97, 97);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all .3s ease;
    }

        .section9_grid_item_links_container ul li a:hover {
            color: rgb(32, 232, 85);
            text-decoration: underline;
        }

    .section9_grid_item_links_container ul li {
        line-height: 35px;
    }

.section9_company_overview {
    color: rgb(97, 97, 97);
    padding-top: 20px;
}

    .section9_company_overview h6 {
        font-family: OpenSans-SemiBold;
        font-size: 17px;
    }

    .section9_company_overview p {
        padding-right: 40%;
        margin-top: 10px;
        font-weight: 500;
        font-size: 15px;
    }

.section9_quick_links_grid {
    padding: 10px 0 20px 0;
    width: 70%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.section9_quick_links_grid_item a {
    font-family: OpenSans-SemiBold;
    color: rgb(97, 97, 97);
    text-decoration: none;
    font-size: 15px;
    transition: all .5s ease;
}

    .section9_quick_links_grid_item a:hover {
        color: rgb(32, 232, 85);
    }

.section9_copyrights {
    padding-bottom: 1px;
    font-size: 14px;
}

    .section9_copyrights p a {
        color: rgb(97, 97, 97);
        font-family: OpenSans-Bold;
    }

        .section9_copyrights p a:hover {
            color: rgb(32, 232, 85)
        }
/*error handling*/
.section1_error_container {
    text-align: center;
    /**/
    margin-top: 83px;
    min-height: 650px;
    background-color: rgb(255, 255, 255);
    background-image: url(../imgs/errors/404.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.error_header {
    font-family: OpenSans-Bold;
    padding-top: 400px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 20px;
}

.error_button_cont {
    margin-top: 100px;
}
/* Media queries
-------------------------------------------------- */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}
