﻿/* IU Colours
 *
 * Main colours:          #00649e #f06921 #ffffff
 * Supplementary colours: #0068a0 #666666 #e1e1e1 #f59764
 * 
 *
 * #00005C; - IU dark blue.
 * #080542; - IU dark purple-blue
 */


body {
    margin: 0px;
    font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
    background-color: #fafafa;
    background: gray; /*  #001d38; */
    font-weight: 100;
    color: white;
    --smart-background: #080542;
    --smart-border: #080542;
    --smart-background-color: white;
    --smart-ui-state-border-hover: #F06921;
    --smart-ui-state-border-active: #F06921;
    --smart-ui-state-border-focus: #F06921;
    --smart-outline: #F06921;
}


/* ----------------------------------------------------------------------
 *
 * Header, including the top-level menu.
 *
 * ---------------------------------------------------------------------- */


header {
    position: fixed;
    z-index: 11;
    top: 0;
    width: 100%;
    height: 52px;
    padding: 16px;
    background: none;
    /* background: #001d38; */
}

    header div.header-container {
        width: 95%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

    header div.header-container div.logo img {
        height: 52px;
    }


smart-menu {
    margin-left: 10px;
    margin-right: 10px;
    visibility: visible;
    /* padding: 28px; */
    --smart-menu-default-width: 100%;
    --smart-surface: rgba(0.1, 0.1, 0.1, 0.3);
    --smart-surface-color: white;
    /* --smart-border: transparent; */
    /* --smart-background: #001d38; /\* #0067b8; *\/ */
    --smart-border-width: 0;
    --smart-elevation-4: none; /* box-shadow.. */

    --smart-background: rgba(0.1, 0.1, 0.1, 0.3);
    /* --smart-background: #001d38; /\* #00005c; *\/ */
    /* --smart-border: #001d38; /\* #00005c; *\/ */
    /* --smart-background-color: white; */
}

.smart-menu .smart-menu-main-container {
    direction: rtl;
}

smart-menu .smart-header {
    /* --smart-surface-color: white; */
    /* color: white; */
}

smart-menu-item {
    visibility: visible;
    /* font-weight: 400 !important; */
    /* border: 3px solid yellow; */
    width: 100px;
}

    smart-menu-item[hover] {
        --smart-ui-state-color-hover: #F06921;
        background: none;
    }

    smart-menu-item.active-item {
        /* border-color: #F06921; */
        /* color: #F06921; */
    }

smart-menu-item[hover], smart-menu-items-group[hover] {
    /* --smart-ui-state-hover: transparent; */
    /* --smart-ui-state-border-hover: white; */
    /* --smart-ui-state-color-hover: #ccc; */
}

smart-menu-item.active-item {
    /* color: #ccc; */
    /* border-bottom: 2px solid #ccc; */
}


div.smart-menu-minimized-items-container {
    /* width: 50vw; */
    /* color: white; */
    display: flex;
    flex-direction: column-reverse;
}




/* ----------------------------------------------------------------------
 *
 * Banner with video and a title.
 *
 * ---------------------------------------------------------------------- */


section.banner-container {
    /* height: 66vh; */
    aspect-ratio: 16 / 9;
    /* min-height: 450px; */
    position: relative;
}


section.banner-container .banner-title {
    padding-top: 25%;
    font-size: 48px;
    font-weight: normal;
    text-align: center;
    color: white;
}


#banner-video {
    width: 100vw;
    /* height: 80vh; */
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
}


#banner-image {
    width: 100vw;
    /* height: 80vh; */
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    border: 0px;
    opacity: 0;
    transition: opacity 2s;
}


/* ----------------------------------------------------------------------
 *
 * About the company section.
 *
 * ---------------------------------------------------------------------- */

section.about-container {
    padding-top: 60px;
    text-align: center;
    background-color: #001930; /* #000b16; */
    color: #e1e1e1;
}

    section.about-container .title {
        font-size: 32px;
        margin-bottom: 10px;
        color: #00649e;
    }

    section.about-container .description {
        width: 50%;
        margin: 0 auto;
        font-size: 17px;
        padding-bottom: 50px;
    }

    section.about-container .description strong {
        color: #f06921;
    }

    section.about-container hr {
        border-top: 1px solid #f06921;
        width: 50%;
        margin-top: 25px;
        margin-bottom: 50px;
    }


/* ====================================================================== */


section.offering-container {
    background-color: #00284e;
}

section.offering-second-container {
    padding-bottom: 50px;
    background: #001930; /* #001d38; */
}

section.offering-container,
section.offering-second-container {
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 50%;
}

    section.offering-container > div,
    section.offering-second-container > div {
        text-align: center;
    }

.offering-container > div:last-child {
    text-align: left;
}

section.offering-second-container > div:first-child {
    text-align: right;
}

section.offering-container .subtitle,
section.offering-second-container .subtitle {
    color: #00649e;
    font-weight: bold;
    font-size: 25px;
}

section.offering-container .title,
section.offering-second-container .title {
    font-weight: bold;
    font-size: 30px;
}

section.offering-container .description,
section.offering-second-container .description {
    margin-top: 20px;
    color: #757575;
}

section.offering-container > div,
section.offering-second-container > div {
    align-self: center;
}

section.offering-container img,
section.offering-second-container img {
    width: 90%;
}

section.offering-container iframe,
section.offering-second-container iframe {
    width: 90%;
}

    
/* ====================================================================== */
/* Services */
section.services {
    padding-top: 60px;
    text-align: center;
    background-color: #00284e;
}

    section.services .title {
        font-weight: bold;
        font-size: 30px;
        margin-bottom: 10px;
    }

    section.services .description {
        width: 30%;
        margin: 0 auto;
        font-size: 17px;
        margin-bottom: 50px;
        color: #757575;
    }

    section.services .smart-card-holder {
        width: 80%;
        margin: 0 auto;
        padding-bottom: 40px;
    }

    section.services smart-card.service-card,
    section.services smart-card.service-card i,
    section.services smart-card.service-card .services-title,
    section .services smart-card.service-card .text {
        -webkit-transition: background-color 200ms ease-out;
        -moz-transition: background-color 200ms ease-out;
        -o-transition: background-color 200ms ease-out;
        transition: background-color 200ms ease-out;
    }

    section.services smart-card.service-card {
        width: 100%;
        background-color: #001930;
        color: #757575;
        /* height: 20em; */
    }

        section.services smart-card.service-card .services-icon {
            color: #00649e;
            margin-top: 20px;
        }

            section.services smart-card.service-card .services-icon i {
                font-size: 40px;
            }

        section.services smart-card.service-card .services-content {
            padding: 20px;
            padding-top: 10px;
        }

            section.services smart-card.service-card .services-content .services-title a {
                font-weight: normal;
                color: #e1e1e1;
                text-decoration: none;
                font-size: 20px;
            }

        section.services smart-card.service-card:hover {
            background: #00649e;
            color: #dedede;
            cursor: pointer;
        }

            section.services smart-card.service-card:hover .services-title a {
                color: white;
            }
            section.services smart-card.service-card:hover .services-icon i {
                color: #F06921;
            }
/* Services ^ */

/* ====================================================================== */


/* Management-Container + */
.management-container {
    padding-top: 50px;
    text-align: center;
    background: #001930; /* #ffffff; */
    color: #666666;
}

    section.management-container hr {
        border-top: 0.5px solid #f06921;
        width: 50%;
        margin-top: 25px;
        margin-bottom: 50px;
    }

    section.management-container .description strong {
        color: #f06921;
    }

    section.management-container .description a {
        color: #00649e; /* #f06921; */
        text-decoration: none;
    }

    section.management-container .description a:hover {
        text-decoration: underline;
    }

.management-container .title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #00649e;
}

/* section.management-container .description { */
.management-container .description {
    width: 50%;
    margin: 0 auto;
    font-size: 17px;
    padding-bottom: 50px;
}


/* ====================================================================== */

.container {
    max-width: 100%;
}


span.date i,
span.comments i {
    font-size: 15px;
    vertical-align: middle;
}

span.comments {
    margin-left: 10px;
}


/* Get in touch */
.info-container {
    padding: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #00284e;
}

.info-container .title {
    font-size: 40px;
    text-align: center;
}

.info-container .description {
    margin-top: 20px;
    margin-bottom: 100px;
    color: #888;
    text-align: center;
}

.info-container .container {
    display: grid;
    margin-top: 40px;
    grid-template-columns: 50% 50%;
    width: 60%;
    margin: 0 auto;
}

.info-container .left-container .subtitle,
.info-container .right-container .subtitle {
    font-weight: normal;
    font-size: 22px;
    color: #e1e1e1;
}

.info-container .left-container .reg-nos {
    margin-top: 30px;
}

.info-container .left-container .reg-nos td {
    color: #757575;
    padding-top: 0px;
    padding-bottom: 6px;
    padding-right: 10px;
}

.info-container .left-container .reg-nos td i {
    font-style: normal;
    color: #00649e;
}

.info-container .right-container .subdescription {
    padding-right: 20px;
}

.info-container .right-container .links {
    color: #757575;
    margin-top: 30px;
}

.info-container .right-container .links .link {
    margin-bottom: 10px;
}

.info-container .right-container .links i {
    vertical-align: sub;
    font-size: 18px;
    color: #00649e;
}

.info-container .right-container smart-text-box {
    margin-bottom: 20px;
    display: block;
    --smart-text-box-default-width: 100%;
    --smart-editor-height: 40px;
    --smart-border-top-left-radius: 0;
    --smart-border-top-right-radius: 0;
    --smart-border-bottom-left-radius: 0;
    --smart-border-bottom-right-radius: 0;
}


.footer {
    /* border-top: 1px solid #999999; */
    background: #001930 !important; /* #000000 !important; */
    margin: 0 auto;
    font-size: 9pt;
    padding-top: 10px;
    padding-bottom: 12px;
    padding-left: 10px;
    padding-right: 10px;
}


/* ============================================================ */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

/* ============================================================ */

/* Media */
@media only screen and (max-width: 1000px) {
    .header-container {
        width: 80%;
    }
    section.banner-container {
        /* height: 50vh; */
        /* aspect-ratio: 1; */
        /* min-height: 650px; */
    }
    section.banner-container .banner-title {
        padding-top: 100px;
        font-size: 24px;
    }
    section.about-container .description {
        width: 90%;
    }
    .info-container .container {
        grid-template-columns: none;
        width: 95%;
    }
    .management-container .description {
        width: 95%;
    }
}

@media only screen and (max-width: 900px) {
    .header-container {
        width: 90%;
    }
}

@media only screen and (max-width: 800px) {
    .header-container {
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .menu-mobile {
        display: block;
    }

    .header-container {
        width: 100%;
    }

    .info-container .container {
        grid-template-columns: none;
    }
}

@media only screen and (max-width: 500px) {
    section.services .description {
        width: 90% !important; /* with */
    }
}


/* ==================== styles.css ==================== */

:root {
    --smart-primary: #41B883;
}



/* Service container */


.footer {
    color: #757575;
    background: #3B9F6F;
    text-align: right;
}

    .footer a.footer-link {
        color: white;
    }

    .footer .footer-info .footer-text {
        color: white;
    }

    .footer a.footer-link:hover {
        color: black;
    }

@media only screen and (max-width: 700px) {
    section.offering-container,
    section.offering-second-container {
        grid-template-columns: none;
    }

        .offering-container > div:last-child,
        section.offering-second-container > div:first-child {
            text-align: center;
        }

    .offering-container > div:last-child {
        margin-top: 20px;
    }

    section.offering-second-container > div:first-child {
        margin-bottom: 20px;
    }
}
