/*--Default Values--*/
:root {
    --primary-color: #ff7100;
    --white: #fff;
    --black: #000;
}
@font-face {
    font-family: "roboto-regular";
    src:
            url("../fonts/roboto-regular-webfont.eot"),
            url("../fonts/roboto-regular-webfont.ttf") format("truetype"),
            url("../fonts/roboto-regular-webfont.woff2") format("woff2"),
            url("../fonts/roboto-regular-webfont.woff") format("woff"),
            url("../fonts/roboto-regular-webfont.svg#robotoregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "roboto-bold";
    src:
            url("../fonts/roboto-bold-webfont.eot"),
            url("../fonts/roboto-bold-webfont.ttf") format("truetype"),
            url("../fonts/roboto-bold-webfont.woff2") format("woff2"),
            url("../fonts/roboto-bold-webfont.woff") format("woff"),
            url("../fonts/roboto-bold-webfont.svg#robotobold") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "bebasneue";
    src:
            url("../fonts/bebasneue-webfont.eot"),
            url("../fonts/bebasneue-webfont.ttf") format("truetype"),
            url("../fonts/bebasneue-webfont.woff") format("woff"),
            url("../fonts/bebasneue-webfont.svg#bebasneue") format("svg");
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'roboto-regular', sans-serif;
}
header, section, footer {
    width: 100%;
    display: inline-block;
    float: left;
    position: relative;
}
a, button, input[type="submit"] {
    transition: ease-in-out .5s;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

h1, h2 {
    font-family: 'bebasneue', sans-serif;
}

.my_container {
    padding: 0 100px 0 150px;
    width: 100%;
    display: flex;
}

.alt_container {
    padding: 0 130px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.h_banner_header {
    background: #000000;
    width: 100%;
    position: relative;
    z-index: 1;
}
.header {
    padding: 40px 0;
    position: fixed;
    top: 0;
    z-index: 999;
}

nav.navbar {
    padding: 0px;
}

nav.navbar .navbar-brand img {
    max-width: 150px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.header.scroll .navbar-dark .navbar-toggler {
    border-color: #000;
}

.header.scroll .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.header.scroll .navbar-collapse {
    background: #ffffff;
}


.header {
    padding: 30px 0px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.header.scroll {
    padding: 10px 0;
    background: #ffffff;
}

.header.scroll nav.navbar .navbar-brand img {
    max-width: 100px;
}

.main-menu.navbar-dark ul.navbar-nav li a {
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.header.scroll .main-menu.navbar-dark ul.navbar-nav li:not(.active) a{
    color: #000;
}

.main-menu.navbar-dark ul.navbar-nav li.active a,
.main-menu.navbar-dark ul.navbar-nav li a:hover {
    color: #ed1b24;
}
.main-menu.navbar-dark ul.navbar-nav li {
    margin-right: 30px;
}
.main-menu.navbar-dark ul.navbar-nav li:last-child {
    margin-right: 0;
}
.banner-section {
    padding: 250px 0 90px;
    width: 100%;
    float: left;
    position: relative;
}
.banner-img {
    position: relative;
}
.banner-img img {
    position: absolute;
    top: 6px;
    width: 100%;
    max-width: 100%;
}
.banner-content {
    text-align: center;
}
.banner-content h2 {
    font-size: 10rem;
    line-height: 1;
    color: var(--primary-color);
}
.banner-content ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
    -webkit-justify-content: center;
}
.banner-content ul.services {
    gap: 25px;
}

.banner-content ul.services li {
    position: relative;
}

.banner-content ul.services li:after {
    content: '|';
    color: #fff;
    top: 0;
    right: -15px;
    position: absolute;

}

.banner-content ul.services li:last-child:after {
    content: '';
}
.banner-content p {
    line-height: 28px;
    color: #fff;
    margin: 0;
}

.banner-content .contact_bar {
    background: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 15px;
}
.banner-content .contact_bar {
    margin-top: 200px;
}
.banner-content .contact_bar p {
    color: #1c1e3d;
}

.banner-content .contact_bar ul {
    margin: 0;
    gap: 40px;
}

.banner-content .contact_bar li {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
}

.banner-content .contact_bar li img {
    max-width: 30px;
}
section {
    padding: 50px 0;
}

section p {
    font-size: 1.1rem;
}
section:not(.h_banner_header) h2 {
    font-size: 7rem;
    margin-bottom: 60px;
    line-height: 1;
}

.two_columns {
    width: 100%;
    z-index: 0;
    position: relative;
}

.two_columns .side_bar {
    background: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    padding: 55px;
    z-index: 2;
}

.two_columns .side_bar p {
    transform: rotate(90deg);
    margin: 0;
    position: absolute;
    bottom: 200px;
    left: -66px;
    font-size: 1.2rem;
}

.two_columns .side_bar p:before {
    content: '';
    display: block;
    width: 1px;
    height: 350px;
    background: black;
    position: absolute;
    transform: rotate(90deg);
    left: -240px;
    bottom: -160px;
}

/*.two_columns .content section {
    padding-right: 150px;
    padding-left: 150px;
}*/
.h_our_services {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.h_our_services h2 {
    font-size: 7rem;
    margin-bottom: 60px;
}
.h_our_services h3 {
    font-size: 1.5rem;
}

.h_sec2 {
    padding: 50px 0;
}

.h_sec2 h2 {

    font-size: 7rem;
    line-height: .8;
}
.h_sec2 h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-style: italic;
}

.h_sec2 p {
    line-height: 1.2;
}

.h_sec3 {
    background: url(../images/why-choose-us-bg.png) no-repeat top center;
    background-size: cover;
    padding: 50px 0;
    text-align: center;
    z-index: 1;
    color: var(--white);
}

.h_sec3 h2 {
    font-size: 7rem;
    line-height: .8;
    margin-bottom: 60px;
}

.h_sec3 .column-inner {
    border: 2px solid var(--white);
    padding: 20px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    height: 100%;
}

.h_sec3 .image_wrap {
    max-width: 80px;
    margin: 0 auto 20px;
}

.h_sec3 .image_wrap.tech {
    max-width: 70px;
}

.h_sec3 .image_wrap.solutions {
    max-width: 60px;
}

.h_sec3 .row {
    margin-left: -8px;
    margin-right: -8px;
}

.h_sec3 h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.h_sec3 p {
    line-height: 1.4;
}

.contact li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: center;
    -webkit-align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.contact li .image_wrap {
    max-width: 40px;
}

.contact li p {
    font-size: 1.5rem;
    margin: 0;
}

@media (max-width:991px) {
    .alt_container {
        padding: 0 50px;
    }

    .my_container {
        padding: 0 50px 0 100px;
    }

    .banner-section {
        padding: 150px 0 90px;
    }

    .banner-content h2 {
        font-size: 8rem;
    }

    .banner-content ul {
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }

    .banner-content .contact_bar {
        margin-top: 100px;
    }

    .banner-content .contact_bar ul {
        gap: 20px;
    }

    .banner-content p {
        font-size: .9rem;
    }

    .two_columns .side_bar {
        padding: 55px 25px;
    }

    .two_columns .side_bar p {
        font-size: 1rem;
        left: -78px;
    }

    section:not(.h_banner_header) h2 {
        font-size: 5.5rem;
    }

    section:not(.h_banner_header)  h3 {
        font-size: 1.5rem;
    }

    section:not(.h_banner_header)  p {
        line-height: 1.4;
        font-size: 1rem;
    }
}


@media (max-width: 767px) {
    .my_container {
        padding: 0 25px 0 75px;
    }

    .navbar-collapse {
        background: #000;
    }

    .contact li p {
        word-break: break-all;
    }

    .banner-content .contact_bar ul {
        text-align: left;
        justify-content: flex-start;
    }
}

@media (max-width: 549px) {
    section:not(.h_banner_header) h2 {
        font-size: 4.5rem;
    }
}

