/*==============================================================

 * HAYMARKET MEDIA LIST PORTAL CUSTOM PAGE STYLES
 * Copyright (c) 2017, Steve Monfils Creative
 * Author: Steve Monfils
 * stevemonfilscreative.com

============================================================== */


/* =================================
    GLOBAL
================================= */

body {
    font-family: 'helv-neue-light', Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #58595b;
    overflow-x: hidden;
    
    text-rendering: optimizeLegibility;
	text-rendering: geometricPrecision;
	font-smooth: always;
	
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	padding-top: 100px;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

h1 {
    font-family: 'helv-neue-thin', Arial, sans-serif;
}

h2 {
    font-family: 'helv-neue-thin', Arial, sans-serif;
    color: #004b85;
    font-size: 40px;
}

h3 {
    font-family: 'helv-neue', Arial, sans-serif;
}


.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}


a, a:hover, a:active, a:focus {
	outline: none;
}

a.button {
    font-family: 'helv-neue-cond', Arial, sans-serif;
    text-transform: uppercase;

    -moz-transition: background 0.3s, color 0.3s, border 0.3s;
    -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
    -o-transition: background 0.3s, color 0.3s, border 0.3s;
    -ms-transition: background 0.3s, color 0.3s, border 0.3s;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

a.button:hover {
    -moz-transition: background 0.3s, color 0.3s, border 0.3s;
    -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
    -o-transition: background 0.3s, color 0.3s, border 0.3s;
    -ms-transition: background 0.3s, color 0.3s, border 0.3s;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

a.button:hover,
a.button:active,
a.button:focus {
    text-decoration: none;
}

button, button:hover, button:active, button:focus {
    outline: none;
}


::-moz-selection { background: #2d96e7; color: #fff; }
::selection { background: #2d96e7; color: #fff; }


@media (max-width: 767px) {
    
    .mobile-hide {
        display: none;
    }
    
}

@media (min-width: 768px) {

	.desktop-hide {
		display: none;
	}
	
}




/* =================================
    TRANSITIONS
================================= */

.bg-fade {
	-moz-transition: background .3s;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    -ms-transition: background .3s;
    transition: background .3s;
}

.color-fade {
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-o-transition: color 0.3s;
	-ms-transition: color 0.3s;
    transition: color 0.3s;
}

.bg-color-fade {
    -moz-transition: background 0.3s, color 0.3s, border 0.3s;
    -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
    -o-transition: background 0.3s, color 0.3s, border 0.3s;
    -ms-transition: background 0.3s, color 0.3s, border 0.3s;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

.bg-color-border-fade {
	-moz-transition: background .3s, color 0.3s, border 0.3s;
    -webkit-transition: background .3s, color 0.3s, border 0.3s;
    -o-transition: background .3s, color 0.3s, border 0.3s;
    -ms-transition: background .3s, color 0.3s, border 0.3s;
    transition: background .3s, color 0.3s, border 0.3s;
}




/* =================================
    MAIN NAV
================================= */

#nav {
    box-shadow: 0px 3px 2px rgba(0,0,0,0.2);
    width: 100%;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 11;
}

#nav .hm-logo {
    float: left;
    margin-top: 20px;
}

#nav .hm-logo img {
    width: 236px;
    height: 60px;
}

#nav .navbar-collapse {
    float: right;
}



#nav .navbar-nav > li > a {
    font-family: 'helv-neue-cond', Arial, sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    color: #004b85;
    padding: 42px 24px 38px;
    background: #fff;
}

#nav .navbar-nav > li > a:hover,
#nav .navbar-nav > li > a:active {
    background: #f2f2f2;
}

#nav .navbar-nav > li > a:focus {
    background: #fff;
}

#nav .navbar-nav > li.nav-home {
    display: none;
}


#nav .navbar-nav > li.current > a {
    background: #f2f2f2;
}

#nav .navbar-nav > li:after {
    visibility: visible;
	display: block;
	content: " ";
	height: 4px;
	width: 100%;
	background: #ee3b33;
	position: absolute;
	bottom: 0;
	
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

#nav .navbar-nav > li.current:after {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}



@media (max-width: 1200px) {
    
    #nav .navbar-nav > li > a {
        font-size: 16px;
        padding: 42px 20px 38px;
    }
    
}

@media (max-width: 991px) {
    
    #nav .hm-logo {
        margin-top: 26px;
    }
    
    #nav .hm-logo img {
        width: 180px;
        height: auto;
    }
    
    #nav .navbar-nav > li > a {
        font-size: 14px;
        padding: 42px 12px 38px;
    }
    
}

@media (max-width: 767px) {
    
    #nav {
        height: 100px;
    }
    
    #nav .col-lg-12 {
        padding: 0;
    }
    
    #nav .hm-logo {
        margin-left: 15px;
    }
    
    #nav .navbar-toggle {
        margin-top: 33px;
        background: #004b85;
    }
    
    #nav .navbar-toggle .icon-bar {
        background: #fff;
    }
    
    #ig-navigation {
        width: 100%;
    }
    
    #nav .navbar-collapse {
        float: none;
    }
    
    #nav .navbar-nav {
        margin-top: 24px;
        background: #fff;
    }
    
    #nav .navbar-nav > li > a {
        padding: 15px 5%;
        font-size: 15px;
        border-top: 1px solid #c5c5c5;
    }
    
}


.mobile-sub-menu {
	position: absolute;
	right: 0;
}

.sub-menu {
	position: absolute;
	top: 100px;
	right: 127px;
	font-family: 'helv-neue', Arial, sans-serif;
	width: 206px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.sub-menu.active {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.sub-menu:hover {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.sub-menu div {
	background: #2988D2;
	text-align: center;
}

.sub-menu div:last-of-type {
	border-top: 1px solid #fff;
}

.sub-menu div a {
	padding: 15px 24px 15px;
	display: block;
	color: #fff;
	-moz-transition: background .3s;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    -ms-transition: background .3s;
    transition: background .3s;
}

.sub-menu div a:hover,
.sub-menu div a:active,
.sub-menu div a:focus {
	text-decoration: none;
	-moz-transition: background .3s;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    -ms-transition: background .3s;
    transition: background .3s;
}

.sub-menu div a:hover {
	background: #3C9DE8;
}


@media (max-width: 1199px) {
	
	.sub-menu {
		right: 112px;
		width: 180px;
	}
	
}

@media (max-width: 991px) {
	
	.sub-menu {
		right: 89px;
		width: 146px;
	}
	
}

@media (max-width: 767px) {
	
	.mobile-sub-menu {
		position: relative;
	}
	
	.sub-menu {
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		visibility: visible;
		opacity: 1;
	}
	
	.sub-menu div a {
		padding: 10px 24px 10px;
		font-size: 14px;
		text-align: left;
	}
	
}




/* =================================
	TO TOP BUTTON
================================= */

.to-top-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 46px;
	height: 46px;
	opacity: 0;
}

@media (max-width: 768px) {
	.to-top-button {
		bottom: 10px;
		right: 10px;
	}
}

.to-top-button a {
	width: 46px;
	height: 46px;
	display: block;
	background: url(../images/to-top-button.png) no-repeat 0 0;
	background-size: 92px 46px;
	
}

.to-top-button span {
	width: 46px;
	height: 46px;
	background: url(../images/to-top-button.png) no-repeat -46px 0;
	background-size: 92px 46px;
	display: inline-block;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.to-top-button:hover span {
	opacity: 1;
}




/* =================================
	HERO
================================= */

#sec1 {
    height: 640px;
    background: #004b85;
}

#sec1 .slider div {
    width: 100%;
    height: 640px;
    background-size: cover;
}

@media (min-width: 1800px) {
    
    #sec1 {
        height: 800px;
    }
    
    #sec1 .slider div {
        height: 800px;
    }
    
}

@media (min-width: 2100px) {
    
    #sec1 {
        height: 1000px;
    }
    
    #sec1 .slider div {
        height: 1000px;
    }
    
}

#sec1 .slide1 {
    background: url('../images/slider_1.jpg') no-repeat center center;
}
#sec1 .slide2 {
    background: url('../images/slider_2.jpg') no-repeat center center;
}
#sec1 .slide3 {
    background: url('../images/slider_3.jpg') no-repeat center center;
}
#sec1 .slide4 {
    background: url('../images/slider_4.jpg') no-repeat center center;
}
#sec1 .slide5 {
    background: url('../images/slider_5.jpg') no-repeat center center;
}

.slick-prev {
    text-indent: -5000px;
    position: absolute;
    top: 280px;
    left: 30px;
    z-index: 9;
    width: 30px;
    height: 54px;
    background: url('../images/slider-ui_left.png') no-repeat;
    background-size: 30px 54px;
    border: none;
    
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.slick-prev:hover {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}


.slick-next {
    text-indent: -5000px;
    position: absolute;
    top: 280px;
    right: 30px;
    z-index: 9;
    width: 30px;
    height: 54px;
    background: url('../images/slider-ui_right.png') no-repeat;
    background-size: 30px 54px;
    border: none;
    
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.slick-next:hover {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}


@media (min-width: 1800px) {
    
    .slick-prev {
        top: 355px;
    }
    
    .slick-next {
        top: 355px;
    }
    
}

@media (min-width: 2100px) {
    
    .slick-prev {
        top: 450px;
    }
    
    .slick-next {
        top: 450px;
    }
    
}


ul.slick-dots {
    list-style: outside none;
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0 auto;
    width: 106px;
}

.slick-dots li {
    float: left;
}

.slick-dots li > button {
    text-indent: -5000px;
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    background: url('../images/slider-ui_dot.png');
    background-size: 14px;
    margin-right: 9px;
}

.slick-dots li:last-of-type > button {
    margin-right: 0;
}

.slick-dots li.slick-active > button {
    background: url('../images/slider-ui_dot-active.png');
    background-size: 14px;
}


#sec1 .hero-content {
    position: absolute;
    top: 340px;
    z-index: 9;
    color: #fff;
    font-size: 30px;
    text-align: center;
    width: 100%;
    padding: 0 100px;
}

#sec1 .hero-content h1 {
    font-size: 56px;
}


@media (min-width: 1800px) {
    
    #sec1 .hero-content {
        top: 400px;
    }
    
}

@media (min-width: 2100px) {
    
    #sec1 .hero-content {
        top: 490px;
    }
    
}

@media (max-width: 1199px) {
    
    #sec1 .hero-content {
        font-size: 24px;
    }
    
}

@media (max-width: 992px) {
    
    #sec1 {
        height: 500px;
    }
    
    #sec1 .slider div {
        height: 500px;
    }
    
    #sec1 .slick-prev {
        top: 215px;
    }
    
    #sec1 .slick-next {
        top: 215px;
    }
    
    #sec1 .hero-content {
        top: 275px;
    }
    
    #sec1 .hero-content h1 {
        font-size: 46px;
        padding-bottom: 15px;
    }
    
}



@media (max-width: 767px) {
    
    #sec1 {
        height: 400px;
    }
    
    #sec1 .slider div {
        height: 400px;
        background-size: 1360px auto;
    }
    
    #sec1 .slide1 {
        background: url('../images/slider_1.jpg') no-repeat 70% -10px;
    }
    
    #sec1 .slide2,
    #sec1 .slide3,
    #sec1 .slide4,
    #sec1 .slide5 {
        display: none;
    }
    
    #sec1 .hero-content {
        padding: 0 20%;
        top: 184px;
    }
    
}


@media (max-width: 467px) {
    
    #sec1 {
        height: 300px;
    }
    
    #sec1 .slider div {
        height: 300px;
        background-size: 1040px auto;
    }
    
    #sec1 .slide1 {
        background: url('../images/slider_1.jpg') no-repeat 75% -10px;
    }
    
    #sec1 .hero-content {
        padding: 0 15px;
        top: 136px;
    }
    
}




/* =================================
	INTRO
================================= */

#sec2 {
    padding: 72px 0 82px;
}

@media (max-width: 767px) {
    
    #sec2 {
        padding: 42px 0 52px;
    }
    
}

#sec2 h2 {
    padding-bottom: 24px;
}

#sec2 p {
    font-size: 18px;
    line-height: 27px;
    margin: 0;
    padding: 0;
}


#sec2 .channels {
    margin: 40px 0 42px;
    background: #f2f2f2;
    border-radius: 8px;
}

#sec2 .col-sm-3 {
    padding: 30px 15px 36px;
    border-right: 4px solid #fff;
    text-align: center;
}

#sec2 .col-sm-3:first-of-type {
    padding-left: 30px;
}

#sec2 .col-sm-3:last-of-type {
    border-right: none;
    padding-right: 30px;
}

#sec2 .col-sm-3 img {
    margin: 0 auto 15px;
    width: 70px;
    height: auto;
}

#sec2 .channel-count {
    font-size: 36px;
    line-height: 40px;
    color: #004b85;
    font-family: 'helv-neue-bold', Arial, sans-serif;
}

#sec2 .channel-name {
    font-size: 22px;
    color: #808285;
    font-family: 'helv-neue', Arial, sans-serif;
}

#sec2 .channel-cta {
    margin-top: 18px;
}

#sec2 .channel-cta a {
    background: #c5c5c5;
    color: #fff;
    padding: 18px 34px 14px;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    border-radius: 8px;
}

#sec2 .channel-cta a:hover {
    background: #2d96e7;
}


@media (max-width: 1199px) {
    
    #sec2 .channel-name {
        font-size: 18px;
    }
    
}

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

    #sec2 .col-sm-3 {
        width: 50%;
    }
    
    #sec2 div.col-sm-3:nth-child(1) {
        border-bottom: 4px solid #fff;
        padding-left: 30px;
    }
    
    #sec2 div.col-sm-3:nth-child(2) {
        border-bottom: 4px solid #fff;
        padding-right: 30px;
    }
    
    #sec2 div.col-sm-3:nth-child(2) {
        padding-left: 30px;
    }
    
    #sec2 div.col-sm-3:nth-child(4) {
        padding-right: 30px;
    }
    
}

@media (max-width: 767px) {
    
    #sec2 .col-sm-3 {
        padding-left: 15px;
        padding-right: 15px;
        border-bottom: 4px solid #fff;
        border-right: none;
    }
    
    #sec2 .col-sm-3:last-of-type {
        border-bottom: none;
    }
    
    #sec2 p {
        font-size: 15px;
        line-height: 22px;
    }
    
}





/* =================================
	DATACARD GLOBAL STYLES
================================= */

.datacard {
    margin-top: 36px;
}

.datacard .dc-wrap {
    text-align: center;
    border-radius: 8px;
}


.dc-logo {
    border-bottom: 1px solid #d9d9d9;
}

.dc-logo img {
    width: 100%;
    height: auto;
    max-width: 370px;
}


.dc-description {
    height: 116px;
    display: table-cell;
    vertical-align: middle;
    padding: 0 5%;
}


.dc-cta a {
    float: left;
    width: 50%;
    display: inline-block;
    padding: 26px 0 24px;
    background: #c5c5c5;
    color: #fff;
}

.dc-cta a:hover,
.dc-cta a:active,
.dc-cta a:focus {
    background: #2d96e7;
}

.dc-cta a:first-of-type {
    border-bottom-left-radius: 8px;
    border-right: 1px solid #e0dfdf;
}

.dc-cta a:last-of-type {
    border-bottom-right-radius: 8px;
    border-left: 1px solid #e0dfdf;
}


@media (max-width: 1199px) {
    
    .dc-description {
        font-size: 14px;
    }
    
    .dc-cta a {
        padding: 22px 0 20px;
    }
    
}

@media (max-width: 991px) {
    
    .dc-description {
        font-size: 12px;
    }
    
    .dc-cta a {
        padding: 18px 0 14px;
    }
    
}

@media (max-width: 767px) {
    
    .datacard {
        margin-top: 0px;
    }
    
    .datacard .col-sm-4 {
        margin-top: 36px;
    }
    
    .dc-description {
        height: auto;
        display: block;
        padding: 26px 15px;
        font-size: 15px;
    }
    
    .dc-cta a {
        padding: 22px 0 20px;
    }
    
}

@media (max-width: 767px) {
    
    .dc-cta a {
        padding: 18px 0 16px;
    }
    
}



/* =================================
	MEDICAL MEDIA
================================= */

#sec3 {
    padding: 82px 0 100px;
    background: #f2f2f2;
}

@media (max-width: 767px) {
    
    #sec3 {
        padding: 42px 0 52px;
    }
    
}

#sec3 h2 {
    margin-bottom: 10px;
}


#sec3 .datacard .dc-wrap {
    background: #fff;
}



/* =================================
	BUSINESS MEDIA
================================= */

#sec4 {
    padding: 82px 0 100px;
}

@media (max-width: 767px) {
    
    #sec4 {
        padding: 42px 0 52px;
    }
    
}

#sec4 h2 {
    margin-bottom: 10px;
}


#sec4 .datacard .dc-wrap {
    background: #f2f2f2;
}



/* =================================
	TARGETED DATABASES
================================= */

#sec5 {
    padding: 82px 0 100px;
    background: #f2f2f2;
}

@media (max-width: 767px) {
    
    #sec5 {
        padding: 42px 0 52px;
    }
    
}

#sec5 h2 {
    margin-bottom: 46px;
}


#sec5 .table-title {
    background: #004b85;
    padding: 18px 0;
}

#sec5 h3 {
    font-size: 24px;
    padding-left: 15px;
    color: #fff;
}


#sec5 .table-wrap {
    padding-left: 15px;
    padding-right: 15px;
}

#sec5 .col-sm-3 {
    padding-left: 0;
    padding-right: 0;
    background: #fff;
}

#sec5 table {
    width: 100%;
    border-right: 1px solid #c5c5c5;
}

#sec5 table.table-1 {
    border-left: 1px solid #c5c5c5;
}

#sec5 td {
    border-bottom: 1px solid #c5c5c5;
    height: 114px;
    padding: 0 15px;
    font-size: 15px;
    font-family: 'helv-neue', Arial, sans-serif;
}


#sec5 .db-cta {
    margin-top: 10px;
}

#sec5 .db-cta a {
    display: inline-block;
    font-size: 15px;
    padding: 10px 0 6px;
    background: #c5c5c5;
    color: #fff;
    border-radius: 4px;
    width: 118px;
    text-align: center;
}

#sec5 .db-cta a:hover,
#sec5 .db-cta a:active,
#sec5 .db-cta a:focus {
    background: #2d96e7;
}

#sec5 .table-margin {
    margin-top: 60px;
}


@media (max-width: 1199px) {
    
    #sec5 td {
        font-size: 14px;
        
    }
    
    #sec5 .db-cta a {
        width: 98px;
    }
    
}

@media (max-width: 991px) {
    
    #sec5 td {
        height: 174px;
        font-size: 13px;
    }
    
    #sec5 .db-cta a {
        width: 100%;
        margin-bottom: 4px;
    }
    
}

@media (max-width: 767px) {
    
    #sec5 table {
        border-right: 1px solid #c5c5c5;
        border-left: 1px solid #c5c5c5;
    }
    
    #sec5 td {
        height: auto;
        padding: 20px 15px;
    }
    
    #sec5 .db-cta a {
        width: 48%;
        float: left;
        margin-right: 2%;
    }
    
    #sec5 .db-cta a:last-of-type {
        margin-right: 0;
    }
    
}



/* =================================
	CONTACT
================================= */

#sec6 {
    padding: 82px 0 100px;
}

@media (max-width: 767px) {
    
    #sec6 {
        padding: 42px 0 52px;
    }
    
}

#sec6 h2 {
    padding-bottom: 20px;
}


#sec6 p {
    font-size: 18px;
    line-height: 27px;
    margin: 0;
    padding: 0;
}


#sec6 .contact-wrap {
    border-radius: 8px;
    background: #f2f2f2;
    margin-top: 42px;
}


#sec6 .contact-row {
    border-bottom: 2px solid #fff;
}

#sec6 .contact-row:last-of-type {
    border-bottom: 0;
}


#sec6 .contact-icon {
    background: #2988d2;
    width: 76px;
    float: left;
    padding: 22px 0;
    text-align: center;
}

#sec6 .contact-icon img {
    width: 25px;
    height: auto;
}

#sec6 .contact-icon.person {
    border-top-left-radius: 8px;
}

#sec6 .contact-icon.email {
    border-bottom-left-radius: 8px;
}


#sec6 .contact-info {
    font-size: 18px;
    padding-left: 20px;
    float: left;
    padding-top: 21px;
}

#sec6 .contact-info a {
    color: #2988d2;
    text-decoration: underline;
}

#sec6 .contact-info a:hover,
#sec6 .contact-info a:active,
#sec6 .contact-info a:focus {
    text-decoration: none;
}

#sec6 .contact-info.name {
    font-size: 27px;
    font-family: 'helv-neue-med', Arial, sans-serif;
    color: #004b85;
    padding-top: 15px;
}


@media (max-width: 991px) {
    
    #sec6 .contact-info {
        font-size: 15px;
        padding-top: 24px;
    }
    
    #sec6 .contact-info.name {
        font-size: 22px;
        padding-top: 18px;
    }
    
}

@media (max-width: 767px) {
    
    #sec6 p {
        font-size: 15px;
        line-height: 22px;
    }
    
}

@media (max-width: 467px) {
    
    #sec6 .contact-icon {
        width: 56px;
        padding: 16px 0;
    }
    
    #sec6 .contact-info {
        font-size: 13px;
        padding-top: 19px;
        padding-left: 15px;
    }
    
    #sec6 .contact-info.name {
        font-size: 18px;
        padding-top: 16px;
    }
    
}



/* =================================
	FOOTER
================================= */

#footer {
    padding: 62px 0 72px;
    color: #fff;
    background: #004b85;
}


#footer .footer-nav a {
    color: #fff;
    text-decoration: underline;
}

#footer .footer-nav a:hover,
#footer .footer-nav a:active,
#footer .footer-nav a:focus {
    text-decoration: none;
}


#footer .copyright {
    text-align: right;
}


@media (max-width: 1199px) {
    
    #footer {
        font-size: 14px;
    }
    
}

@media (min-width: 768px) and (max-width: 991px) {
    
    #footer .col-sm-6:first-of-type {
        width: 70%;
    }
    
    #footer .col-sm-6:last-of-type {
        width: 30%;
    }
    
}

@media (max-width: 767px) {
    
    #footer {
        font-size: 16px;
    }
    
    #footer .footer-nav-item {
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }
    
    #footer .copyright {
        margin-top: 35px;
        text-align: center;
    }
    
}



