@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700|Roboto:300,400,500,700");
/*
0 - 600: Phone
600 - 900: Tablet portrait
900 - 1200: Tablet landscape
1200 - 1800: Normal styles
1800+ : Big Desktop
1em = 16px
The smaller device rules always should write below the bigger device rules
Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component
*/

.header.scrolling .button,
.feature_demo_section.section_dark .card:hover,
.styles_demo_section,
.project_workflow_section .media:hover .icon,
.button_flat:hover,
.button_gradient,
.button_gradient_bordered:hover,
.layout_demo_tab .nav-tabs .button.active,
.layout_demo_tab .nav-tabs .button:hover {
    background-color: #071590;
    background-image: -moz-linear-gradient(left, #071590 0%, #ff003c 100%);
    background-image: -webkit-linear-gradient(left, #071590 0%, #ff003c 100%);
    background-image: linear-gradient(to right, #071590 0%, #ff003c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#071590', endColorstr='#ff003c', GradientType=1);
}

.button_cta {
    background-color: #76a926;
    background-image: -moz-linear-gradient(left, #76a926 0%, #5a8710 100%);
    background-image: -webkit-linear-gradient(left, #76a926 0%, #5a8710 100%);
    background-image: linear-gradient(to right, #76a926 0%, #5a8710 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#76a926', endColorstr='#5a8710', GradientType=1);
}

.section_title .title_number_frame .absolute_number {
   color: #071590;
}

body {
    font-size: 0.9375rem;
    color: #535353;
    background-color: #F6F7F9;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

@media only screen and (max-width: 575px) {
    body {
        font-size: 0.75rem;
    }
}

body,
html {
    height: 100%;
}

a {
    font-size: 0.75rem;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: #333;
}

button:focus {
    outline: none;
}

.section_padding_small {
    padding: 7.5rem 0;
}

@media only screen and (max-width: 1199px) {
    .section_padding_small {
        padding: 6.25rem 0;
    }
}

.section_padding_big {
    padding: 150px 0;
}

@media only screen and (max-width: 1199px) {
    .section_padding_big {
        padding: 7.5rem 0;
    }
}

.section_title {
    margin-bottom: 5rem;
    font-size: 0.9375rem;
}

.section_title .title {
    font-weight: 200;
    margin-bottom: 1.875rem;
    font-size: 2.5625rem;
}

@media only screen and (max-width: 1199px) {
    .section_title .title {
        font-size: 2.3125rem;
    }
}

@media only screen and (max-width: 991px) {
    .section_title .title {
        font-size: 1.7125rem;
    }
}

@media only screen and (max-width: 575px) {
    .section_title .title {
        font-size: 1.5rem;
    }
}

.section_title .title strong {
    font-weight: 600;
}

.section_title p {
    line-height: 29px;
}

.section_title .title_number_frame {
    margin-bottom: 1.875rem;
    display: inline-block;
    position: relative;
}

@media only screen and (max-width: 575px) {
    .section_title .title_number_frame img {
        width: 6.25rem;
    }
}

.section_title .title_number_frame .absolute_number {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 3.75rem;
    font-weight: 500;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 575px) {
    .section_title .title_number_frame .absolute_number {
        font-size: 2rem;
    }
}

.section_dark .section_title,
.section_gradient .section_title {
    color: #fff;
}

.section_dark .section_title .title,
.section_gradient .section_title .title {
    color: #fff;
}

.section_dark .title_number_frame .absolute_number,
.section_gradient .title_number_frame .absolute_number {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: transparent;
}

.banner_section {
    background-image: url("../img/banner.jpg");
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_section .banner_content {
    flex-basis: 100%;
}

.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    transition: all .5s ease-in-out;
}

.header .logo-2 {
    display: none;
}

.header .logo-1 {
    display: block;
}

.header .navbar-brand {
    /* margin-right: 0;
    background-image: url("../img/logo.png");
    height: 19px;
    width: 130px;
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 0; */
}

.header .navbar-collapse {
    justify-content: center;
}

.header .navbar {
    padding: 1rem 0;
}

@media only screen and (max-width: 575px) {
    .header .navbar {
        padding: 1rem;
    }
}

.header .navbar-light .navbar-nav .nav-link {
    color: #fff;
    text-transform: uppercase;
}

.header .navbar-light .navbar-nav .nav-item:not(:last-child) .nav-link {
    margin-right: 14px;
}

@media only screen and (max-width: 991px) {
    .header .navbar-light .navbar-nav .nav-item:not(:last-child) .nav-link {
        margin-right: 0;
    }
}

.header .navbar-light .navbar-nav .nav-item:not(:first-child) .nav-link {
    margin-left: 14px;
}

@media only screen and (max-width: 991px) {
    .header .navbar-light .navbar-nav .nav-item:not(:first-child) .nav-link {
        margin-left: 0;
    }
}

.header .navbar-toggler {
    border-color: #eaeaea;
}

@media only screen and (max-width: 575px) {
    .header .navbar-toggler {
        padding: 0.125rem 0.5rem;
    }
}

.header .button {
    border: 1px solid transparent;
}

.header.scrolling {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 16px 0px;
}

.header.scrolling .logo-2 {
    display: block;
}

.header.scrolling .logo-1 {
    display: none;
}

.header.scrolling .navbar-brand {
    background-position: 0 100%;
}

.header.scrolling .navbar-light .navbar-nav .nav-link {
    color: #222;
}

.header.scrolling .button {
    color: #fff;
}

.header.scrolling .button:hover {
    color: #fff;
}

.hero_text {
    color: #fff;
}

.hero_text .heading {
    font-size: 3.875rem;
    font-weight: 100;
    margin: 2.8125rem 0 2.1875rem 0;
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    .hero_text .heading {
        font-size: 3.125rem;
    }
}

@media only screen and (max-width: 575px) {
    .hero_text .heading {
        font-size: 2.25rem;
    }
}

.hero_text .heading strong {
    font-weight: 800;
}

.hero_text p {
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 2.8125rem;
    line-height: 1.5rem;
}

@media only screen and (max-width: 1199px) {
    .hero_text p {
        font-size: 0.6875rem;
    }
}

.tech_highlights>span {
    height: 4.375rem;
    width: 4.375rem;
    border-radius: 3px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 575px) {
    .tech_highlights>span {
        height: 35px;
        width: 35px;
    }
    .tech_highlights>span img {
        max-width: 100%;
    }
}

.tech_highlights>span:not(:last-child) {
    margin-right: 1.525rem;
}

.tech_highlights .abs_number {
    position: absolute;
    right: 0;
    top: 0;
    height: 1.75rem;
    width: 1.75rem;
    background-color: #6431B0;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transform: translate(50%, -50%);
}

@media only screen and (max-width: 575px) {
    .tech_highlights .abs_number {
        height: 18px;
        width: 18px;
        font-size: 0.625rem;
        font-weight: normal;
    }
}

.single_dashboard_demo,
.single_layout_demo {
    text-align: center;
    margin-bottom: 3.125rem;
}

.single_dashboard_demo h6,
.single_layout_demo h6 {
    font-size: 0.9375rem;
}

.dashboard_demo_image {
    position: relative;
    margin-bottom: 1.875rem;
    box-shadow: 20px 20px 25px 0px rgba(0, 0, 0, 0.1);
}

.dashboard_demo_image .demo_image_hover {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s ease-in-out;
    transform: scale(0);
}

.dashboard_demo_image .demo_image_hover .externel_buttons a:not(:last-child) {
    margin-right: 0.4375rem;
}

.dashboard_demo_image:hover .demo_image_hover {
    transform: scale(1);
}

.layout_demo_section {
    background-color: #fff;
}

.layout_demo_section.section_dark {
    background-color: #363e51;
}

.layout_demo_section.section_dark h6 {
    color: #fff;
}

.layout_demo_section.section_dark .nav-tabs .button {
    color: #fff;
}

.layout_demo_image {
    margin-bottom: 1.5625rem;
    box-shadow: 20px 20px 25px 0px rgba(0, 0, 0, 0.1);
    max-height: 25rem;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .layout_demo_image {
        max-height: 20rem;
    }
}

@media only screen and (max-width: 991px) {
    .layout_demo_image {
        display: inline-block;
        max-height: 15rem;
    }
}

.layout_demo_image .demo_image {
    display: block;
}

.feature_demo_section .card {
    background-color: #fff;
    height: 7.3125rem;
    color: #ccc;
    font-size: 1.5rem;
    transition: background .4s ease-in-out;
}

.feature_demo_section .card:hover {
    box-shadow: 15px 15px 25px 0px rgba(0, 0, 0, 0.1);
}

.feature_demo_section .card .icon {
    display: inline-block;
    margin-bottom: 0.625rem;
}

.feature_demo_section .card h6 {
    font-size: 0.8125rem;
    margin: 0;
}

.feature_demo_section.section_dark {
    background-color: #363e51;
}

.feature_demo_section.section_dark .card {
    background-color: #40485a;
    border-color: #dddddd;
}

.feature_demo_section.section_dark .card h6 {
    color: #fff;
}

.feature_demo_section.section_dark .card:hover {
    color: #fff;
}

.featured_photo_frame {
    border: 20px solid #fff;
}

.styles_demo_section .card {
    flex-direction: row;
    height: 6.25rem;
    font-size: 1.5rem;
    color: #fff;
    background-color: transparent;
    padding-left: 30px;
    justify-content: flex-start;
    z-index: 1;
    border-color: rgba(255, 255, 255, 0.3);
}

.styles_demo_section .card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.styles_demo_section .card:hover {
    color: #ccc;
}

.styles_demo_section .card:hover::after {
    background-color: #fff;
}

.styles_demo_section .card:hover h6 {
    color: #333;
}

.styles_demo_section .card .icon {
    margin-right: 1.25rem;
}

.styles_demo_section .card h6 {
    font-size: 0.8125rem;
    margin: 0;
    color: #fff;
}

.dark_layout_section {
    background-color: #fff;
    padding: 12.5rem 0;
}

@media only screen and (max-width: 1199px) {
    .dark_layout_section {
        padding: 7.5rem 0;
    }
}

@media only screen and (max-width: 991px) {
    .dark_layout_section {
        overflow-x: hidden;
    }
}

.device_image img {}

@media only screen and (max-width: 1480px) {
    .dark_layout_img img {
        max-width: 100%
    }
}
@media only screen and (max-width: 1199px) {
    .dark_layout_img img {
        display: none;
    }
}
@media only screen and (max-width: 1480px) {
    .device_image img {
        max-width: 100%
    }
}

@media only screen and (max-width: 1199px) {
    .device_image img {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    .device_image img {
        width: 42vw;
    }
}

@media only screen and (max-width: 991px) {
    .device_image img {
        position: relative;
        width: auto;
        max-width: 100%;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 30px;
    }
}

.project_workflow_section {
    background-color: #fff;
    padding: 17.1875rem 0 9.375rem;
}

@media only screen and (max-width: 1199px) {
    .project_workflow_section {
        padding: 7.5rem 0;
    }
}

.project_workflow_section .media {
    margin-bottom: 2.25rem;
    align-items: center;
}

.project_workflow_section .media:hover .icon {
    color: #fff;
}

.project_workflow_section .media .icon {
    font-size: 1.5rem;
    color: #333;
    margin-right: 1.25rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 5rem;
    width: 4.375rem;
    background-color: #F6F7F9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    transition: background .4s ease-in-out;
}

@media only screen and (max-width: 575px) {
    .project_workflow_section .media .icon {
        height: 4.5rem;
        width: 4rem;
        font-size: 1.2rem;
    }
}

.project_workflow_section .media h6 {
    font-size: 0.9375rem;
}

.footer {
    font-size: 0.9375rem;
    padding: 2.5rem 0;
}

.footer a {
    color: #071590;
}

.button {
    text-transform: uppercase;
    border-radius: 5px;
    padding: 0.9375rem 1.5rem;
    display: inline-block;
    font-weight: 500;
    background-clip: padding-box;
}

@media only screen and (max-width: 575px) {
    .button {
        padding: 0.5375rem 1rem;
    }
}

.button_flat {
    background-color: #fff;
    color: #262626;
    transition: all .2s ease-in-out;
}

.button_flat:hover {
    color: #fff;
}

.button_gradient {
    color: #fff;
    border: 1px solid transparent;
}

.button_gradient:hover {
    color: #262626;
    background: #fff;
    border-color: #eaeaea;
}

.button_gradient_bordered {
    color: #333;
    text-transform: uppercase;
    border-left: 1px solid #071590;
    border-right: 1px solid #ff003c;
    background-position: 0 0, 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-image: -webkit-linear-gradient(left, #071590 0%, #ff003c 100%), 
    -webkit-linear-gradient(left, #071590 0%, #ff003c 100%);
    background-image: linear-gradient(left, #071590 0%, #ff003c 100%), 
    linear-gradient(left, #071590 0%, #ff003c 100%);
    background-color: #fff;
}

.button_gradient_bordered:hover {
    color: #fff;
    background-color: #071590;
    background-image: -moz-linear-gradient(left, #071590 0%, #ff003c 100%);
    background-image: -webkit-linear-gradient(left, #071590 0%, #ff003c 100%);
    background-image: linear-gradient(to right, #071590 0%, #ff003c 100%);
    background-size: 100%;
}

.button_cta {
    display: inline-block;
    text-transform: uppercase;
    padding: 1.375rem 2.5rem 1.375rem 5rem;
    border-radius: 50px;
    position: relative;
    margin-top: 1.875rem;
    box-shadow: 15px 15px 25px 0px rgba(89, 135, 16, 0.3);
}

.button_cta .icon {
    position: absolute;
    left: 6px;
    top: 6px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #fff;
    color: #72A323;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button_cta .text {
    color: #fff;
    font-size: 0.75rem;
}

.layout_demo_tab .nav-tabs {
    margin-bottom: 5rem;
    border-bottom: 0;
    justify-content: center;
}

.layout_demo_tab .nav-tabs .button {
    box-shadow: 0 0 1px #a79f9f;
    color: #262626;
    transition: all .2s ease-in-out;
}

.layout_demo_tab .nav-tabs .button.active,
.layout_demo_tab .nav-tabs .button:hover {
    color: #fff;
}

.layout_demo_tab .nav-tabs .nav-item:not(:last-child) {
    margin-right: 0.5rem;
}

.card {
    border: 1px solid #eaeaea;
    transition: all .2s ease-in-out;
    margin-bottom: 1.875rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 0.625rem;
}

/*# sourceMappingURL=style.css.map */