﻿@import 'defaults.css';

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.eot);
    src: url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff) format('woff'), url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');
}

html{
    font-size:62.5%;
}

#bgImage {
    overflow-x: hidden; /* Hides the horizontal scrollbar at the bottom of the screen */
}

#preHeader {
    font-size: 3.1rem;
    padding: 8px 0px;
	border-radius: 0px;
}

    #preHeader a {
        color:#fff;
    }

@media screen and (min-width:768px){
    #preHeader {
        display: none;
    }
}

/* -------------------- Header -------------------- */
header {
    padding: 10px 0px;
}

#promoBanner {
    display:grid;
}

.promoBannerContent{
    display:grid;
}

    .promoBannerContent *{
        padding:0px;
        margin:0px;
    }

    #promoBanner .promoBannerContent {
        animation: rise;
        animation-duration: 9s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        transform: translateY(120%);
    }

@keyframes rise {
    0% {transform: translateY(120%)}
    10% {transform: translateY(120%)}
    20% {transform: translateY(0%)}
    80% {transform: translateY(0%)}
    90% {transform: translateY(-140%)}
    100% {transform: translateY(-140%)}
}

#phone {
    font-size: 2.4rem;
}


.AccountStatus { /* for sites that enable the account login in the config */
    font-size: 1rem;
    position: absolute;
    top: 0px;
    right: 0px;
}

/* -------------------- Nav -------------------- */
#mainNav {
    font-size:1.6rem;
    text-transform: uppercase;
    font-weight: 700;
}

#mainNav.navbar-default {
    background-color: #173b51;
    border-color: #173b51;
	border-radius: 0px;
	padding-top: 10px;
}

#logo img {
    padding: 10px 0px 10px 10px;
}


#mainNav.navbar{
    margin-bottom:unset;
}

#mainNav .navbar-nav > .open > a, #mainNav .navbar-nav > .open > a:focus, #mainNav .navbar-nav > .open > a:hover {
    color: #303030;
    background-color: #efefef;
}

#mainNav .dropdown-menu{
    border:none;
    border-radius:0px;
}

#mainNav .dropdown-menu>li>a{
    font-weight:300;
}

#mainNav .caret {
    margin-left: 5px;
}


#mainNav .navbar-collapse{
    border:none;
}

@media(min-width:768px) {
    #mainNav .navbar-nav {
        padding-right: 10px;
    }

    #mainNav #nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #mainNav .navbar-nav > li > a {
        color: #fff;
		padding: 10px 20px;
    }

        #mainNav .navbar-nav > li > a:hover {
            color: #7caddd;
        }
}

@media(max-width:767px){
    nav#mainNav {
        font-size: 1.8rem;
        font-weight:400;
    }

        nav#mainNav .navbar-nav {
            
        }
		
		.navbar-default .navbar-nav>li>a {
			color: #fff;
		}

        nav#mainNav li {
            padding: 10px 0px;
        }

        #logo img{
            margin:auto;
        }

    #mainNav .dropdown-menu {
        text-align: center;
        font-size:1.8rem;
        font-weight:300;
    }
}

.page-167 a {
	color: #173b51 !important;
    background-color: #d7e643;
	border-radius: 30px;
}

.page-167 a:hover {
	color: #173b51 !important;
    background-color: #fff !important;
}


/* -------------------- Page -------------------- */

.mainJumbotron .container-fluid, .mainJumbotron {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: transparent;
}

.formTitle { /* Title element of forms */
    font-size: 2.7rem;
    font-weight: normal;
}

body {
    font-family: Montserrat, sans-serif;
	color: #1d303b;
}

.container {
	width: 1600px;
}

.smcontainer {
	width: 1170px;
	margin: 0 auto;
}

/* Use this to change the default site font size for the site so it doesn't affect titanium admin interfaces*/
.module {
    font-size: 1.6rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    margin-top: 0px;
}

h1{
    font-size:5rem;
}

h2 {
    font-size: 4.5rem;
}

h3 {
    font-size: 3.5rem;
}

h4{
    font-size:2.5rem;
}

h5{
    font-size:2rem;
}

h6{
    font-size:1.8rem;
}

a {
    color: #173b51;
}

    a:hover {
        color: #000000;
    }


.btn{
    border-radius:0px;
    padding:.6em 2em .7em;
}

.btn-primary, .bg-primary { /* Set the primary colors for specific elements such as call to action button in header */
    color: #173b51;
    background-color: #d7e643;
	border:none;
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 1.6rem;
}

    .btn-primary:hover {
        background-color: #16252e;
		color: #fff;
    }

.btn-default, .bg-default {
    color: #ffffff;
    background-color: #173b51;
	border: none;
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 1.6rem;
}

    .btn-default:hover {
        background-color: #16252e;
		color: #fff;
    }

.btn-ghost-light {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	padding: 10px 20px;
	font-size: 1.6rem;
}

	.btn-ghost-light:hover {
		background-color: #fff;
		color: #000;
	}

.btn-ghost-dark {
	background-color: transparent;
	border: 1px solid #16252e;
	color: #16252e;
	padding: 10px 20px;
	font-size: 1.6rem;
}

	.btn-ghost-dark:hover {
		background-color: #16252e;
		color: #fff;
	}
	
.blueBox {
	background: #1d303b;
	border-radius: 40px 0px 40px 0px;
	box-shadow: 0px 5px 20px #999;
	padding: 60px 20px;
	margin-bottom: 30px;
}

.blueBox img {
	margin: 0 auto;
}

/* ------------------ Accordion styles -----------------------------*/
.panel-heading a, .panel-default > .panel-heading {
    color: #fff;
    font-size: 1.4rem;
}

.panel-default > .panel-heading {
	background-color: #1d1e1c;
}


.module .panel-default {
	border: solid 1px #181817;
}

.pageHeader h1 { /* this is a class used for the page header h1 */
    font-weight: 100;
    max-width: 1170px;
    margin: auto;
    font-size: 5.5rem;
    padding-bottom: 2px;
}

/* -------------------- Footer -------------------- */
footer {
    background: #1d303b;
    color: #a8cdf2;
    padding: 0px 0px 30px;
	margin-top: -45px;
}

.footerLogo {
	margin-top: -20px;
}

    footer a {
        color: #a8cdf2;
    }

        footer a:hover {
            color: #fff;
			text-decoration: none;
        }

    footer ul li {
        list-style: none;
        padding: 2px 0px;
    }

footer {
    font-size: 1.6rem;
}

    footer h5 {
        color: #7caddd;
        margin-top: 20px;
		margin-bottom: 10px;
		font-size: 2rem;
		font-weight: 700;
    }

    footer ul {
        padding: 0;
		margin: 0;
    }

    footer input.form-control, footer textarea.form-control {
        background: transparent;
        padding: 4px 4px;
        margin: 0px 0px 3px 0px;
        border-radius: 0px;
        line-height: 1.2em;
        height: unset;
        border: solid 1px rgba(255,255,255,.3);
    }

    footer button.btn {
        border-radius: 0;
        padding: 3px 15px 4px;
    }

.social i {
    border-radius: 50%; /*Makes the circle*/
    width: 46px; /*sets the width of the circle*/
    height: 46px; /*sets the height of the circle*/
    font-size: 30px; /*sets the size of the icon itself*/
    padding: 8px 3px; /*sets the positioning of the icon within the circle*/
    box-sizing: border-box; /*keeps the dimensions of the circle*/
    text-align: center; /*centers the icon in the circle*/
    margin: 0px 1px; /*gives spacing between the icons*/
}

.bottomRow {
	background: #16252e;
	color: #305064;
	padding: 15px 0px;
	font-size: 1.6rem;
}

/* ---------------- icon styles -------------------*/
.iconLink i {
    padding: 5px 6px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    border: solid 1px #cccccc;
    margin-right: 2px;
    transition:all .3s;
}

.iconLink .fa-file-excel {
    color: #3fa024;
}
a.iconLink:hover .fa-file-excel {
    background: #3fa024;
}


.iconLink .fa-file-pdf {
    color: #c70e0e;
}

a.iconLink:hover .fa-file-pdf {
    background: #c70e0e;
}


.iconLink .fa-file-word {
    color: #159ae8;
}
a.iconLink:hover .fa-file-word {
    background: #159ae8;
}


.iconLink .fa-file-powerpoint {
    color: #D24625;
}
a.iconLink:hover .fa-file-powerpoint {
    background: #D24625;
}

.iconLink .fa-file-audio {
    color: #34495E;
}
a.iconLink:hover .fa-file-audio {
    background: #34495E;
}

.iconLink .fa-file-video {
    color: #F39C12;
}
a.iconLink:hover .fa-file-video {
    background: #F39C12;
}

.iconLink .fa-file-archive {
    color: #8E44AD;
}
a.iconLink:hover .fa-file-archive {
    background: #8E44AD;
}

a.iconLink:hover .fas {
    color: #fff;
    border-color: transparent;
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

/* -------------------- Responsive Device CSS -------------------- */

/* Desktops */

@media screen and (min-width:768px) {
    ul.dropdown-menu li:hover > ul.dropdown-menu
    {
        display: block;
        position: absolute;
        top: -8px;
        left: 159px;
    }

    #phone .phoneIcon {
        display: none;
    }
}

@media screen and (min-width:1170px) {		
	nav .mainNav {		
		max-width:1170px;		
		margin:0px auto;		
	}		
}

/* 4k screens */
@media screen and (min-width:1920px) {
	.carousel-inner>.item>img, .carousel-inner>.item>a>img {
			width: 100%;
		}
}

/* Laptops */
@media screen and (max-width:1600px) {
	.container {
		width: 100%;
	}
	
	footer {
		margin-top: 0px;
	}
}

@media screen and (max-width:1170px) {
	.smcontainer {
		width: 100%;
	}
}

/* Tablets */
@media screen and (max-width:980px) {
    .container {
        width: 100%;
    }

    /*This is to fix the horizontal scroll issue caused by the AOS (animate on scroll) framework that positions items off to the side before fading in*/
    html, body {
    max-width:100%;
    overflow-x:hidden;
    }
    /*end aos horizontal scroll fix*/
}

/* Portrait Tablets */
@media screen and (max-width:768px) {
	.siteLogo {
		padding-bottom: 15px;
	}
	
    .siteLogo img {
		margin: 0 auto;
	}
	
	nav .navbar-nav {
        float: none;
		text-align:center;
    }
	
	.navbar-collapse {
		box-shadow: none;
	}

    #phone .phoneNo{
        display: none;
    }
	
	.hero {
		padding: 100px 20px 130px !important;
	}
	
	.beach {
		padding: 130px 0px 160px !important;
	}
	
	footer, footer img {
		text-align: center;
		margin: 0 auto;
	}
}

/* Smartphones */
@media screen and (max-width:360px) {
    header {
        text-align: center;
    }

    nav.navbar-nav {
        float: none;
    }
}

/* -- End Device CSS -- */


/* -- Home Page CSS -- */

.hero {
  background-size: cover;
  color: #fff;
  padding: 200px 0px 230px;
  margin: -40px 0px 0px;
}

.watermark {
  padding: 100px 0px;
}

/* angled div */
.slanted-div {
  position: relative;
  padding: 60px 0;
  background: #c0d8ef url(../image/home_bar1.jpg) center center;
  overflow: visible;
  z-index: 1;
}

/* where the magic happens */
.slanted-div:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  bottom: 0;
  transform-origin: left bottom;
  transform: skewY(4deg);
  border-bottom: #fff solid 13px;
}

/* displays the content inside, as these settings in the parent breaks the effect */
.slanted-div div {
	
}

.phil {
	padding: 0px 20px;
}

.borderLeft {
	border-left: #7caddd solid 10px;
	padding: 70px 0px 70px 50px;
	margin-bottom: 30px;
}

.borderLeft h2 {
	margin: 0px;
}

.numberCircle img {
	margin: 0 0 0 auto;
}

.beach {
  background-size: cover;
  padding: 230px 0px;
  margin-bottom: -110px;
}

.blueBg {
	background: #1d303b;
	color: #fff;
	padding: 70px;
	outline: 2px solid #fff;
	outline-offset: -20px;
	margin: 0px 30px;
}

/* -- End Home Page CSS -- */