﻿

@import url('https://fonts.googleapis.com/css?family=Roboto:400,900');

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background: #EEEFF4;
}

a{
    
    font-weight: bold;
}

    a, a:focus, a:hover {
        text-decoration: none !important;
        text-shadow: none !important;
        outline: none;
        color: #009693;
    }

.masterContainer {
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* MENU HEADER */
#navbarTopRow {
    text-align: right;
    padding: 7px 0 0 0;
    background-color: #A5DAF1;
    /*background-image: linear-gradient(to bottom, #A5DAF1, #009693);*/
}

#navbarTopRow .navbarTopIcon{
    font-size: 1.5em;
    /*color:black;*/
}

    #navbarTopRow a:not(:first-child) .navbarTopIcon,
    #navbarTopRow div:not(:first-child) .navbarTopIcon {
        padding-left: 10px;
    }

#navbarMiddleRow {
    padding: 0 0 10px 0;
    background-color: #009693;
    background-image: linear-gradient(to top,#009693, #A5DAF1 );
}

#navbarBottomRow {
    background-color: black;
    font-size: 17px;
}

    #navbarBottomRow .dropdown-menu {
        background-color: #464646;
    }

    #navbarBottomRow a {
        text-transform: uppercase;
        font-weight: bold;
        color: white;
    }

#navbarCollapse {
    padding: 0;
}

#navbarBottomRow #fresponsive > li {
    padding: 16px;
}

    #navbarBottomRow #fresponsive > li:first-child {
        padding-left: 0;
    }

    #navbarBottomRow #fresponsive > li:last-child {
        padding-right: 0;
    }

    #navbarBottomRow #fresponsive > li > a {
        padding: 0;
    }

#navbarBottomRow .dropdown-menu a {
    padding: 12px;
}



/*
1.1 Header Area
***************************************************/
/*Bootstrap Reset*/
.navbar-nav > li > a {
    padding: 0;
}

.mainmenu {
    background-color: transparent;
    border-color: transparent;
    margin-bottom: 0;
    border: 0px !important;
}

.navbar-nav > li:last-child > a {
    padding-right: 0px;
    margin-right: 0px;
}

.dropdown-menu {
    padding: 0px 0;
    margin: 0 0 0;
    border: 0px solid transition !important;
    border: 0px solid rgba(0,0,0,.15);
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
/*=-====Main Menu=====*/
.navbar-nav .open .dropdown-menu > li > a {
    padding: 16px 15px 16px 25px;
}


/******************************Drop-down menu work on hover**********************************/
.mainmenu {
    background: none;
    border: 0 solid;
    margin: 0;
    padding: 0;
    min-height: 20px
}

@media only screen and (min-width: 767px) {
    .mainmenu .collapse ul li {
        position: relative;
    }

        .mainmenu .collapse ul li:hover > ul {
            display: block
        }

    .mainmenu .collapse ul ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 250px;
        display: none
    }
        /*******/
        .mainmenu .collapse ul ul li {
            position: relative
        }

            .mainmenu .collapse ul ul li:hover > ul {
                display: block
            }

        .mainmenu .collapse ul ul ul {
            position: absolute;
            top: 0;
            left: 100%;
            min-width: 250px;
            display: none
        }
            /*******/
            .mainmenu .collapse ul ul ul li {
                position: relative
            }

                .mainmenu .collapse ul ul ul li:hover ul {
                    display: block
                }

            .mainmenu .collapse ul ul ul ul {
                position: absolute;
                top: 0;
                left: -100%;
                min-width: 250px;
                display: none;
                z-index: 1
            }
}

@media(max-width: 767px){
    #navbarCollapse {
        padding: 0 15px;
    }

    .navbar-nav{
        margin: 7.5px 0;
    }

    #navbarBottomRow #fresponsive > li:first-child{
        padding: 16px;
    }
}


/* IMAGES */
.fitImage {
    width: 100%;
    height: 100%;
}

.fitImageCover {
    /*object-fit: cover;*/
    /*position: relative !important;*/
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.fitImageContain {
    /*object-fit: contain;*/
    /*position: relative !important;*/
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.fitImageLeft {
    background-position: left center !important;
}

.fitImageCenter {
    background-position: center center !important;
}

.fitImageRight {
    background-position: right center !important;
}

.fitImageTop {
    background-position: center top !important;
}

.zoomImage {
    transition: all .2s ease-in-out;
}

    .zoomImage:hover {
        transform: scale(1.1);
    }


/* Containers Box */
.customContainerBox{
    background: white;
    border: 1px solid black;
    margin-top: 25px;
    padding: 20px;
}

.customContainerBox > h1{
    margin-top: 0;
}


/* FONTS */
.customTitle{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}



/* BUTTONS */
.btn {
    text-transform: uppercase;
    font-weight: bold;
    /*box-shadow: 3px 3px 4px 1px rgba(0,0,0,0.3);*/
}

.btn-primary {
    background-image: linear-gradient(to top,#006361 0, #009693 100% );
}