:root {
    --font-normal: "proxima-nova", Arial, Helvetica, sans-serif;
    --font-semibold: "proxima-nova-semibold", Arial, Helvetica, sans-serif;
    --font-bold: "proxima-nova-bold", Arial, Helvetica, sans-serif;
    --font-black: "proxima-nova-black", Arial, Helvetica, sans-serif;
}

html,
body {
    overflow-x: hidden;
}

/*html, body{-webkit-overflow-scrolling: touch; height:100%;}*/
body {
    padding: 0;
    margin: 0;
    font: normal 100% var(--font-semibold);
    color: #000;
    min-width: 100%;
    min-height: 100%;
}

div,
img,
p,
a,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
select,
textarea,
label {
    padding: 0;
    margin: 0;
}

img {
    border: none;
    display: block;
}

article,
aside,
figure,
figcaption,
footer,
header,
hgroup,
nav,
section {
    display: block;
    margin: 0;
    padding: 0
}

a {
    text-decoration: none;
    color: #000;
    transition: all 200ms ease 0s;
    -moz-transition: all 200ms ease 0s;
    -webkit-transition: all 200ms ease 0s;
    -o-transition: all 200ms ease 0s;
    -khtml-transition: all 200ms ease 0s;
    -ms-transition: all 200ms ease 0s;
    display: block;
}

a:hover {
    border-bottom: none;
}

ul {
    list-style-type: none;
    list-style-position: outside;
}

::-moz-selection {
    background: #000;
    color: #fff;
}

::-webkit-selection {
    background: #000;
    color: #fff;
}

::-ms-selection {
    background: #000;
    color: #fff;
}

::selection {
    background: #000;
    color: #fff;
}

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}
[style*="--aspect-ratio"] > img {  
  height: auto;
} 
@supports (--custom:property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }  
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }  
}

.searchsection input:focus {
    outline: none;
}

.searchsection input[type="text"]::-ms-clear {
    display: none;
}

.margin-top-10 {
    margin-top: 10px;
}

.group:before,
.group:after,
.graysec:before,
.our-company-pad:after,
.our-company-pad:before {
    content: "";
    display: table;
}

.group:after,
.graysec:after,
.our-company-pad:after,
.our-company-pad:before {
    clear: both;
}

.group,
.graysec,
.our-company-pad {
    zoom: 1;
}

.group.flex{
    display: flex;
    justify-content: space-between;
}

.group.flex > .ratio-container {
    flex: 1 0 480px;
    max-width: 45%;
}

.ratio-container .spot

/*font face starts*/
@font-face {
    font-family: proxima-nova;
    src: url('../fonts/proximanova-regular-webfont.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/proximanova-regular-webfont.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/proximanova-regular-webfont.woff') format('woff');
    /* Pretty Modern Browsers */
    font-style: normal;
    font-weight: normal;
    font-display: fallback;
}

@font-face {
    font-family: proxima-nova-semibold;
    src: url('../fonts/proximanova-semibold-webfont.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/proximanova-semibold-webfont.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/proximanova-semibold-webfont.woff') format('woff');
    /* Pretty Modern Browsers */
    font-style: normal;
    font-weight: normal;
    font-display: fallback;
}

@font-face {
    font-family: proxima-nova-bold;
    src: url('../fonts/proximanova-bold-webfont.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/proximanova-bold-webfont.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/proximanova-bold-webfont.woff') format('woff');
    /* Pretty Modern Browsers */
    font-style: normal;
    font-weight: normal;
    font-display: fallback;
}

@font-face {
    font-family: proxima-nova-black;
    src: url('../fonts/proximanova-black-webfont.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/proximanova-black-webfont.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/proximanova-black-webfont.woff') format('woff');
    /* Pretty Modern Browsers */
    font-style: normal;
    font-weight: normal;
    font-display: fallback;
}

/*
@font-face {
    font-family: FoundersGrotesk-Bold;
    src: url(../fonts/FoundersGroteskWeb-Bold.woff), url(../fonts/FoundersGroteskWeb-Bold.eot);
}

@font-face {
    font-family: FoundersGrotesk-Medium;
    src: url(../fonts/FoundersGroteskWeb-Medium.woff), url(../fonts/FoundersGroteskWeb-Medium.eot);
}

@font-face {
    font-family: FoundersGrotesk-Regular;
    src: url(../fonts/FoundersGroteskWeb-Regular.woff), url(../fonts/FoundersGroteskWeb-Regular.eot);
}

@font-face {
    font-family: FoundersGrotesk-Semibold;
    src: url(../fonts/FoundersGroteskWeb-Semibold.woff), url(../fonts/FoundersGroteskWeb-Semibold.eot);
}
*/
/*font face ends*/

/*load css starts*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.press-note {
    display: block;
    margin-bottom: 20px;
}

a.print-link {
    color: #3366CC;
    text-decoration: none;
}

/*load css ends*/

/*15-06*/
.padding-tp-0 {
    padding-top: 0 !important
}

.container {
    max-width: 972px;
    margin: 0 auto;
}

header {
    background: #fff;
}

header .container-pad {
    padding: 20px 0;
    background: #fff;
}

header.shadow,
.year-block.shadow {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.navbar-fixed-top {
    /*position:fixed;*/
    z-index: 16;
    width: 100%;
    left: 0;
}

header .container-pad {
    padding: 0 20px;
}

/*.navbar-nav-left li:hover ul.subnav{display:block;}*/

ul.subnav li {
    margin: 0;
    float: none;
    border-bottom: 2px solid #efefef;
}

ul.subnav li:last-child {
    border-bottom: none;
}

ul.subnav li a {
    padding: 25px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    color: #000;
}

ul.subnav li a:hover {
    background: #000;
    color: #fff;
}

.floatingmenu ul.subnav {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
    display: none;
}

.floatingmenu ul.subnav li a {
    background: #f6f5f5;
}

.floatingmenu ul.subnav li a:hover {
    background: #000;
    color: #fff;
}


.navbar-header img,
.navbar-header-small img {
    max-width: 100%;
}

.navbar-header-small a {
    display: inline-block;
    width: 7em;
    margin-left: -72px;
    margin-top: 5px;
    height: 28px;
}

.navbar-nav-right li:last-child {
    margin: 0;
}


.navigation li .social-icons li {
    margin: 0 15px;
}

.navigation li .social-icons li:first-child {
    margin-left: 0;
}

.navigation li .social-icons li a {
    background-image: url(../images/sprite.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 13px;
    transition: all 200ms ease 0s;
    -moz-transition: all 200ms ease 0s;
    -webkit-transition: all 200ms ease 0s;
    -ms-transition: all 200ms ease 0s;
}

.navigation li .social-icons li a:hover {
    background-color: transparent;
}

.navigation li .social-icons li.fb a {
    background-position: 0 0;
    width: 7px;
    height: 14px;
}

.navigation li .social-icons li.fb a:hover {
    background-position: 0 -15px;
}

.navigation li .social-icons li.twitter a {
    background-position: -11px 0;
    width: 15px;
    height: 14px;
}

.navigation li .social-icons li.twitter a:hover {
    background-position: -11px -15px;
}

.navigation li .social-icons li.youtube a {
    background-position: -30px 0;
    width: 17px;
}

.navigation li .social-icons li.youtube a:hover {
    background-position: -30px -15px;
}

.navigation li .social-icons li.rss a {
    background-position: -51px 0;
    width: 13px;
}

.navigation li .social-icons li.rss a:hover {
    background-position: -51px -15px;
}

.navigation li .social-icons li.search a {
    background-position: -89px -20px;
    width: 23px;
    height: 23px;
    margin: -4px 0 0 0;
}

.navigation li .social-icons li.in a {
    background-position: -0px -191px;
    width: 15px;
    height: 14px;
}

.navigation li .social-icons li.in a:hover {
    background-position: 0 -213px;
}



.hero-banner,
.hero-about-banner {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.safari .hero-banner {
    background-position: 50% 1px;
}

.hero-about-banner-left {
    background-position: 0 0;
}

.spot {
    float: right;
    width: 46%;
    margin: 0 5px;
    height: 170px;
    display: table;
    text-align: center;
    box-sizing: border-box;
}

.inner-spot {
    display: table-cell;
    vertical-align: middle;
}

.spot.border {
    border: 4px solid #fff;
    box-sizing: border-box;
    width: 38%;
    padding: 0 20px
}

.spot.border h1 {
    color: #fff;
}

.spot.border p {
    color: #fff
}

.spot.black {
    /* background: #000; */
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 8px solid white;
}

.spot.faded {
    background-color: rgba(0, 0, 0, 0.4);
    border: 8px solid white;
}

.spot h1 {
    font-size: 23px;
    padding-bottom: 5px;
    color: #fff;
    line-height: normal;
    font-family: var(--font-bold);
}

.spot p {
    font-size: 15px;
    color: #fff;
    font-family: var(--font-bold);
    line-height: 1;
}

.spot.black h1 {
    line-height: normal;
    font-family: var(--font-bold);
}

.spot.white h1 {
    line-height: 50px;
    padding-bottom: 0;
}



.black-strip {
    padding: 30px 0;
    background: #000;
}

.black-strip ul {
    text-align: center;
}

.black-strip ul li {
    display: inline-block;
}

.black-strip ul li a {
    display: inline-block;
    margin: 0 20px;
    font-size: 16px;
    color: #fff;
    border-bottom: 5px solid #fff;
    padding-bottom: 8px;
    font-family: var(--font-semibold);
}

.each-block {
    box-sizing: content-box;
}

.each-block-pod-pad {
    padding: 40px 20px;
}

.each-block-pod h2 {
    font-size: 40px;
    padding-bottom: 26px;
    line-height: 40px;
    font-family: var(--font-bold);
}

.each-block-pod p {
    font-size: 20px;
    line-height: 1.4;
}

.brands .each-block-pod h2,
.brands .each-block-pod p {
    color: #fff;
}

.item img {
    max-width: 100%;
    height: 100%;
    width: 100%;
}

.brands {
    background: #000;
}

.item {
    display: none;
}

/*.visit{position:absolute; left:0; bottom:0; width:100%; height:100%; display:table;}*/
.visit a {
    text-align: center;
    line-height: 60px;
    color: #fff;
    display: table-cell;
    font-size: 60px;
    font-family: var(--font-bold);
    vertical-align: middle;
}

.click-group {
    padding: 35px 0 0 0;
}

/*02-06*/
.click-group a {
    display: inline-block;
    font-size: 15px;
    margin-right: 28px;
    color: #fff;
    border-bottom: 5px solid #fff;
    padding-bottom: 12px;
    font-family: var(--font-bold);
    letter-spacing: 0.08em;
}

/*02-06 end*/
.click-group a + a {
    margin-right: 0;
}

.graysec {
    background: #f6f5f5;
    padding: 30px 0;
}

.tweet {
    background: #fff;
}

.graysecpad {
    padding: 20px;
}

.tweet-bird {
    background: url(../images/sprite.png) no-repeat -274px 0;
    display: block;
    width: 18px;
    height: 17px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.workwithus {
    background: #000;
}

.testimonial {
    display: none;
}

.show-mobile {
    display: block
}

.tweet p {
    font-size: 19px;
}

.tweet p a {
    display: inline-block;
    color: #1db1e8;
}

.tweet p.author {
    font-size: 25px;
    float: left;
    font-family: var(--font-bold);
}

.tweet p.author span {
    color: #999999;
    font-size: 12px;
    display: block;
}

.graysec h2 {
    font-size: 30px;
    padding: 0 0 30px 20px;
    font-family: var(--font-bold);
}

.graysecpad > .group {
    padding: 40px 0 0 0;
    position: relative;
}

.workwithus h2 {
    font-size: 45px;
    color: #fff;
    padding: 0 0 40px;
}

.workwithus a {
    color: #fff;
    font-size: 18px;
    display: inline-block;
    border-bottom: 5px solid #fff;
    padding-bottom: 8px;
}

.testimonial p {
    font-size: 20px;
    color: #000;
    padding: 55px 0 10px;
    font-family: var(--font-semibold);
}

.testimonial p.customer {
    font-size: 14px;
    padding: 0 0 55px;
}

.broadcastNetworks img {
    max-width: 100%;
}

footer {
    background: #000;
}

.footersticky {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
}

.newsletter-pad {
    padding: 20px;
}

.newsletter p {
    margin-top: 13px;
    margin-bottom: 20px;
    font-size: 30px;
    color: #fff;
    text-align: center;
    font-family: var(--font-bold);
}

.newsletter .formcontainer {
    background: none;
    height: auto;
    margin: 0 auto;
}

.formcontainer input[type="text"] {
    font-size: 14px;
    color: #999;
    padding: 17px 10px;
    border: none;
    background: #fff;
    margin-bottom: 15px;
    width: 93%;
    font-family: var(--font-normal);
}

.formcontainer input.submitbtn {
    background: #615f60;
    border: none;
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    width: 100px;
    margin: 0 auto;
    color: #fff;
    font-family: var(--font-black);
}

input,
textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

.formcontainer input[type="text"]:focus {
    outline: none;
}

.footerlink {
    padding: 30px 20px;
    text-align: center;
}

.footerlink li {
    display: inline-block;
    line-height: 1.5;
}

.footerlink li span {
    background: url(../images/sprite.png) no-repeat 0 -35px;
    display: inline-block;
    margin: 0 8px;
    width: 5px;
    height: 5px;
}

.footerlink li a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-normal);
    letter-spacing: 0.007em;
}

.copyright {
    padding-top: 35px;
    font-size: 12px;
    color: #fff;
    font-family: var(--font-normal);
    letter-spacing: 0.08em;
}

.videobg,
.visit {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 100%;
    height: 272px;
    display: table;
    width: 100%;
    text-align: center;
}

.visit {
    background-position: 50% 50%;
}

.hero-about-banner .videobg {
    display: table !important
}

.page-id-76 .hero-about-banner .videobg {
    display: block !important;
}

/*01-06*/
.rsslist {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.graybg-pad .list-style {
    margin: 0;
    padding: 0
}

.graybg-pad .list-style li {
    list-style-type: none;
    padding-bottom: 5px;
}

.list-style > li a:hover {
    text-decoration: underline
}

.list-style > li:first-child {
    font-size: 20px;
    line-height: 19px;
}

.list-style > li:first-child a:before,
.list-style > li:nth-child(2) a:before {
    padding: 0;
    content: ""
}

.graybg-pad .rsslist h3 {
    padding-bottom: 0
}

@media only screen and (-webkit-min-device-pixel-ratio: 1) {

    ::i-block-chrome,
    .our-vision-section .videobg,
    .our-purpose-section .videobg {
        background-size: 100% 100%;
    }

    ::i-block-chrome,
    .our-purpose-section > .each-block:first-child {
        border-left: 1px solid #000;
    }


}

/*.safari .first-section .videobg{background-size:100% 100%;}*/
#press.safari .first-section .videobg {
    background-size: cover;
}

.inner .videobg,
#press .videobg {
    display: block;
}

/*01-06*/
.videocontainer {
    height: inherit;
    background: black;
}

.videocontainer .videobg {
    display: table
}

.videobg div.play {
    display: table-cell;
    vertical-align: middle;
    font-size: 40px;
    color: #000;
    cursor: pointer;
}

.page-id-76 .videobg div.play {
    display: block;
    padding-top: 139px;
}

.videobg div.play a {
    border-bottom: 8px solid #fff;
    padding-bottom: 10px;
    display: inline-block;
    font-family: var(--font-bold);
    font-size: 40px;
    color: #fff;
}

.novidimgcont div.play a {
    font-size: 50px;
    border-bottom: none;
}

.slidewrapper {
    position: relative;
    overflow: hidden;
}

.award img {
    max-width: 100%;
}

.ticker {
    position: relative;
    left: 0;
    top: 0;
    background: #000;
    z-index: 17;
    width: 100%;
    display: none;
}

.ticker-pad {
    padding: 10px 35px;
    text-align: center;
}

.ticker p {
    font-size: 16px;
    color: #fff;
}

.ticker a {
    font-size: 13px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    font-family: var(--font-black);
    padding-bottom: 7px;
    border-bottom: 4px solid #fff;
}


/*about us*/
.missiontext {
    padding: 50px 20px;
}

.missiontext h1 {
    font-size: 30px;
    font-family: var(--font-bold);
}

.missiontext h1 span {
    font-size: 16px;
    display: block;
}

.right-black-section,
.left-black-section {
    background: #000;
}

.right-black-section a,
.left-black-section a {
    color: #fff
}

.right-black-section .each-block-pod-pad,
.left-black-section .each-block-pod-pad {
    padding: 60px 20px;
}

.each-block-pod h2.descrtiptionheading,
.our-company-pad .each-block-pod h2 {
    font-size: 22px;
    line-height: normal;
    padding: 0;
    margin-bottom: 10px;
}

/*16-06*/
.each-block-pod p.descriptiontxt,
.our-company-pad .each-block-pod p {
    font-size: 22px;
}

.our-company-pad .each-block-pod p {
    padding-bottom: 30px;
    font-family: var(--font-bold);
    line-height: normal;
}

.right-black-section h2,
.right-black-section p,
.left-black-section h2,
.left-black-section p {
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.right-black-section p.descriptiontxt,
.left-black-section p.descriptiontxt,
.latest-release .each-block-pod p.descriptiontxt {
    font-family: var(--font-semibold);
    line-height: 1.25;
}


.our-company-pad {
    padding: 50px 0 60px;
}

.each-block-pad {
    padding: 0 30px;
}

.aboutus-text p {
    padding-bottom: 30px;
    font-size: 20px;
    line-height: 1.5;
}

.aboutus-text {
    padding: 0 30px;
}

.hero-about-banner {
    height: 200px;
}

/*about us*/

/*press*/
.year-block {
    border-top: 1px solid #efefef;
    padding: 15px 0;
    width: 100%;
    background: #f6f5f5;
}

.year-btn {
    background: #000;
    width: 86px;
    margin: 0 auto;
    padding: 14px 8px 14px 24px;
    cursor: pointer;
    position: relative;
}

.year-btn span.year {
    display: inline-block;
    margin-right: 7px;
    float: left;
    width: 52px;
}

.year-btn span.arrow {
    background: url(../images/sprite.png) no-repeat -9px -34px;
    width: 14px;
    height: 8px;
    display: inline-block;
    float: left;
    margin-top: 9px;
}

.release {
    padding: 40px 0 0;
}

time,
.latest-release time {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 20px;
    font-family: var(--font-black);
}

.release p {
    line-height: 1.5;
    padding-bottom: 25px;
}

.release a {
    color: #fff;
    display: inline-block;
    border-bottom: 4px solid #fff;
    padding-bottom: 1px;
    font-family: var(--font-bold);
}

.latest-release .release a {
    color: #000;
    border-bottom: 5px solid #000;
}

.release p:last-child {
    padding-bottom: 0;
}

.bdr-right {
    border-bottom: 2px solid #efefef;
}

.latest-release .each-block {
    box-sizing: border-box;
}

.latest-release time {
    color: #000;
}

.allnews-section {
    background: #f6f5f5;
    padding: 80px 30px 30px;
}

h2.heading {
    font-size: 35px;
    padding-bottom: 25px;
    font-family: var(--font-bold);
}

h2.heading span {
    display: block;
}

.each-news-block {
    padding-bottom: 35px;
}

.each-news-block time {
    font-size: 14px;
    color: #000;
    padding: 0 0 3px;
}

.each-news-block p {
    font-size: 14px;
    line-height: 1.5;
}

.each-news-block p a {
    text-decoration: none;
}

.press-contact-sec {
    padding: 20px 0 0;
}

.allyears {
    display: none;
    background: #f6f5f5;
    position: absolute;
    left: 0;
    top: 49px;
    width: 100%;
    height: 176px;
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 10
}

.allyears li {
    border-bottom: 1px solid #dbdbdb;
}

.allyears li a {
    color: #000;
    font-size: 22px;
    padding: 15px;
    text-align: center;
    display: block;
    cursor: pointer
}

.year-btn a {
    color: #fff;
    font-size: 21px;
    text-decoration: none;
}

/*press*/

/*lightbox*/
.logo {
    width: 112px;
    margin: 0 auto 10px;
}

.logo img {
    max-width: 100%;
}

.lightboxBg {
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 17;
}

.lightbox {
    background: #000;
    position: fixed;
    top: 50%;
    left: 50%;
    display: none;
    z-index: 18;
    width: 300px;
    height: 350px;
}

.lightbox-frame {
    padding: 20px;
}

.contact-close,
.ticker-close {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.ticker-close {
    width: 20px;
    height: 20px;
    right: 8px;
    top: 8px;
}

.contact-close span,
.ticker-close span {
    cursor: pointer;
    position: absolute;
    top: 11%;
    color: #fff;
    font-size: 20px;
    left: 23%;
}

.ticker-close span {
    color: #818181;
    font-size: 18px;
}

/*lightbox*/


/* broadcast css */
.broadCastHeading {
    height: 200px;
    display: table;
    text-align: center;
    width: 100%;
}

.broadCastHeading h1 {
    font-size: 60px;
    line-height: 60px;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    font-family: var(--font-bold);
}

.broadCastListing {
    padding: 40px 20px;
}

.broadCastListing ul {
    text-align: center;
}

.broadCastListing ul li {
    display: inline-block;
    padding: 30px 0 40px;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.broadCastListing ul li div.icon {
    text-align: center;
    margin-bottom: 25px;
}

div.icon a,
div.title a {
    display: inline-block;
}

div.icon a {
    display: block;
}

.broadCastListing ul li div.icon img {
    display: inline-block;
    max-width: 100%;
    height: 40px;
	margin-top: 18px; /* ADDED BY BILL - this counteracts an inline style of margin-top: 18px; which I cannot find to edit! */
}

.broadCastListing ul li div.title {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 6px
}

.broadCastListing > div:first-of-type {
    border-bottom: 4px solid black;
}

/*23-06*/

.digital-logo ul li div.icon img {
    height: auto
}

/*06/01 */
.broadCastListing ul li div.address {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 6px;
}



.broadCastListing ul.social-icons {
    margin-top: 15px;
    text-align: center;
}

.broadCastListing ul.social-icons li {
    margin: 0 7px;
    padding: 0;
    display: inline-block;
    width: auto;
}

.broadCastListing.digitallisting ul.social-icons li {
    width: auto;
}

.broadCastListing ul.social-icons li a {
    display: inline-block;
}

.broadCastListing ul.social-icons li:first-child {
    margin-left: 0;
}

.broadCastListing ul.social-icons li a {
    background-image: url(../images/sprite.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 13px;
    transition: all 200ms ease 0s;
    -moz-transition: all 200ms ease 0s;
    -webkit-transition: all 200ms ease 0s;
    -ms-transition: all 200ms ease 0s;
}

.broadCastListing ul.social-icons li a:hover {
    background-color: transparent;
}

.broadCastListing ul.social-icons li.fb a {
    background-position: 0 0;
    width: 7px;
    height: 14px;
}

.broadCastListing ul.social-icons li.fb a:hover {
    background-position: 0 -15px;
}

.broadCastListing ul.social-icons li.twitter a {
    background-position: -11px 0;
    width: 15px;
    height: 14px;
}

.broadCastListing ul.social-icons li.twitter a:hover {
    background-position: -11px -15px;
}

.broadCastListing ul.social-icons li.youtube a {
    background-position: -30px 0;
    width: 17px;
}

.broadCastListing ul.social-icons li.youtube a:hover {
    background-position: -30px -15px;
}

.broadCastListing ul.social-icons li.rss a {
    background-position: -51px 0;
    width: 13px;
}

.broadCastListing ul.social-icons li.rss a:hover {
    background-position: -51px -15px;
}

.broadCastListing ul.social-icons li.Instagram a {
    background-position: -295px 0;
    width: 14px;
    height: 14px;
}

.broadCastListing ul.social-icons li.Instagram a:hover {
    background-position: -295px -15px;
}

.broadCastListing ul.social-icons li.pintrest a {
    background-position: -311px 0;
    width: 14px;
    height: 14px;
}

.broadCastListing ul.social-icons li.pintrest a:hover {
    background-position: -311px -15px;
}

/* broadcast css */

/* digital css */
.firstlogo {
    padding: 0 0 30px;
}

.broadCastListing .firstlogo ul li div.icon {
    height: 74px;
}

.digitalbrandlogo {
    background: #f5f5f5;
    padding: 50px 0;
}

.digitalbrandlogo h2 {
    font-family: var(--font-bold);
    font-size: 27px;
    padding-bottom: 25px;
    text-align: center;
}

.clippermagazine {
    padding: 60px 0;
    background: #fff;
}

.broadCastListing.digitallisting {
    padding-bottom: 0;
}

/* digital css */

/*12/10/2015*/
.search-smallerdevice {
    float: right;
    background: url(../images/sprite.png) no-repeat -89px -20px;
    width: 23px;
    height: 23px;
    margin: -29px 0 0 0;
    text-indent: -20000px;
    cursor: pointer;
}

.searchsection {
    border-top: 1px solid #f3f3f3;
    background: #fff;
    position: relative;
    display: none;
    width: 100%;
}

.searchsection-block {
    display: block;
}

.searchsection input {
    background: none;
    border: none;
    font-size: 20px;
    color: #777;
    float: left;
    width: 86%;
    padding: 12px 0 12px 13px;
    font-family: var(--font-semibold);
}

.searchsection .cross {
    background: url(../images/sprite.png) no-repeat -113px -20px;
    width: 13px;
    height: 13px;
    float: right;
    margin-top: 18px;
    margin-right: 13px;
    cursor: pointer;
}

.searchresult {
    font-family: var(--font-bold);
    font-size: 19px;
    padding-bottom: 20px;
}

.searchitem {
    padding-bottom: 40px;
}

.searchitem h2 {
    font-family: var(--font-bold);
    font-size: 24px;
    padding-bottom: 8px;
}

.searchitem p {
    font-family: var(--font-semibold);
    font-size: 18px;
}

/*12/10/2015*/
#nav-above,
#nav-below {
    text-align: center;
    padding-bottom: 30px;
}

.nav-previous,
.nav-next {
    display: inline-block;
    padding: 0 15px;
}

@media screen and (min-width:320px) {

    /*.navbar-fixed-top{background:yellow;}*/
    .navOvLay {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 15;
        display: none;
        cursor: pointer;
    }

    .menu-smallerdevice {
        font-size: 14px;
        color: #000;
        cursor: pointer;
        text-transform: uppercase;
        float: left;
        padding-top: 6px;
        font-family: var(--font-black);
        letter-spacing: 0.04em;
    }

    .navbar-header-small {
        text-align: center;
    }

    .navigation {
        background: #fff;
        color: #343434;
        height: 100%;
        position: fixed;
        z-index: 18;
        top: 0;
        width: 250px;
        left: -300px;
    }

    .innerDiv {
        overflow: auto;
    }

    .menu-close {
        position: absolute;
        right: -30px;
        top: 0px;
        background: url(../images/sprite.png) no-repeat 7px -44px #fff;
        width: 30px;
        height: 28px;
        cursor: pointer;
    }

    .navigation li {
        border-bottom: 2px solid #e5e5e5;
        position: relative;
        cursor: pointer;
        display: block
    }

    .navigation li a {
        font-size: 20px;
        text-transform: uppercase;
        display: block;
        text-decoration: none;
        padding: 20px 18px;
        transition: all 0.1s ease;
        -moz-transition: all 0.1s ease;
        -webkit-transition: all 0.1s ease;
        -ms-transition: all 0.1s ease;
        letter-spacing: 0.05em;
        font-family: var(--font-black);
        cursor: pointer
    }

    .navigation li a span {
        background: url(../images/sprite.png) no-repeat -27px -33px;
        width: 15px;
        height: 11px;
        display: inline-block;
        float: right;
        margin-top: 3px;
    }

    .navigation li a:hover,
    .navigation li.selected a {
        background: #000;
        color: #fff;
    }

    .navigation li a:hover span,
    .navigation li.selected a span {
        background: url(../images/sprite.png) no-repeat -43px -33px;
    }

    .navigation li.selected .subnav li a {
        color: #000;
    }

    .navigation li.selected .subnav li a:hover {
        color: #fff;
        background: #545050;
    }

    .navigation li .social-icons {
        padding: 40px 28px;
    }

    .navigation li .social-icons li {
        padding: 0;
        border-bottom: none;
        float: left;
        margin: 0 15px;
    }

    .navigation li .social-icons li a {
        padding: 0;
        background-image: url(../images/sprite.png);
    }

    .navigation li .social-icons li a:hover {
        background-color: transparent;
        background-image: url(../images/sprite.png);
    }

    .spot.white,
    .award {
        display: none;
    }

    .banner-pad {
        padding: 35px 10px;
    }

    .graysec > .container {
        padding: 0 20px;
    }

    .down-arrow,
    .hero-banner h2,
    .navbar-header {
        display: none;
    }

    .culturesec {
        margin-bottom: 20px;
    }

    .ticker-content {
        display: none;
        padding-bottom: 5px;
    }

    .broadCastListing.digitallisting {
        padding-left: 0;
        padding-right: 0;
    }

    /*boardmembers*/
    .boardmembers-pad {
        padding: 60px 20px 0;
    }

    .boardmembers-extra-pad {
        padding: 65px 20px 40px;
    }

    .boardmembers ul li a {
        margin: 0 10px;
    }

    #menu-leadership-menu a {color:#fff; border-color:#fff;}
    #menu-leadership-menu a:hover, #menu-leadership-menu .current-menu-item a {border-color:#666; color:#666;}

    .boardmembers-pad h2 {
        font-family: var(--font-bold);
        font-size: 40px;
        padding-bottom: 48px;
        text-align: center;
    }

    .members .each-detail {
        margin: 0 9px;
        width: 212px;
        margin-bottom: 67px;
        display: inline-block;
        cursor: pointer;
    }
	
    .members .each-detail .img-placeholder {
        padding-bottom: 28px;
    }
	
    /*17-06*/
	/* BELOW ADDED BY BILL FOR HOVER */
	.bod-img {
		opacity: 1;
		display: block;
		width: 100%;
  		height: auto;
		transition: .5s ease;
		backface-visibility: hidden;
		border: none;
}
	/* Note I changed img (no dot) to .bod-img for the hover effect */
    /*17-06*/
    .members .each-detail .img-placeholder .bod-img {
        max-width: 100%;
        height: auto;
        display: inline-block;
    }
	
	/* BELOW HOVER CLASS ADDED BY BILL */
	.img-placeholder:hover .bod-img {
  		opacity: 0.4;
		width: 100%;
}
	
    .members .each-detail h3 {
        font-family: var(--font-bold);
        font-size: 23px;
        margin-bottom: 18px;
    }

    .members .each-detail h3 span {
        padding-bottom: 5px;
        border-bottom: 5px solid #000;
        display: inline-block;
    }

    .members .each-detail h4 {
        font-size: 16px;
        padding: 0 22px;
        font-weight: normal;
        display: table;
        margin-left: auto;
        margin-right: auto
    }

    .member-details-pad {
        padding: 60px 20px 35px;
	}
	
    .leadership-close {
        text-align: center;
    }

    .leadership-close span {
        font-size: 18px;
        font-family: var(--font-black);
        display: inline-block;
        cursor: pointer;
    }

    /*.rel{position:relative;}*/
    .pointer-arrow {
        background: url(../images/sprite.png) no-repeat -91px -73px;
        width: 33px;
        height: 17px;
        position: absolute;
        z-index: 15;
        top: -17px;
    }

    .member-details {
        background: #f5f5f5;
        position: relative;
        z-index: 15;
        display: none;
    }

    .member-details p {
        font-size: 18px;
        line-height: 1.5;
        padding-bottom: 30px;
        text-align: left;
    }

    #boardDirectors .member-details p {
        padding-bottom: 9px;
    }

    #boardDirectors .leadership-close {
        margin: 10px 0 0 0;
    }

    .graybackground {
        background: #f6f5f5;
    }

    .graybg-pad {
        padding: 63px 20px;
    }

    .back-button {
        padding-bottom: 50px;
    }

    .back-button a {
        display: inline-block;
        padding-bottom: 2px;
        border-bottom: 5px solid #000;
        font-family: var(--font-black);
        font-size: 17px;
        letter-spacing: 0.07em;
    }

    .graybackground time {
        color: #000;
    }

    .detailsec p {
        padding-bottom: 25px;
		line-height: 1.5;
        font-size: 18px;
    }

    .detailsec .entry-content p {
        line-height: 1.5
    }

    .detailsec p span {
        font-family: var(--font-black);
    }

    .member-details > .container {
        max-width: 718px;
    }

    .graybg-pad h3 {
        font-size: 24px;
        padding-bottom: 20px;
        font-family: var(--font-bold);
    }

    .graybg-pad p a {
        display: inline-block;
		color: #004d99; /* Added by Bill - 3-20-2020 */
    }

    .graybg-pad p a:hover {
        text-decoration: underline
    }

    .graybg-pad p a.email {
        text-decoration: underline;
    }

    .graybg-pad p a.email:hover {
        text-decoration: none;
    }

    .graybg-pad ul {
        padding-left: 20px;
    }

    .graybg-pad ul li {
        list-style-type: disc;
        list-style-position: outside;
        font-size: 18px;
		line-height: 1.3;
        padding-bottom: 15px;
    }

    p.txt18.extraspace {
        padding-bottom: 20px;
    }

    .wrap {
        margin-bottom: 40px;
    }

    p.career-paragraph {
        font-size: 24px;
        font-family: var(--font-semibold);
        line-height: 1.5;
    }

    .missiontext h1.career-description {
        padding-bottom: 30px;
    }

    .pad30 {
        padding-left: 20px;
        padding-right: 20px;
    }

    h2.list-heading {
        font-size: 30px;
        font-family: var(--font-bold);
        padding-bottom: 15px;
    }

    ul.career-listing {
        padding-bottom: 60px;
    }

    ul.career-listing li {
        padding: 5px 0;
        font-size: 20px;
        font-family: var(--font-semibold);
        line-height: 1.5
    }

    ul.career-listing li a {
        display: inline-block;
    }

    .eachlisting-block {
        padding: 45px 0 0 0;
    }

    .each-listing-block:last-child > .career-listing {
        padding-bottom: 0;
    }


    p.joblisting-description {
        font-size: 24px;
        line-height: 1.5;
        padding-bottom: 35px;
    }

    p.joblisting-description + p.joblisting-description {
        padding-bottom: 40px;
    }

    .shareicons {
        padding-bottom: 75px;
    }

    .shareicons li {
        float: left;
        margin-right: 26px;
    }

    .shareicons li:last-child {
        margin-right: 0;
    }

    .shareicons li.job-twitter {
        margin-top: 3px;
    }

    .shareicons li a {
        display: block;
    }

    .shareicons li.job-fb a {
        background: url(../images/sprite.png) no-repeat -135px -63px;
        width: 13px;
        height: 27px;
    }

    .shareicons li.job-twitter a {
        background: url(../images/sprite.png) no-repeat -158px -67px;
        width: 29px;
        height: 23px;
    }

    .shareicons li.job-linkedin a {
        background: url(../images/sprite.png) no-repeat -196px -65px;
        width: 26px;
        height: 26px;
    }

    .shareicons li.job-fb a:hover {
        background: url(../images/sprite.png) no-repeat -135px -93px;
    }

    .shareicons li.job-twitter a:hover {
        background: url(../images/sprite.png) no-repeat -158px -97px;
    }

    .shareicons li.job-linkedin a:hover {
        background: url(../images/sprite.png) no-repeat -196px -95px;
    }

    .listing {
        padding-left: 0px;
    }

    .listing li {
        padding-bottom: 25px;
    }

    .listing li a {
        font-size: 24px;
        font-family: var(--font-semibold);
        border-bottom: 6px solid #000;
        padding-bottom: 5px;
        display: inline-block;
    }

    .shareIcons,
    .listing {
        display: block;
    }

    .listing.tab-devices {
        display: none;
    }

    /*15-06*/
    .quote-peoopleculture {
        position: relative;
        margin-top: 20px;
        margin-bottom: 95px;
    }

    .top-quote-bigger {
        position: absolute;
        left: 0;
        top: 0;
        background: url(../images/sprite.png) no-repeat 0px -123px;
        width: 63px;
        height: 47px;
    }

    .bottom-quote-bigger {
        position: absolute;
        right: 0;
        bottom: -34px;
        background: url(../images/sprite.png) no-repeat -68px -123px;
        width: 63px;
        height: 47px;
    }

    p.testi {
        font-size: 29px;
        font-family: var(--font-semibold);
        line-height: 1.1;
        padding-top: 65px;
        padding-bottom: 20px;
    }

    p.customer {
        font-size: 14px;
        padding-right: 30px;
    }

    p.customer span {
        display: block;
    }

    .padleft60 {
        padding-left: 0px;
    }

    .links {
        padding-top: 80px;
    }

    .links .listing {
        padding-left: 0;
        display: block;
    }

    /*01-06*/
    .list-style > li {
        float: inherit;
        width: 100%;
    }

    .list-style > li a:before {
        content: "";
        padding: 0
    }

    .list-style > li:first-child {
        margin-bottom: 6px;
    }

    .list-style > li a {
        display: inline-block
    }

    .rsslist textarea {
        width: 100%;
        resize: none;
    }

    /*0206*/
    .hero-banner .play {
        font-family: var(--font-bold);
        font-size: 36px;
        margin: 48px 0;
        text-align: center
    }

    .hero-banner .play a {
        color: #fff;
        border-bottom: 5px solid #fff;
        display: inline-block;
        padding-bottom: 5px;
    }

    .lightbox .title {
        color: #fff;
        font: 20px var(--font-semibold);
        text-transform: uppercase;
        padding-bottom: 10px;
        margin-bottom: 10px;
        text-align: center
    }

    /*03-06*/
    header .container-pad {
        padding: 20px 13px;
    }

    /*.aboutus-text.scroll {height: 300px;overflow-x: hidden; overflow-y: scroll; padding-right:15px; -webkit-overflow-scrolling:touch }*/

    /*Benifit page*/
    /*12-06*/
    .benefits p.career-paragraph {
        font-family: var(--font-semibold);
        font-size: 18px;
        margin-bottom: 20px;
        line-height: auto
    }

    .benefits h2.list-heading {
        margin-top: 35px;
    }

    .benefits ul.career-listing {
        position: relative; /* Added by Bill */
		padding-bottom: 20px;
		/* padding-left: 30px; */ /* Added by Bill */
        list-style-position: outside;
    }

    .benefits ul.career-listing li {
        font-size: 18px;
		/* padding-left: 30px;  Added by Bill */
    }

     .benefits ul.career-listing li:before {
		content: "•";
		font-size: 130%;
        position: relative;
		top: 1px;
        height: 100%;
        display: inline-block;
        padding-right: 8px;
		/* margin-left: 20px; */ /* Added by Bill */
    }
	
    .benefits .missiontext h1.career-description {
        font-size: 30px;
        line-height: 30px;
    }
	

    /*17-06*/

    .spot.border {
        padding: 0;
        width: 46%
    }

    .videobg div.play {
        font-size: 25px;
    }

    .videobg div.play a {
        font-size: 25px;
    }

    .quote {
        position: relative;
    }

    .top-quote {
        background: url(../images/sprite.png) no-repeat 0 -72px;
        display: inline-block;
        position: absolute;
        left: 0;
        top: 0;
        width: 42px;
        height: 31px;
    }

    .bottom-quote {
        background: url(../images/sprite.png) no-repeat -46px -72px;
        display: inline-block;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 42px;
        height: 31px;
    }

    /*17-06*/
    .testimonial-first {
        background: #fff none repeat scroll 0 0;
        display: block;
        width: 100%;
        float: left;
        margin-bottom: 20px;
    }

    .workwithus {
        float: left;
        width: 100%;
    }

    .members-cont .each-detail {
        text-align: center
    }

    /*18-06*/
    .members .each-detail {
        display: inherit;
        margin: 0 auto 67px;
    }

    .inner-spot {
        padding: 0 5px
    }

    /*23-06*/
    .broadCastnote {
        margin: 20px;
        text-align: center;
        font-size: 18px;
    }

    .broadCastnote .star {
        margin-right: 2px;
        top: 6px;
    }

    .star {
        font-size: 25px;
        position: relative;
        top: 8px;
        margin-left: 2px;
    }

    .floatingmenu .navbar-nav-right li .social-icons li.search {
        display: none;
    }
}


@media screen and (min-width:360px) {

    /*.navbar-fixed-top{background:green;}*/
    /*lightbox*/
    .lightbox {
        width: 350px;
    }

    .spot.border {
        width: 46%;
    }

    .spot p {
        line-height: normal;
    }

    .spot.border {
        padding: 0 20px;
    }

    .page-id-76 .videobg div.play {
        padding-top: 131px;
    }


}


@media screen and (min-width:480px) {

    /*.navbar-fixed-top{background:blue;}*/
    .page-id-76 .videobg div.play {
        padding-top: 121px;
    }

    .spot h1 {
        font-size: 24px;
    }

    .spot {
        width: 48%;
        height: 200px;
    }

    .spot.border {
        width: 47%;
    }

    .spot.border h1 {
        color: #000;
        line-height: 35px;
    }


    .black-strip ul li a {
        margin: 0 30px;
        font-size: 20px;
    }

    .each-block-pod-pad {
        padding: 60px 20px;
    }

    .click-group a {
        font-size: 20px;
        margin-right: 60px;
    }

    .tweet {
        float: left;
        width: 57.52263374485597%;
        margin-right: 14px;
    }

    .culturesec {
        margin-bottom: 0px;
    }

    .workwithus {
        float: left;
        width: 38.66255144032922%;
    }

    .newsletter p {
        margin-bottom: 25px;
        font-size: 40px;
    }

    .formcontainer input[type="text"] {
        width: 75%;
        font-size: 14px;
        padding: 17px;
        float: left;
        background: none;
        margin-bottom: 0;
    }

    .newsletter .formcontainer {
        background: #fff;
        height: 50px;
    }

    .formcontainer input.submitbtn {
        background: none;
        font-size: 13px;
        float: left;
        height: 50px;
        line-height: 50px;
        padding-right: 10px;
        color: #000;
        width: auto;
        margin: 0;
        letter-spacing: 0.1em;
    }

    /*03-06*/
    header .container-pad {
        padding: 20px 13px;
    }

    .navigation {
        width: 300px;
        left: -350px;
    }

    .videobg div.play {
        font-size: 50px;
    }

    /*about us*/

    /*lightbox*/
    .lightbox {
        width: 460px;
        height: 300px;
    }

    .broadCastListing ul li {
        padding: 30px 18px;
        width: 164px;
        margin: 0 9px;
    }

    /*01-06*/
    .graybg-pad .list-style > li {
        float: left;
        width: auto;
        padding-bottom: 5px;
    }

    .list-style > li a:before {
        content: "|";
        padding: 0 10px
    }

    .list-style > li:first-child {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .list-style > li a {
        display: block
    }

    .rsslist textarea {
        width: 80%;
        resize: none;
    }


    /*17-06*/
    .testimonial-first {
        background: #fff none repeat scroll 0 0;
        display: block;
        width: 56%;
        float: left;
        margin-right: 20px;
    }


    /*18-16*/
    .members .each-detail {
        cursor: pointer;
        display: inline-block;
        margin: 0 9px 67px;
        width: 200px;
    }

    .inner-spot {
        padding: 0 20px
    }

}


@media screen and (min-width:640px) {
    /*.navbar-fixed-top{background:red;}*/

    /*header{padding:35px 0;}*/
    header .container-pad {
        padding: 35px 13px;
    }

    .page-id-76 .videobg div.play {
        padding-top: 195px;
    }

    .navbar-header-small a {
        width: auto;
        margin-top: 3px;
        margin-left: -76px;
    }

    .navigation {
        width: 450px;
        left: -500px;
    }

    .navigation li a {
        font-size: 30px;
        padding: 40px 28px;
    }

    .banner-pad {
        padding: 95px 35px;
    }

    .spot {
        width: 46%;
        margin: 0 10px;
        height: 270px;
    }

    .spot.border {
        width: 46%;
    }

    .spot.border h1 {
        color: #fff;
        line-height: 40px;
    }

    .spot h1 {
        font-size: 35px;
    }

    .spot.black h1 {

        line-height: 40px;
    }

    .click-group {
        padding: 55px 0 0;
    }

    .spot p {
        font-size: 22px;
        line-height: 1.2;
    }

    .black-strip ul li a {
        margin: 0 55px;
        font-size: 28px;
    }

    .black-strip {
        padding: 50px 0;
    }

    .each-block-pod-pad {
        padding: 130px 43px 130px 40px;
    }

    .each-block-pod h2 {
        font-size: 50px;
        line-height: 50px;
    }

    .each-block-pod p,
    .click-group a {
        font-size: 24px;
    }

    .tweet p {
        font-size: 29px;
    }

    .tweet p.author {
        font-size: 39px;
    }

    .videobg {
        height: 372px;
    }

    .visit {
        height: 100%;
    }

    .graysec {
        padding: 55px 0;
    }

    .graysec > .container {
        padding: 0 40px;
    }

    .graysec h2 {
        font-size: 50px;
        padding: 0 0 30px 30px;
    }

    .tweet {
        width: 57.52263374485597%;
    }

    .workwithus h2 {
        padding-left: 0;
        padding-bottom: 46px;
        font-family: var(--font-semibold);
    }

    .workwithus a {
        font-size: 24px;
        font-family: var(--font-black);
    }

    .newsletter-pad {
        padding: 40px;
    }

    .formcontainer input[type="text"] {
        width: 78%;
        font-size: 20px;
        padding: 14px;
    }

    .formcontainer input.submitbtn {
        font-size: 18px;
    }

    .footerlink {
        padding: 38px 68px;
    }

    .menu-smallerdevice {
        font-size: 22px;
        margin-left: 20px;
    }

    .banner-pad {
        padding: 55px 20px;
    }

    .item {
        height: 450px;
        width: 100%;
    }

    .ticker-pad {
        padding: 18px 0 20px;
    }

    .ticker-close span {
        font-size: 23px;
    }

    .ticker-close {
        right: 16px;
    }

    .footerlink li a,
    .copyright {
        font-size: 24px;
    }

    .copyright {
        color: #999999;
    }

    .graysecpad > .group {
        padding: 30px 0 0 0;
    }

    .footerlink li a:hover {
        text-decoration: underline
    }

    /*about us*/
    .right-black-section .each-block-pod {
        float: left;
    }

    #press .right-black-section .each-block-pod {
        float: none;
    }

    .left-black-section .each-block-pod {
        float: right;
    }

    .inner .videobg {
        height: 100%;
        width: 101%;
    }

    .hero-about-banner {
        height: 300px;
    }

    .missiontext {
        padding: 60px 30px;
    }

    .missiontext h1 {
        font-size: 35px;
    }

    .missiontext h1 span {
        font-size: 22px;
    }

    .our-vision-section .each-block,
    .our-purpose-section .each-block {
        width: 50%;
        float: left;
    }

    .right-black-section .each-block-pod-pad,
    .left-black-section .each-block-pod-pad {
        padding: 90px 20px;
    }

    .our-purpose-section .each-block:first-child {
        float: right;
    }

    .our-company-pad {
        padding: 80px 0 60px;
    }

    .year-block {
        padding: 50px 0;
    }

    .year-btn {
        padding: 19px 34px 19px 44px;
        width: 98px;
    }

    .year-btn a,
    .allyears li a {
        font-size: 35px;
    }

    .year-btn span.year {
        margin-right: 13px;
    }

    .year-btn span.arrow {
        margin-top: 15px;
    }

    .allyears {
        top: 73px;
    }

    .year-btn span.year {
        width: 70px;
    }

    .right-black-section p.descriptiontxt {
        font-size: 22px;
    }

    /*lightbox*/
    .lightbox {
        width: 600px;
    }

    .group.our-vision-section,
    .group.our-purpose-section {
        background: black;
    }
	
    .broadCastHeading {
        height: 300px
    }

    .broadCastListing ul li {
        margin: 0 8px;
        padding: 40px 8px;
        width: 112px;
    }

    .ticker p {
        font-size: 18px;
    }

    .digitalbrandlogo h2 {
        font-size: 40px;
        padding-bottom: 35px;
    }

    .digitalbrandlogo {
        padding: 105px 0;
    }

    /*23-06*/
    .broadCastListing ul li div.icon {
        height: 75px;
        margin-bottom: 0
    }

    /*boardmembers*/
    .boardmembers-pad {
        padding: 110px 36px 0;
    }

    .boardmembers-extra-pad {
        padding: 98px 0 80px;
    }

    .boardmembers ul li a {
        margin: 0 38px;
    }

    .boardmembers-pad h2 {
        font-size: 60px;
    }

    .novidimgcont {
        float: left;
        width: 50%;
    }

    .pad30 {
        padding-left: 30px;
        padding-right: 30px;
    }

    p.career-paragraph {
        font-size: 30px;
    }

    h2.list-heading {
        font-size: 36px;
    }

    ul.career-listing li {
        font-size: 24px;
    }

    .listing li {
        padding-bottom: 35px;
    }

    .listing li a {
        font-size: 34px;
    }


    /*Benifit Css*/
    /*12-06*/
    .benefits .missiontext h1.career-description {
        font-size: 35px;
        line-height: 35px;
    }

    .members {
        margin: 0 auto;
        width: 81.8%;
    }

    .members .each-detail.last {
        display: block
    }

}

@media screen and (min-width: 768px) {

    /*.navbar-fixed-top{background:aqua;}*/
    .page-id-76 .videobg div.play {
        padding-top: 286px;
    }

    .spot h1 {
        font-size: 44px;
    }

    .spot.black h1 {
        line-height: 40px;
    }

    .spot,
    .spot.border {
        width: 47%;
    }

    .each-block,
    .each-listing-block {
        width: 50%;
        float: left;
    }

    .each-block-pod {
        float: right;
    }

    .each-block-pod h2 {
        font-size: 60px;
        line-height: 53px;
    }

    .menu-smallerdevice {
        font-size: 14px;
        padding-top: 9px;
    }

    .navbar-header-small a {
        margin-left: -51px;
    }

    .each-block-pod p {
        font-size: 18px;
    }

    .videobg div.play {
        font-size: 30px;
    }

    .click-group a {
        font-size: 18px;
        margin-right: 40px;
    }

    .click-group {
        padding: 30px 0 0 0;
    }

    .videobg,
    .visit {
        height: 100%;
    }

    .testimonial {
        float: left;
        width: 35.69958847736626%;
        /* background-image:url(../images/testibg.jpg); background-repeat:no-repeat; background-position:0 0; background-size:contain;*/
        display: block;
        background-color: #fff;
    }

    .tweet {
        width: 36.52263374485597%;
    }

    .workwithus {
        width: 23.66255144032922%;
        margin-right: 14px;
    }

    .tweet p {
        font-size: 20px;
    }

    .graysecpad > .group {
        padding: 10px 0 0 0;
    }

    @-moz-document url-prefix() {
        .graysecpad > .group {
            padding: 13px 0 0 0;
        }
    }

    .workwithus h2 {
        font-size: 50px;
        padding: 0 0 26px;
        font-family: var(--font-bold);
        line-height: 1;
    }

    .workwithus a {
        font-size: 18px;
        font-family: var(--font-semibold);
    }

    .culturesec {
        min-height: 290px;
    }

    @-moz-document url-prefix() {
        .culturesec {
            min-height: 287px;
        }
    }

    .graysecpad {
        padding: 18px;
    }

    .broadcastNetworks {
        float: left;
        width: 62.24279835390947%;
        margin-right: 14px;
    }

    .award {
        float: right;
        width: 34.80246913580247%;
        display: block;
    }

    .awardtxt {
        background: #fff;
        padding: 18px;
    }

    .awardtxt p {
        font-size: 21px;
        margin-top: 10px;
        line-height: 1;
    }

    .newsletter p {
        float: left;
        margin-top: 13px;
        font-size: 24px;
        text-align: left;
        margin-bottom: 0;
    }

    .newsletter .formcontainer {
        width: 75.76954732510288%;
    }

    .footerlink li a {
        font-size: 15px;
    }

    .copyright {
        font-size: 12px;
    }

    .formcontainer input[type="text"] {
        width: 78%;
        font-size: 14px;
        padding: 17px;
    }

    .formcontainer input.submitbtn {
        font-size: 15px;
    }

    .navigation {
        width: 550px;
        left: -600px;
    }

    .hero-banner h2 {
        font-size: 24px;
        line-height: 28px;
        padding: 40px 101px 0;
        text-align: center;
        color: #fff;
        display: block;
        font-family: var(--font-normal);
        letter-spacing: 0.010em;
    }

    .navigation li a {
        font-size: 30px;
        padding: 40px 28px;
    }

    .item {
        height: auto;
        width: auto;
    }

    .newsletter {
        border-bottom: 2px solid #363636;
    }

    .spot p {
        font-size: 28px;
    }

    .tweet p.author {
        font-size: 30px;
    }

    .testimonial p.customer {
        font-size: 16px;
        padding-bottom: 35px;
    }

    .testimonial p {
        padding: 37px 0 7px;
    }




    /*about us*/
    .hero-about-banner {
        height: 400px;
    }

    .missiontext h1 {
        font-size: 50px;
    }

    .left-black-section .each-block-pod-pad,
    .right-black-section .each-block-pod-pad {
        padding: 80px 30px;
    }

    /*16-06*/
    .each-block-pod p.descriptiontxt,
    .our-company-pad .each-block-pod p {
        font-size: 20px;
    }

    .each-block-pad {
        padding: 0 30px;
    }

    .our-company-pad .each-block-pod p {
        padding-bottom: 0;
    }

    .aboutus-text p {
        font-size: 18px;
    }

    .each-block-pad {
        padding: 0 0 0 30px;
    }

    /*press*/
    .right {
        float: left;
    }

    .year-btn a,
    .allyears li a {
        font-size: 28px;
    }

    .year-btn {
        width: 86px;
    }

    .bdr-right {
        border-right: 2px solid #efefef;
        border-bottom: none;
    }

    .bdr-leftnw {
        border-left: 1px solid #efefef;
        border-bottom: none;
    }

    .bdr-rightnw {
        border-right: 1px solid #efefef;
        border-bottom: none;
    }

    .bdr-top {
        border-top: 1px solid #efefef;
    }

    h2.heading {
        font-size: 45px;
        line-height: 45px;
    }

    .each-news-block p {
        font-size: 18px;
    }

    .press-contact-sec {
        padding: 70px 0 0;
    }

    .allnews-section {
        padding: 80px 30px;
    }

    #press .right-black-section .each-block-pod {
        float: left;
    }

    .year-btn span.year {
        width: 52px;
    }

    .year-btn span.arrow {
        margin-top: 11px;
    }

    .latest-release .each-block-pod p.descriptiontxt {
        font-size: 45px;
    }

    .allyears {
        top: 66px;
    }

    /*lightbox*/
    .contact-close {
        margin: 0 auto 55px;
    }

    .lightbox {
        width: 680px;
        height: 540px;
    }

    .lightbox-frame {
        padding: 40px;
    }

    .logo {
        margin: 0 auto 25px;
    }

    .contact-close span {
        font-size: 26px;
    }

    .broadCastHeading {
        height: 400px
    }

    .broadCastListing {
        padding: 40px 30px;
    }

    .broadCastListing ul li {
        padding: 30px 18px;
        width: 120px;
    }

    .broadCastListing.digitallisting ul li {
        width: 129px;
        vertical-align: top;
    }

    .digitalbrandlogo h2 {
        padding-bottom: 75px;
    }

    /*boardmembers*/
    .boardmembers-pad {
        padding: 140px 36px 0;
    }

    .boardmembers-extra-pad {
        padding: 98px 36px 80px;
    }

    .boardmembers ul li a {
        margin: 0 67px;
    }

    .boardmembers-pad h2 {
        padding-bottom: 65px;
    }

    .member-details-pad {
        padding: 60px 36px 35px;
    }

    .graybg-pad {
        padding: 63px 35px;
    }

    .novidimgcont {
        float: none;
        width: auto;
    }

    p.career-paragraph {
        font-size: 24px;
    }

    h2.list-heading {
        font-size: 34px;
    }

    ul.career-listing li {
        font-size: 18px;
    }


    p.joblisting-description {
        padding-bottom: 45px;
    }

    .listing {
        padding-left: 100px;
    }

    .shareicons {
        padding-bottom: 45px;
    }

    .listing li a {
        font-size: 28px;
    }

    .listing li {
        padding-bottom: 25px;
    }

    .padright115 {
        padding-right: 75px;
    }

    .bottom-quote-bigger {
        bottom: -64px;
    }

    /*Job Listing*/
    /*12-06*/
    .explore-job .joblisting-description {
        margin-top: 33px;
        padding-bottom: 47px;
        padding-left: 100px;
    }

    /*17-06*/
    .members {
        margin: 0 auto;
        width: 100%;
    }

    .members .each-detail.last {
        display: block
    }

    /*12/10/2015*/
    .search-smallerdevice {
        margin: -29px 26px 0 0;
    }

    .searchsection input {
        font-size: 24px;
        width: 90%;
        padding: 17px 0 17px 29px;
    }

    .searchsection .cross {
        margin-top: 24px;
        margin-right: 32px;
    }

    /*12/10/2015*/
    .videobg,
    .visit {
        background-position: 50% 50%;
    }

    .safari .first-section .videobg {
        height: 100.5%;
    }
}

@media screen and (min-width:960px) {
    /*.navbar-fixed-top{background:pink;}*/

    .group.flex .ratio-container {
        flex: 1 1 auto;
        max-width: 45%;
    }
	
    /*header{padding:0;}*/
    header .container-pad {
        padding: 0 13px;
    }

    .navbar-header-small {
        display: none;
    }

    .navbar-header {
		position: absolute;
        width: 150px;
		left: 0;
		right: 0;
        display: block;
        padding: 35px 0;
    }

    .navbar-header a {
        width: 146px;
        margin: 0 auto;
        height: 27px;
    }

    .navbar-nav-left,
    .navbar-nav-right {
        float: left;
        display: block;
        width: 399px;
    }

    .navbar-nav-right {
        float: right;
        width: 394px;
    }

    .spot {
        float: left;
    }

    .navigation {
        background: none;
        position: static;
        top: 0;
        width: auto;
        left: 0;
    }

    .container.brandListing {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navigation .innerDiv {
        overflow: visible;
    }

    .navigation .innerDiv > ul > li {
        float: left;
        margin: 0 31px;
        padding: 40px 0px 41px;
        position: relative;
        border-bottom: none;
    }

    @-moz-document url-prefix() {
        .navigation .innerDiv > ul > li {
            padding: 37px 0px 40px;
        }
    }

    .safari .navigation .innerDiv > ul > li {
        padding: 37px 0px 40px;
    }

    .navigation .navbar-nav-right li:first-child {
        margin: 0 10px 0 60px;
    }

    .navigation li a {
        font-size: 14px;
        padding: 0;
    }

    .navigation li a:hover {
        background: none;
    }

    .navigation li a span {
        display: none;
    }

    .navigation li a:hover,
    .navigation li.selected a {
        color: #555;
    }

    .navigation li:hover ul.subnav {
        display: block;
    }

    .navigation li .social-icons {
        padding: 1px 0 0 0;
    }

    @-moz-document url-prefix() {
        .navigation li .social-icons {
            padding: 3px 0 0 0;
        }
    }

    .safari .navigation li .social-icons {
        padding: 4px 0 0 0;
    }

    .navigation li .social-icons li {
        padding: 0;
        border-bottom: none;
        float: left;
        margin: 0 6px;
    }

    ul.subnav {
        background: #fff;
        display: none;
        left: -23px;
        position: absolute;
        top: 100%;
        width: 230px;
        z-index: 16;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    }

    /*12/10/2015*/
    .menu-smallerdevice,
    .search-smallerdevice {
        display: none;
    }

    .navigation .innerDiv > ul.navbar-nav-right > li:last-child {
        margin: 0 0 0 2px;
        padding-bottom: 0;
        padding-top: 37px;
    }

    /*12/10/2015*/
    .inner-spot {
        padding: 0;
    }

    .spot h1 {
        font-size: 55px;
    }

    .spot.black h1 {
        line-height: 50px;
        font-size: 38px;
    }

    .spot.white h1 {
        font-size: 55px;
        color: #fff;
    }

    .spot.white p {
        color: #000;
    }

    .banner-pad {
        padding: 115px 0 35px;
    }

    .spot,
    .spot.border {
        width: 31.27%;
    }

    .spot p {
        font-size: 26px;
    }

    .black-strip ul li a {
        margin: 0 95px;
    }

    .each-block-pod-pad {
        padding: 198px 140px 200px 0;
    }

    .each-block-pod {
        max-width: 450px;
    }

    .graysec h2 {
        padding: 0 0 30px 40px;
    }

    .tweet p,
    .testimonial p {
        font-size: 29px;
    }

    .testimonial p {
        padding: 55px 0 10px;
        line-height: 30px;
    }

    .graysecpad {
        padding: 23px;
    }

    .workwithus h2 {
        font-size: 70px;
        padding: 0 0 86px 0;
        line-height: 67px;
    }


    .tweet p.author {
        font-size: 40px;
    }

    .tweet p.author span {
        font-size: 14px;
    }

    .tweet,
    .workwithus,
    .broadcastNetworks {
        margin-right: 18px;
    }

    .culturesec {
        min-height: 369px;
    }

    .award {
        width: 35.80246913580247%;
    }

    .awardtxt {
        padding: 28px;
    }

    .awardtxt p {
        font-size: 30px;
        line-height: normal;
    }

    .newsletter-pad {
        padding: 63px 45px;
    }

    .newsletter p {
        font-size: 30px;
    }

    .newsletter .formcontainer {
        width: 72.76954732510288%;
        height: 60px;
    }

    .formcontainer input[type="text"] {
        float: left;
        width: 77.49%;
        font-size: 18px;
        color: #999;
        padding: 20px;
        background: none;
        border: none;
    }

    .formcontainer input.submitbtn {
        height: 60px;
        line-height: 60px;
        padding-right: 20px;
        font-size: 18px;
    }

    .footerlink {
        padding: 38px 168px;
    }

    .footerlink li a {
        font-size: 18px;
    }

    .copyright {
        font-size: 14px;
    }

    .hero-banner h2,
    .down-arrow {
        display: block;
    }

    .hero-banner h2 {
        padding: 40px 220px 0px;
    }

    .down-arrow {
        background: url(../images/sprite.png) no-repeat -329px 0;
        height: 26px;
        width: 41px;
        margin: 0 auto;
        display: block;
    }

    .menu-close {
        display: none;
    }

    /*23-06*/
    .testimonial p.customer {
        font-size: 18px;
        line-height: normal;
        padding: 0 0 78px;
    }

    .top-quote {
        background: url(../images/sprite.png) no-repeat -142px 0;
        width: 62px;
        height: 46px;
    }

    .bottom-quote {
        background: url(../images/sprite.png) no-repeat -210px 0;
        width: 62px;
        height: 46px;
    }

    .graysecpad > .group {
        padding: 23px 0 0 0;
    }

    @-moz-document url-prefix() {
        .graysecpad > .group {
            padding: 26px 0 0 0;
        }
    }


    /*about us*/
    .missiontext {
        padding: 100px 30px;
    }

    .missiontext h1 {
        font-size: 60px;
    }

    .missiontext h1.career-description {
        font-size: 50px;
    }

    .right-black-section .each-block-pod-pad,
    .latest-release .right .each-block-pod-pad {
        padding: 120px 0 120px 80px;
    }

    .each-block-pod p.descriptiontxt,
    .our-company-pad .each-block-pod p {
        font-size: 22px;
    }

    .left-black-section .each-block-pod-pad,
    .latest-release .each-block-pod-pad {
        padding: 120px 80px 120px 0;
    }

    .our-company-pad {
        margin: 134px auto;
        padding: 0;
    }

    .each-block-pad {
        padding: 0 70px 0 0;
    }

    .our-company-pad .each-block-pod p {
        font-size: 52px;
        line-height: 1;
    }

    .aboutus-text {
        padding: 0;
    }

    .latest-release .each-block-pod p.descriptiontxt {
        font-size: 40px;
    }

    p.txt18 {
        font-size: 18px;
        text-transform: uppercase;
        padding-bottom: 0;
    }

    /*press*/

    .year-block {
        padding: 35px 0;
        background: none;
    }

    .year-btn {
        padding: 14px 8px 14px 24px;
    }

    .allyears {
        top: 50px;
    }

    .allnews-section {
        padding: 80px 0;
    }

    h2.heading {
        font-size: 60px;
        line-height: 60px;
    }

    .each-news-block p {
        font-size: 24px;
    }

    .year-btn a {
        font-size: 21px;
    }

    .year-btn span.year {
        margin-right: 7px;
    }

    .year-btn span.arrow {
        margin-top: 9px;
    }

    .allyears li a {
        font-size: 22px;
    }

    /*lightbox*/
    .lightbox {
        width: 870px;
        height: 650px;
    }

    .logo {
        margin: 0 auto 55px;
    }

    .lightbox-frame {
        padding: 80px;
    }

    .broadCastListing ul li {
        width: 137px;
    }

    .broadCastListing {
        padding: 40px 0;
    }

    .ticker a {
        font-size: 18px;
    }

    .ticker p {
        font-size: 24px;
    }

    /*boardmembers*/
    .boardmembers-pad {
        padding: 125px 0 0;
    }

    .boardmembers ul li a {
        margin: 0 38px;
    }

    .boardmembers-pad h2 {
        padding-bottom: 55px;
    }

    .member-details-pad {
        padding: 60px 0 35px;
    }

    .members .each-detail {
        margin: 0 10px;
        width: 226px;
        margin-bottom: 87px;
    }

    .eachlisting-block {
        padding: 65px 0 0 0;
    }


    .graybg-pad {
        padding: 63px 0;
    }

    .detailsec {
        padding-right: 300px;
    }

    .novidimgcont div.play a {
        font-size: 60px;
    }

    .member-detail {
        min-height: 138px;
    }

    .missiontext h1.career-description {
        font-family: var(--font-bold);
    }

    .missiontext h1.career-description ~ h1.career-description {
        margin-top: -30px;
    }

    .missiontext h1.career-description span {
        font-family: var(--font-bold);
        margin-bottom: 30px;
    }

    p.career-paragraph {
        font-size: 28px;
        font-family: var(--font-semibold);
        line-height: 1.5;
    }

    h2.list-heading {
        font-size: 36px;
        padding-bottom: 25px;
    }

    ul.career-listing {
        padding-bottom: 70px;
    }

    p.joblisting-description {
        font-size: 28px;
    }

    .shareIcons,
    .listing {
        display: block;
    }

    .listing.tab-devices {
        display: none;
    }

    .listing li {
        padding-bottom: 38px;
    }

    p.joblisting-description {
        padding-bottom: 55px;
    }

    .navigation li .social-icons li:first-child {
        margin-right: 6px;
    }

    .navbar-nav-right li:last-child .social-icons li:last-child {
        margin: 0 0 0 6px;
    }

    .padright115 {
        padding-right: 115px;
    }

    .padleft60 {
        padding-left: 60px;
    }

    p.testi {
        font-size: 38px;
    }

    p.customer {
        font-size: 18px;
        padding-right: 50px;
    }

    p.testi {
        padding-top: 100px;
    }

    .top-quote-bigger {
        background: url(../images/sprite.png) no-repeat -226px -50px;
        width: 82px;
        height: 61px;
    }

    .bottom-quote-bigger {
        bottom: -80px;
        background: url(../images/sprite.png) no-repeat -314px -50px;
        width: 82px;
        height: 61px;
    }

    /*Benifit Css*/
    /*12-06*/
    .benefits .missiontext h1.career-description {
        font-size: 50px;
        line-height: 50px;
    }

    /*18-06*/
    .spot.white {
        background: rgba(252, 252, 253, 0.1);
        display: table;
        border: 4px solid #fff;
        padding: 0 20px;
        margin-right: 0;
        box-sizing: border-box;
    }

    /*17-06*/
    .videobg div.play {
        font-size: 40px;
    }

    .videobg div.play a {
        font-size: 40px;
    }

    .our-vision-section .each-block,
    .our-purpose-section .each-block {
        min-height: 484px;
    }

    .members {
        margin: 0 auto;
        width: 77%;
    }

    .members .each-detail.last {
        display: block
    }

    /*12/10/2015*/
    .searchsection input {
        font-size: 25px;
        width: 95%;
        padding: 22px 0 22px 13px;
    }

    .searchsection .cross {
        margin-top: 32px;
        margin-right: 13px;
    }

    /*12/10/2015*/
    .safari .first-section .videobg {
        height: 100.2%;
    }
}


@media screen and (min-width:1200px) {
    /*.navbar-fixed-top{background:gray;}*/

}

/* START .home-spot-container class implementation */
@media screen and (max-width: 960px) {
	.group.flex.home-spot-container {
		flex-direction: column;
		width: 100%;	
	}

	.group.flex.home-spot-container > div {
		max-width: 100%;
		flex:1;
	}

	.group.flex.home-spot-container article.spot {
		height: 300px;
		margin: 0;
	}
}

@media screen and (max-width: 640px) {
	.group.flex.home-spot-container article.spot {
		height: 200px;
	}
}

@media screen and (max-width: 480px) {
	.group.flex.home-spot-container article.spot {
		height: 170px;
	}
}

@media screen and (max-width: 360px) {
	.group.flex.home-spot-container article.spot {
		height: 150px;
	}
}
/* END .home-spot-container class implementation */

/*  Press Release post */

article.category-press-release img {
    max-width: 100%;
    height: 100%;
}
