﻿/* @CHARSET "ISO-8859-1"; */
/* Reset CSS
 * --------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, textarea, p, blockquote, th, td {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

table {
    border-spacing: 0;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-weight: normal;
    font-style: normal;
}

strong {
    font-weight: bold;
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}


/* Custom CSS
 * --------------------------------------- */
:root {
    --orange: #FFAA06;
    --title:#1f2937;
    --text:#888f98;
    --bg:#f4f9fc;
}
/*******************************************/
body, html {
    background-color: var(--bg);
    font-family: 'Montserrat', sans-serif;
}
/*font-family: 'Josefin Sans', sans-serif;*/
p {
    color: var(--text);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    color: var(--title);
}
.bold{
   font-family: 'Lato', sans-serif;
   font-weight: 600;
}
/*#region buttons*/
 input[type=button] {
    background-color: var(--orange);
    border-radius: 3px;
    font-size: 15px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: #000 !important;
    border: 0;
    padding: 10px 25px;
}
/*#endregion buttons*/
.logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.logo a {
    color: var(--title);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .logo img {
        height: 100%;
        display: block;
        margin: auto;
    }
    
    .logo span {
       font-family: 'Lato', sans-serif;
       font-weight: 900;
       font-size: 28px;
       margin-left: 5px;
    }
.menu .navbar li:last-child{
    margin-right: 60px;
}
.menu .navbar li a {
    color: #394245;
    font-size: 18px;
    transition: 0.3s;
}

    .menu .navbar li a:hover {
        color: var(--orange);
    }
      .menu .navbar li a:hover {
            background: linear-gradient(to right, var(--orange) 2px, transparent 2px) 0 0, linear-gradient(to right, var(--orange) 2px, transparent 2px) 0 100%, linear-gradient(to left, var(--orange) 2px, transparent 2px) 100% 0, linear-gradient(to left, var(--orange) 2px, transparent 2px) 100% 100%, linear-gradient(to bottom, var(--orange) 2px, transparent 2px) 0 0, linear-gradient(to bottom, var(--orange) 2px, transparent 2px) 100% 0, linear-gradient(to top, var(--orange) 2px, transparent 2px) 0 100%, linear-gradient(to top, var(--orange) 2px, transparent 2px) 100% 100%;
            background-repeat: no-repeat;
            background-size: 10px 10px;
        }

    .menu .navbar li a.active {
        color: var(--orange);
    }

.menu .navbar .navbar-collapse {
    justify-content: end
}

.menu .dropdown-toggle {
    background: transparent;
    color: #394245;
    text-align: left;
    border: 0;
}

.menu .navbar li .dropdown-menu {
    background: rgba(217,217,217,0.2);
    padding: 10px 85px 10px 0px;
    border-radius: 3px;
}

    .menu .navbar li .dropdown-menu a {
        color: #394245;
        font-size: 17px;
        font-weight: 400;
        transition: 0.3s
    }

        .menu .navbar li .dropdown-menu a:hover {
            background: transparent;
            color: var(--orange);
        }

.dropdown-toggle::after {
    content: url("data:image/svg+xml; utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' class='bi bi-chevron-down' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/> </svg>");
    color: #394245;
    border: 0;
    vertical-align: 0;
    position: relative;
    top: 6px;
}

.menu .navbar-nav .nav-link {
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 7px;
    margin: 10px 5px 0 5px;
    font-weight: 500;
    font-size: 16px
}

.navbar {
    float: right
}

    .navbar .navbar-toggler {
        border:0;
        padding: 0;
    }

        .navbar .navbar-toggler svg {
            height: 44px;
            width: 43px;
        }


        @media screen and (max-width: 768px) {
            .logo {
                text-align: left;
            }
            .logo img {
                margin: unset;
                margin-left: 15px;
            }

            
        }

/*#region title_with_line*/
.title_with_line {
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 32px;
}

    .title_with_line h2 {
        color: var(--title) !important;
        font-weight: 400;
        text-align: center;
    }

    .title_with_line:before {
        content: '';
        position: absolute;
        left: 0;
        background: var(--orange);
        width: 33.33333333%;
        height: 2px;
        top: 17px;
    }

    .title_with_line:after {
        content: '';
        position: absolute;
        right: 0;
        background: var(--orange);
        width: 33.33333333%;
        height: 2px;
        bottom: 17px;
    }
/*#endregion title_with_line*/

/*#region title*/
.title {
    width: 100%;
    color: #394245;
    position: relative;
    text-align: center;
    font-size: 32px;
}

.subtitle {
     padding-top: 45px;
    color: var(--text);
    font-size: 17px;
    line-height: 28px;
    text-align: center
}
/*#endregion title*/


/*#region about*/
.about {
    padding: 80px 0;
}

.about_text {
    padding-top: 45px;
    color: var(--text);
    font-size: 17px;
    line-height:30px;
    text-align: center
}
@media screen and (max-width: 768px) {
    .about {
        padding: 20px 0px;
        }
    }
/*#endregion about*/

/*#region platform*/
.platform {
    width: 100%;
}

    .platform .title {
        margin-bottom: 40px;
    }
/*#endregion platform*/

/*#region accordion_slider*/
.accordion_slider {
    margin-top: 50px;
}

.flex-container {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
}

.flex-slide {
    height: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center
}

@media screen and (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        margin-bottom: 50px;
    }
}

.flex-title, .flex-title a {
    transition: all 500ms ease;
    color: var(--orange);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}


.flex-about {
    color: #FFFFFF;
    width: 100%;
    font-size: 17px;
    text-align: center;
    padding: 0 90px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    height: 250px;
    display: flex;
    align-items: center;
}

.flex-link {
    position: relative;
    text-align: center;
    display: block;
    color: #fff;
    width: 100px;
    transition: 0.2s;
    font-family: 'Josefin Sans', sans-serif;
}

    .flex-link:after {
        content: "";
        position: absolute;
        height: 1px;
        width: 45%;
        background: #fff;
        right: -45%;
        top: 50%;
    }

    .flex-link:before {
        content: "";
        position: absolute;
        height: 1px;
        width: 45%;
        background: #fff;
        left: -45%;
        top: 50%;
    }

    .flex-link:hover {
        color: var(--orange)
    }

        .flex-link:hover:before,
        .flex-link:hover:after {
            background: var(--orange);
        }

@media screen and (max-width: 768px) {
    .flex-about {
        padding: 0%;
        border: 0px solid #f1f1f1;
    }
}

.flex-slide {
    -webkit-flex:2;
    /* Safari 6.1+ */
    -ms-flex: 2;
    /* IE 10 */
    flex: 2;
    cursor: pointer;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

@media screen and (max-width: 768px) {
    .flex-slide {
        overflow: auto;
        overflow-x: hidden;
        margin-bottom: 0;
        padding: 100px 10px;
    }
}

@media screen and (max-width: 768px) {
    .flex-slide p {
        font-size: 0.7em;
    }
}

@media screen and (max-width: 768px) {
    .flex-slide ul li {
        font-size: 2em;
    }
}

.flex-slide:hover {
    -webkit-flex-grow: 3;
    flex-grow: 3;
}

.home {
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/Platforms/autonomous-aerial-systems.jpg);
    background-size: cover;
    background-position: right top;
}

@media screen and (min-width: 768px) {
    .home {
        animation: aboutFlexSlide 3s 1;
        animation-delay: 0s;
    }
}

@keyframes aboutFlexSlide {
    0% {
        -webkit-flex-grow: 2;
        flex-grow: 2;
    }

    50% {
        -webkit-flex-grow: 3;
        flex-grow: 3;
    }

    100% {
        -webkit-flex-grow: 2;
        flex-grow: 2;
    }
}



@keyframes homeFlextitle {
    0% {
        transform: rotate(90deg);
        top: 15%;
    }

    50% {
        transform: rotate(0deg);
        top: 15%;
    }

    100% {
        transform: rotate(90deg);
        top: 15%;
    }
}


@keyframes flexAboutHome {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.work {
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/Platforms/life-service-analysis.jpg);
    background-size: cover;
    background-position: center top;
}

.contact {
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/Platforms/artificial-intelligence.jpg);
    background-size: cover;
    background-position: center center;
}



.spinner {
    position: fixed;
    top: 0;
    left: 0;
    background: #222;
    height: 100%;
    width: 100%;
    z-index: 11;
    margin-top: 0;
    color: #fff;
    font-size: 1em;
}

.cube1, .cube2 {
    background-color: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes sk-cubemove {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    }

    50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }

    75% {
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}
/*#endregion accordion_slider*/

/*#region footer*/
.footer {
    background: #242e49;
    padding-top: 90px;
}

.footer .logo {
   text-align: left;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 60px;
}

.footer .logo img {
    margin: unset;
    display: inline-block;
}

.footer .logo span {
   color:white;
    display: inline-block;
    margin-left: 10px;
}
.footer p{
    color:white !important
}

.footer_content {
    padding-bottom: 10px;
}

.NU_info {
    width:100%;
}

.NU_info p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
}

.pages {
    color: white;
    display: flex;
    justify-content: center;
}

    .pages ul li {
        list-style: none;
        margin-top: 5px;

    }
    .pages ul li:nth-child(2){
        margin-top: 20px;
    }

        .pages ul li a {
            font-size: 15px;
            display:inline-block;
            color: white;
            padding: 5px 10px;
            transition: 0.3s;
        }

       .pages ul li a:hover {
            background: linear-gradient(to right, var(--orange) 2px, transparent 2px) 0 0, linear-gradient(to right, var(--orange) 2px, transparent 2px) 0 100%, linear-gradient(to left, var(--orange) 2px, transparent 2px) 100% 0, linear-gradient(to left, var(--orange) 2px, transparent 2px) 100% 100%, linear-gradient(to bottom, var(--orange) 2px, transparent 2px) 0 0, linear-gradient(to bottom, var(--orange) 2px, transparent 2px) 100% 0, linear-gradient(to top, var(--orange) 2px, transparent 2px) 0 100%, linear-gradient(to top, var(--orange) 2px, transparent 2px) 100% 100%;
            background-repeat: no-repeat;
            background-size: 10px 10px;
            color: var(--orange);
        }


.search span {
    margin-bottom: 15px;
    display: block;
    color: white;
}

.search .search_container {
    position: relative;
    display: flex;
}

.search_container .search {
    border: 0;
    padding: 10px;
    border-radius: 5px 0 0 5px;
}

    .search_container .search:focus {
        outline: none;
        box-shadow: unset;
        border: 0
    }

.search_container .btn_search {
    background-color: var(--orange);
    border-radius: 0 5px 5px 0;
    font-size: 15px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: #000 !important;
    padding-right: 25px;
    padding-left: 25px
}

    .search_container .btn_search:focus {
        background-color: var(--orange);
    }

.social {
    color: white;
    margin-top: 35px;
}

    .social span {
        margin-bottom: 15px;
        display: block;
        color: white
    }

    .social .social_container {
        position: relative;
        display: flex;
    }

    .social .social_item {
        background: rgba(200,177,61,0.2);
        border-radius: 0;
        padding: 6px;
        border: 1px solid var(--orange);
        margin-right: 12px;
    }

        .social .social_item svg {
            width: 20px;
            height: 20px;
            display: block;
        }

.footer_right {
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    padding-bottom: 10px;
    text-align: center
}
.footer_right p {
    color: #fff !important;
}
.footer hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid #93A5AD;
    opacity: 1;
}

@media (max-width:768px) {
    .footer .logo {
        justify-content: center;
    }
       .pages {
        justify-content: left;
        margin: 30px 0;
    }
    .partner_section .partner_box a {
    padding: 25px 35px !important;
 }
.partner_section .partner_box.openlab img {
    width:120px !important;
}
    .partner_section .partner_box img {
    width:185px !important;
}
}
/*#endregion footer*/

@media (min-width:0px) {
    .title_with_line:before, .title_with_line:after {
        display: none;
    }

    .search_container .search {
        width: 100%
    }
    .service_box_container {
       position:relative
    }

    .accordion_slider {
        height: auto;
    }
   
}

@media (min-width:768px) {
   
    .service_box_container {
        position: absolute
    }
    
    .title_with_line:before, .title_with_line:after {
        display: block;
    }
    .accordion_slider{
        height: 700px;
    }
}



/*#region partner*/
.partner_section {
    margin-top: 50px;
    align-items: center;
    justify-content: center;
}
    .partner_section .partner_box {
        text-align: center
    }
    .partner_section .partner_box a {
        display: inline-block;
        transition: 0.3s;
        padding: 45px 35px;
      
    }
        .partner_section .partner_box a:hover {
            background: linear-gradient(to right, var(--orange) 2px, transparent 2px) 0 0, linear-gradient(to right, var(--orange) 2px, transparent 2px) 0 100%, linear-gradient(to left, var(--orange) 2px, transparent 2px) 100% 0, linear-gradient(to left, var(--orange) 2px, transparent 2px) 100% 100%, linear-gradient(to bottom, var(--orange) 2px, transparent 2px) 0 0, linear-gradient(to bottom, var(--orange) 2px, transparent 2px) 100% 0, linear-gradient(to top, var(--orange) 2px, transparent 2px) 0 100%, linear-gradient(to top, var(--orange) 2px, transparent 2px) 100% 100%;
            background-repeat: no-repeat;
            background-size: 20px 20px;
        }

    .partner_section .partner_box img {
        width:100%;
    }
/*#endregion partner*/

/*#region hero*/
.hero {
    height: calc(100vh - 90px);
    width: 100%;
    background:var(--bg) url(../images/Slider/hero.png) no-repeat;
    background-size:65% 111% ;
    background-position: right;
}
.hero .container, .hero .row {
    height: 100%;
}
.hero .row {
    display: flex;
    align-items: center;
}
.hero h1 {
    font-weight: 800;
    font-size:48px;
}
.hero h3 {
     font-weight: 800;
    font-size:48px;
}

.hero ul {
    font-weight:500;
    font-size:19px;
    color:var(--title);
    font-family: 'Lato', sans-serif;
}
.hero ul li {
    display: flex;
    margin-bottom: 6px;
}
.hero ul li p{
color:var(--title);
}
.hero .check_icon{
    color: var(--orange);
    margin-right:7px;
}
.hero a.hero_link {
    background-color: var(--orange);
     border: 1px solid var(--orange);
    border-radius: 3px;
    font-size: 18px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
      color: var(--title) !important;
    padding: 8px 25px;
    margin-top: 25px;
    display: inline-block;
}

.hero_link_default{
    background-color:#fff;
    border-radius: 3px;
    font-size: 18px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: var(--title) !important;
    border:1px solid #dedfe0;
    padding: 8px 25px;
    margin-top: 25px;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .hero h3 {
        font-size: 25px;
    }

    .hero h5 {
        font-size: 18px;
    }

    .hero_link_default {
        margin-top: 10px;
        margin-left: 0 !important;
    }
    .hero {
        height: calc(100vh - 125px);
        background-size:contain ;
    }
}

/*#endregion hero*/
