/* -------------------------------- 

Primary style


-------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html
{
	background-color: #000;
}

body {
  font-size: 100%;
  font-family: "Source Sans Pro", sans-serif;
  color: rgba(2, 23, 37, 0.7);
  background-color: #000;
}
body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}

a {
  color: white !important;
  text-decoration: none !important;
}

/*----------font ------------- */
@font-face {
    font-family: 'baskerFont';
    src: url('../font/baskerfont.woff2') format('woff2'),
         url('../font/baskerfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.dropCaps {
  color: #f0b676;
  float: left;
  font-family: "Times New Roman", Times, serif, Georgia;
  font-size: 75px;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px;
}

.pdL0
{
	padding-left:0px !important;
}

.pd2per
{
	padding:2%;
}

.pd5per
{
	padding:5%;
}

.pdT3per
{
	padding-top:3%;
}

.pdT2per
{
	padding-top:2%;
}

.pdT5per
{
	padding-top:5%;
}

.pdT10per
{
	padding-top:10%;
}

.pdB5per
{
	padding-bottom:1%;
}

.wdInheri
{
	width: inherit;
}

.wd100
{
	width:100%;
}

.wd50_100
{
	width:50% !important;
}

.mgT8per
{
	margin-top:8%;
}

.opa6
{
	opacity:0.6;
}

.fontGrey
{
	color:#f1f1f1;
}

.overflowSlider
{
	overflow: hidden;
    overflow-y: auto;
}

hr.style1{
	border-top: 1px solid #3d3329;
	opacity:0.4;
}

.noBg
{
	background:transparent !important;
}

.blackBg
{
	background-color:#181818;
}

.mgB5per
{
	margin-bottom:5%;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
html, body {
  height: 100%;
}

.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  /*background: rgba(2, 23, 37, 0.95);*/
  background: rgba(0, 0, 0, 1);
  height: 90px;
  width: 100%;
  z-index: 3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 80px;
    background: transparent;
    box-shadow: none;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -80px;
    background-color: #0c0c0c; /*rgba(2, 23, 37, 0.96);*/
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  .cd-header.menu-is-open {
    /* add a background color to the header when the navigation is open */
    background-color: #0c0c0c; /*rgba(2, 23, 37, 0.96);*/
  }
}

.cd-logo {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: .875em;
}
.cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-logo {
    left: 2.6em;
  }
}

.cd-secondary-nav {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10em;
  /* hidden on small devices */
  display: none;
}
.cd-secondary-nav li {
  display: inline-block;
  margin-left: 2.2em;
}
.cd-secondary-nav a {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .cd-secondary-nav {
    display: block;
  }
}

/****** right navigation ************/
/* ------------------
	Navigation 
------------------ */
.side-menu {
	position: fixed;
	right: 30px;
	top: 50%;
    transform: translateY(-73px);
    z-index: 1;
}
.side-menu ul li {
    text-align: right;
    margin: 10px 0;
}
.side-menu ul li a span {
	display: inline-block;
}
.side-menu ul li a span.menu-title {
	color: #f0b676;
    position: relative;
    margin-right: 10px;
    /*text-transform: uppercase;*/
    font-size: 12px;
	font-family: "Times New Roman", Times, serif, Georgia;
    /*background-color: #dd5138;*/
    padding: 3px 10px;
    font-weight: 600;
    border-radius: 3px;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    opacity: 0;
}
.side-menu ul li a:hover span.menu-title {
    opacity: 1;
}
.side-menu ul li a span.dot {
    position: relative;
    background-color: #fff;
    border-radius: 2em;
    height: 10px;
    width: 10px;
    -webkit-transition: all 0.3s;
  	-moz-transition: all 0.3s;
  	transition: all 0.3s;
}
.side-menu ul li a:hover span.dot {
	transform: scale(0.8);
	background-color: #f0b676;
}

.side-menu-active
{
	transform: scale(0.8);
	/*background-color: #f0b676;*/
}


.side-menu a {
    color: transparent !important;
    text-decoration: none;
}

/* ----------------- */


.head
{
	background:url(../img/squareHead.png) no-repeat left top;
	height:100%;
	/*width:100%;*/
	position:absolute;
	top:10%;
	left:45%;
}

.head p
{
	padding-top:20px;
	padding-left:2%;
	font-family: 'baskerFont';
	color:#c07c51;
	font-size:90px;
	line-height: 90%;
	width:100%;	
}

.head p span
{
	font-size:50px;
}


.headStatic
{
	background:url(../img/squareHead.png) no-repeat left top;
	height:100%;
	/*width:100%;*/
}

.headStatic p
{
	padding-top:20px;
	padding-left:2%;
	font-family: 'baskerFont';
	color:#c07c51;
	font-size:90px;
	line-height: 90%;
	width:100%;
}

.headStatic p span
{
	font-size:50px;
}


.headStaticCenter
{
	background:url(../img/squareHead.png) no-repeat center center;
	height:100%;
	/*width:100%;*/
}

.headStaticCenter p
{
	padding-top:20px;
	font-family: 'baskerFont';
	color:#c07c51;
	font-size:90px;
	line-height: 90%;
	text-align:center;
	width:100%;
}

.headStaticCenter p span
{
	font-size:50px;
}


.chairmanText
{
	font-size:16px;
	font-family: "Times New Roman", Times, serif, Georgia;
	height:440px;
}


.cd-primary-nav-trigger {
  position: absolute;
  font-family: 'baskerFont';
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  /*background-color: #03263d;*/
  background-color: #000;
}
.cd-primary-nav-trigger .cd-menu-text {
  color: #f0b676;
  font-family:baskerFont;
  font-size:14px;
  text-transform: uppercase;
  font-weight: 700;
  /* hide the text on small devices */
  display: none;
}
.cd-primary-nav-trigger .cd-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #f0b676; /* white;*/
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #f0b676;
  /*background-color: white;*/
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -5px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 5px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: #f0b676; /*white;*/
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav-trigger {
    width: 100px;
    padding-left: 1em;
    background-color: transparent;
    height: 30px;
    line-height: 30px;
    right: 2.2em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-primary-nav-trigger .cd-menu-text {
    display: inline-block;
  }
  .cd-primary-nav-trigger .cd-menu-icon {
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
  }
}

.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #0c0c0c; /*rgba(2, 23, 37, 0.96);*/
  z-index: 2;
  text-align: center;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-primary-nav li {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: .2em 0;
  text-transform: capitalize;
}
.cd-primary-nav a {
  font-family: 'baskerFont';
  display: inline-block;
  padding: .4em 1em;
  border-radius: 0.25em;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
  font-size:35px;
  text-decoration:none;
  color:#fff;
}
.no-touch .cd-primary-nav a:hover {
  /*background-color: #e36767;*/
    text-decoration:none;
	color:#f0b676;
}
.cd-primary-nav .cd-label {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 2.4em 0 .8em;
}
.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em;
	color:#f0b676;  
}

.cd-primary-nav .cd-social a {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../img/cd-socials-new.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
	color:#f0b676;    
}
.cd-primary-nav .cd-facebook a {
  background-position: 0 0;
}
.cd-primary-nav .cd-instagram a {
  background-position: -44px 0;
}
.cd-primary-nav .cd-dribbble a {
  background-position: -88px 0;
}
.cd-primary-nav .cd-twitter a {
  background-position: -132px 0;
}
.cd-primary-nav .cd-linked a {
  background-position: -175px 0;
}
.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-primary-nav li {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-primary-nav .cd-label {
    font-size: 16px;
    font-size: 1rem;
  }
}

.cd-intro {
  position: relative;
  /*height: 100%;*/
  height:100vh;
  background: url("../img/homepage-flight.jpg") no-repeat bottom center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-chairman {
  position: relative;
  height: 100%;
  background: url("../img/homepage-chair.jpg") no-repeat top center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-media {
  position: relative;
  height: 100%;
  background: url("../img/homepage-media.jpg") no-repeat top center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bgAbout {
  position: relative;
  height: 100%;
  background: url("../img/homepage-contact.jpg") no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*background: url(images/bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;*/



.cd-about {
  position: relative;
  height: 100%;
  background: url("../img/aboutus-bg.jpg") no-repeat top center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.cd-intro h1 {
  position: absolute;
  width: 90%;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
  font-family:'Times New Roman', Times, serif, Georgia;
  font-weight: 300;
  text-align: center;
}

.cd-contact {
    position: relative;
    height: 100%;
	background: url(../img/homepage-contact.jpg) no-repeat top center;
    background-size: cover;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ft24
{
	font-size:24px;
}

.ftWhite
{
	color:#fff;
}

.ftGreyWhite
{
	color:#e5dacf;
}

.maintenance p
{
	color:#e5dacf;
}

.ftTimes
{
	font-family: "Times New Roman", Times, serif, Georgia;
}

.quote
{
	font-size:70px;
	color:#fff;
	font-family: 'baskerFont';
	padding-bottom:20px;
}

.quoteClosed
{
	-webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
	padding-top: -25px;
    margin-left: 10px;
}

.bottomScreen
{
	top:auto !important;
	bottom:25% !important;
}

gold
{
	color:#f0b676;
}

.corpMedia img
{
	width:100%;
	height:auto;
}

.corpText,.maintenance
{
	font-family:"Times New Roman", Times, serif, Georgia;
}

.corpText h4
{
	color:#e5dacf;
}

.corpText p
{
	color:#e5dacf;
	opacity:0.5;
}


.readmore
{
	color:#fff !important;
	opacity:1 !important;
}

.cd-contact h3
{
	font-family: 'baskerFont';
	color:#c07c51;
	font-size:45px;
}

.resume h4
{
	font-family: 'baskerFont';
	color:#c07c51;
	font-size:30px;
}

.cd-contact p, .myFooter p
{
	font-family: 'baskerFont';
	color:#aba39c;
}

.resume
{
	display:none;
}

.resume p
{
	font-family: 'baskerFont';
	color:#aba39c !important;
	font-size:14px !important;
}

.cd-contact .form-control, .resume .form-control
{
	font-family: 'baskerFont';
	background:transparent !important;
	border:1px solid #4c4846 !important;
	margin-bottom:5px;
	color:#fff;
}

.cd-contact .btn-default, .cd-contact .btn-default:hover,.resume input[type=file] ,.resume .btn-default, .resume .btn-default:hover
{
	font-family: 'baskerFont';
	/*background:transparent !important;
	color:#aba39c;
	*/
	background: #f0b676 !important;
	color:#000;
	border:0px solid #4c4846 !important;
	margin-bottom:5px;
	
}

.addrDetails
{
	font-family:"Times New Roman", Times, serif, Georgia;
	font-size:18px;
}

.addrDetails h4
{
	color:#c69661;
}


.addrDetails dest
{
	font-size:15px;
	color:#e5dacf;
}

.addrDetails p
{
	font-family:"Times New Roman", Times, serif, Georgia;	
	color:#e5dacf;
	opacity:0.4;
}

.addrDetails span
{
	padding-right:10px;
}

.footerWrapper {
    position: relative;
    height: 100%;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.footer p
{
	/*position:relative;*/
	height:110px;
	display: table-cell;
    vertical-align: middle;
	font-family:"Times New Roman", Times, serif, Georgia;
	font-size:15px;
}

.footer .fa
{
	margin-right:10px;
}

.scrollIt
{
	position: absolute;
    bottom: 60px;
    color: #e6e6e6;
    text-align: center;
    left: 46%;
	font-family:"Times New Roman", Times, serif, Georgia;	
	letter-spacing: 2px;
} 

.scrollUp
{
	
    color: #e6e6e6;
    text-align: center;
    font-family:"Times New Roman", Times, serif, Georgia;	
	letter-spacing: 2px;
} 

.scrollUp img
{
	-webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
	margin-bottom:5px;
}

.clearMe
{
	clear:left;
}

/*.profile
{
	opacity:1;
}*/
.profile,.brand,.projects,.careers,.sliderWrapper
{
	min-height:100vh;
	padding-top:7%;
}
.profile a, .brand a, .projects a, .careers a,.profile a:hover, .brand a:hover, .projects a:hover, .careers a:hover,.profile a:focus, .brand a:focus, .projects a:focus, .careers a:focus
{
	color: #f0b676;
	text-decoration:none;
}

.profile h3, .brand h3, .projects h3, .careers h3
{
	font-family: 'baskerFont';
	font-size:40px;
	color:#b07e53;
}

.profile p, .brand p, .projects p, .careers p
{
	font-family:"Times New Roman", Times, serif, Georgia;
	font-size:16px;
	/*color:#f1f1f1;*/
	color:#e5dacf;
	opacity:0.8;
}


.fadedScroller {
    content:'';
    height: 150px;
	width:100%;
    /*background: linear-gradient(to bottom, rgba(251, 251, 251, 0.4) 0%, rgba(251, 251, 251, 0) 100%);*/
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    position: fixed;
	top:0px;
	z-index: 1;
}

.preview img
{
	width:100%;
	height:auto;
}

.remainingDetails
{
	display:none;
}

.fullImg
{
	padding-right:0px !important;
}

.fullImg img
{
	width:100%;
	height:auto;
}

.button--close
{
	color: #f0b676 !important;
}

@media only screen and (min-width: 768px) {
  .cd-intro h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    height: 700px;
  }
}

.cd-main-content {
  position: relative;
  z-index: 1;
}
.cd-main-content p {
  line-height: 1.6;
  margin: 2em 0;
}

#uploadResume
{
	text-transform:uppercase;
	font-weight:bold;
	font-style:italic;
}

@media only screen and (min-width: 1170px) {
  .cd-main-content p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 300px) and (max-width: 760px) {
	.clearMe
	{
		clear:none;
	}
	
	.cd-media 
	{
		height: auto !important;
	}
	
	.slick-next
	{
		right:0px !important;
	}
	
	.slick-prev
	{
		left:0px !important;
	}
}

@media only screen and (max-width: 760px) {

	.head p, .headStatic p, .headStaticCenter p
	{
		padding-top:20px;
		padding-left:2%;
		font-family: 'baskerFont';
		color:#c07c51;
		font-size:40px;
		line-height: 90%;	
	}

	.head p span, .headStatic p span, .headStaticCenter p span
	{
		font-size:30px;
	}
	
	
	.scrollIt
	{
		bottom: 10px;
	}
	
	.cd-contact h3
	{
		font-size: 25px;
	}
	
	.headStaticCenter
	{
		background-position: top center;
	}
	
	.corpText p {
		height: 158px;
		overflow: hidden;
	}
	
	.wd50_100
	{
		width:100% !important;
	}
	
	.preview
	{
		width:100%;
	}

}

@media only screen and (max-width: 760px) and (orientation:portrait)
{
	.head
	{
		left:15%;
		top:15%;
		
	}
	
	.head p
	{
		padding-top:32px;
	}
	
	.scrollIt
	{
		left: 35%;
	}
	
	.cd-chairman
	{
		background-position-x: 70% !important;
	}
	
	/*.chairmanText
	{
		height:300px;
		
	}*/
}

@media only screen and (max-width: 760px) and (orientation:landscape)
{
	.head
	{
		left:35%;
		top:12%;
	}
	
	.scrollIt
	{
		left: 40%;
	}
	
	.corpText p {
		height: 100px;
		overflow: hidden;
	}
	
	/*.chairmanText
	{
		height:200px;
		
	}*/
	
	
}