/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

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

ol,
ul {
    margin: 0;
    padding: 0;
}

img {
    display: block;
}

a,
button {
    transition: 0.1s linear;
    -webkit-transition: 0.1s linear;
    text-decoration: none;
}

body {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.main-wrpper {
    container-type: inline-size;
    container-name: main-wrpper;
    height: 100%;
    width: 100%;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

h1,
h2 {
    font-family: 'Poppins';
}

.common-section .container {
    max-width: 1045px;
    margin: 0 auto;
    padding: 0 15px;
}

.common-title {
    width: 100%;
    position: relative;
    background-color: #236B95;
    padding: 6px 0px 6px 0px;
    margin: 0;
    text-align: center;
}

.common-title h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 0.01em;
    color: #fff;
    text-transform: uppercase;
}

.comman-section .container {
    max-width: 1045px;
    margin: 0 auto;
    padding: 0 15px;
}

.comman-title {
    width: 100%;
    position: relative;
    background-color: #236B95;
    padding: 6px 0px 6px 0px;
    margin: 0;
    text-align: center;
}

.comman-title h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 0.01em;
    color: #fff;
    text-transform: uppercase;
}

.btn-main {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.2px;
    color: #fff;
    background-color: #87A097;
    text-align: center;
    padding: 12px 24px;
    transition: all .3s;
    position: relative;
    display: table;
    cursor: pointer;
}

.btn-main::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 6px;
    background-color: #F69364;
    opacity: 0;
    transition: all .3s;
}

.btn-main:hover {
    background-color: #4B89BD;
}

.btn-main:hover::after {
    opacity: 1;
}

.common-section {
    position: relative;
    width: 100%;
    height: 100%;
}

.comman-section {
    position: relative;
    width: 100%;
    height: 100%;
}

.hover-show {
    transition: all .3s;
    position: relative;
}

.hover-show:hover {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}

.border-0{
    border: 0 !important;
}

.custom-row{
    width: 100%;
    position: relative;
    display: flex;
}
.custom-col-50{
    width: 50%;
    position: relative;
}

.align-items-center{
    align-items: center;
}


/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: #fff; 
	background:transparent;
    padding: 0 0;
    z-index: 120;
    box-shadow: 0px 0px 10px 0px rgba(210.79999999999998, 210.34173913043475, 210.34173913043475, 0.5);
	background:transparent;
	box-shadow:none;
    transition: 0.1s linear;
    -webkit-transition: 0.1s linear;
}

header.nav-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
	background: rgba(256, 256,256,0.95); 
	box-shadow: 0px 0px 10px 0px rgba(210.79999999999998, 210.34173913043475, 210.34173913043475, 0.5);
    /*animation: slideDown 0.35s ease-out;*/
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo-box img {
    max-width: 100%;
    height: 70px;
}

.nav-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
}

.navbar-rw {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
}

.topbar {
    width: 100%;
}

.topbar ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
}

.topbar ul li {
    margin: 0;
}

.topbar ul li a {
    padding: 5px 10px;
    display: block;
    /*background: #e3f3f7;
	color: #236b95;
	*/
	color: #f7fafc;
    position: relative;
    font-size: 11px;
    font-weight: 600;
    font-family: "Inter Tight", Sans-serif;
	letter-spacing:1px;
    line-height: 0.8em;
	padding-bottom:6.6px;
	padding-left:8px;
	padding-right:8px;
	padding-top:8px;
	margin-right:6px;
		background: #236b95;
		border-bottom-left-radius:6px;
	border-bottom-right-radius:6px;
}
header.nav-new .topbar ul li a {
	background: #236b95;
	color: #f7fafc;
	margin-right:6px;
	border-bottom-left-radius:6px;
	border-bottom-right-radius:6px;
}

/*.topbar ul li a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background: #F69364;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: .1s linear;
    -webkit-transition: .1s linear;
}*/

.topbar ul li a:hover {
    color: #ffffff;
	background:#72c2d6;
}

.topbar ul li a:hover:after {
    opacity: 1;
    visibility: visible;
}

.menulist ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
}

.menulist ul li {
    margin-right: 25px;
}

.menulist ul li:last-child {
    margin: 0;
}

.menulist ul li a {
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    /*color: #236b95;*/
	color:white;
    display: block;
    letter-spacing: 0;
    padding: 5px 0;
    text-transform: uppercase;
    position: relative;
}

@media (max-width: 991px) {
.menulist ul li a {color: #236b95;
	}}


@media (max-width: 991px) {
.menulist ul ul li a {
color: #236b95;
	  padding-left: 20px;
  line-height: 1.3em;
}}

.menulist ul ul li a {
  color: #236b95;
	line-height: 1.3em;}

.menulist ul ul li a:hover {
color: #236b95;

}

header.nav-new .menulist ul li a {
	color: #236b95;


}

.menulist {
    position: relative;
    top: 10px;
}

.menulist ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 5px;
    background-color: #72c2d6;;
    display: none;
}

.menulist ul li.active a::after {
    display: block;
}

.menulist ul li a:hover {
    color: #ffffff;

}

@media (max-width: 991px) {
.menulist ul li a:hover  {color: #236b95;
	}}

.menulist ul li a:hover::after {
    background-color: #72c2d6;
    display: block;
}

.navbar-toggler {
    border: none;
    background-color: #fff;
    color: #236B95;
    cursor: pointer;
    font-size: 20px;
    padding: 3px 8px;
    display: none;
    margin: auto 0 auto auto;
	border-radius:5px
}

.navbar-toggler:hover {
	  color: #72c2d6;
}


.navbar-toggler.active {
    background-color: #72c2d6;
	color:#fff;
}

.navbar-toggler.active:hover {
    background-color: #72c2d6;
	color: #236B95;
}

/* **** End Header **** */


/* **** Banner Section **** */
.banner {
    width: 100%;
    position: relative;
    background-color: #236B95;
    border-bottom: 5px solid #F69364;
    padding: 90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-top: 70px;*/
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.47;
    background: url(../images/banner-bg-map.svg) 0 0 no-repeat;
    background-position: top left;
    z-index: 0;
}

.banner-inner {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    position: relative;
}

.banner-inner h1 {
    font-family: "Poppins", Sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-transform: none;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    color: #fff;
}

/* **** End Banner Section **** */

/* **** Explorer Section **** */
.explorer {
    margin: 25px 0;
}

.explorer-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

.content-data {
    width: 50%;
    padding: 30px 30px 10px 30px;
}

.content-data p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5em;
    color: #404040;
    margin: 0 0 15px 0;
}

.content-data p a {
    color: #236B95;
    text-decoration: underline;
}

.data-img {
    width: 50%;
}

.data-img img {
    width: 100%;
}

.content-data .btn-main {
    margin: 55px auto 0;
}

/* **** End Explorer Section **** */

/* **** Topics Section **** */
.topics {
    margin: 25px 0;
}

.topics-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

/* **** End Topics Section **** */

/* **** Updates Section **** */
.updates {
    margin: 25px 0;
}

.updates-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

.updates-inner .content-data {
    width: 100%;
    padding-bottom: 0;
}

.updates-box li {
    /*width: 100%;
    /*display: flex;
    align-items: center;
    margin: 2px 0;*/
	width: 100%;
    display: grid;
    align-items: center;
    margin: 2px 0 10px;
    grid-template-columns: 36px auto;
    gap: 10px;
    vertical-align: middle;
}

.updates-box li span {
    width: 36px;
    height: 36px;
    position: relative;
    display: block;
    margin-right: 15px;
}
.updates-box li span img{width:36px; height:auto; object-fit:cover; max-width:100%; max-height:100%;}

.updates-box li a {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: underline;
    line-height: 1.2em;
    letter-spacing: 0em;
    color: #236B95;
    transition: color 0.3s;
    margin: 0 15px 0 0;
}

.updates-box li p {
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
    color: #87a097;
    display: flex;
    align-items: center;
	margin:0px;
}

/* **** End Updates Section **** */

/* **** Agency Section **** */
.agency {
    margin: 25px 0;
}

.agency-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

.agency-box {
    position: relative;
    width: 50%;
    padding-bottom: 10px;
}

.agency-box li {
    display: flex;
    align-items: center;
    position: relative;
    padding: 9px 0;
}

/*.agency-box li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #F69364;
    transition: .1s linear;
    -webkit-transition: .1s linear;
    opacity: 0;
} */

/*.agency-box li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(-90deg, #4B89BD26 0%, #FFFFFF 31%);
    transition: .1s linear;
    -webkit-transition: .1s linear;
    z-index: -1;
    opacity: 0;
}*/

/*.agency-box li:hover::after,
.agency-box li:hover::before {
    opacity: 1;
}*/

.agency-box-img {
    width: 100%;
    max-width: 85px;
    margin-right: 15px;
}

.agency-box-img img {
    width: 100%;
}

.agency-box-data h2 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 0;
	padding-bottom:5px;
}


.agency-box-data p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3em;
		padding-bottom:5px;
}

.agency-box-data a {
    color: #236B95;
}

/* **** End Agency Section **** */

/* **** Portal Section **** */
.portal {
    margin: 35px 0 0;
    width: 100%;
    background-color: #E3F3F7;
    border-top: 8px solid #72C2D6;
    padding: 30px 0 25px;
}

.portal-inner {
    position: relative;
    width: 100%;
    display: flex;
    height: 100%;
}

.portal-inner-box {
    position: relative;
    width: 50%;
    padding-right: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5em;
    color: #236B95;
    letter-spacing: 0;
}

.portal-inner-box p a {
    color: #236B95;
    text-decoration: underline;
}

.portal-link {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.portal-link a {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5em;
    color: #236B95;
    letter-spacing: 0;
    text-decoration: underline;
    padding: 0 8px;
    border-right: 2px solid #cccccc;
}

.portal-link a:last-child {
    border: none;
}

/* **** End Portal Section **** */

/* **** Footer **** */
footer {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #236B95;
    padding: 30px 0 0;
    border-top: 4px solid #F69364;
}

.footer-title {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #72C2D6;
    text-align: center;
    padding-bottom: 10px;
}

.footer-title h2 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0em;
    color: #fff;
}

.footer-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: baseline;
}

.footer-inner-box {
    width: 50%;
    margin-top: 20px;
    list-style: none;
}

.footer-inner-box li {
    margin-bottom: 8px;
}

.footer-inner-box li a figure {
    width: 27px;
    height: 27px;
    margin-right: 8px;
}

.footer-inner-box li a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    color: #fff;
    display: flex;
    align-items: center;
}

.footer-text-line {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5em;
    color: #fff;
    letter-spacing: 0;
    margin: 30px 0;
}

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

.user-link {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.user-link a {
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: underline;
}

.footer-contact {
    width: 85%;
	max-width:900px;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
	justify-content:center;
}

.contact-form {
    width: 40%;
}

.contact-form h2 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    color: #fff;
    margin-bottom: 13px;
    text-align: center;
}

.contact-form h2 a {
    color: #fff;
    text-decoration: underline;
}

.contact-form .form-group {
    position: relative;
    width: 100%;
    margin: 5px 5px 5px 0;
}

.contact-form .form-control {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    color: #EBEDF0;
    min-height: 33px;
    padding: 4px 12px;
    border-radius: 2px;
    background-color: #236B95;
    border: 1px solid #A3BBD6;
    width: 100%;
}

.contact-form .form-control::placeholder {
    color: #7d9eb1;
}

.contact-form .input-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-form .input-col .form-group:last-child {
    margin-right: 0;
}

.contact-form .btn {
    border-radius: 5px 5px 5px 5px;
    padding: 0px 10px 0px 10px;
    border: 1px solid #fff;
    background-color: #72C2D6;
    font-size: 1.1rem;
    color: #ffffff;
    min-height: 40px;
    cursor: pointer;
    margin: 0 auto;
    display: block;
}

.contact-form .btn:hover {
    background-color: #F69364;
}

.social-media {
    width: 55%;
	width:80%;
}

.social-media ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    list-style: none;
}

.social-media ul li {
    margin: 0 15px;
}

.social-media ul li a {
    color: #fff;
    font-size: 25px;
}

.social-media ul li a img {
    width: 25px;
    filter: invert(1);
}

.social-media p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    color: #fff;
    margin-bottom: 30px;
}

.social-media p a {
    color: #fff;
    text-decoration: underline;
}

.social-media p:last-child {
    line-height: 100%;
}

.social-media p span {
    font-size: 12px;
}

.copyright {
    width: 100%;
    background-color: #FFFFFF;
    position: relative;
    padding: 15px 0;
    margin-top: 30px;
}

.copyright .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leftlogo img {
    height: 50px;
}

.rightlink p {
    font-size: 12px;
    font-weight: 500;
    line-height: 1em;
    color: #404040;
}

.rightlink p a {
    color: #236B95;
    text-decoration: underline;
}

/* **** End Footer **** */


/* ********************** Marine Transportation Page ********************** */

/* **** Marine Transportation Banner **** */
.marine-banner {
    width: 100%;
    height: 100%;
    background: url(../images/marine-banner-bg.jpg) 0 0 no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 0;
    position: relative;
}

.marine-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 26px;
    background: url(../images/shape.svg) 0 0 no-repeat;
    background-size: cover;
    filter: invert(1);
}

.marine-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marine-banner-inner img {
    width: 79px;
    border: 2px solid #FFFFFF;
    border-radius: 79px;
    margin-right: 10px;
}

.marine-banner-inner h1 {
    font-family: "Poppins", Sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1em;
    letter-spacing: 0.03em;
    color: #FFFFFF;
}

/* **** End Marine Transportation Banner **** */

/* **** Marine Transportation breadcrumb **** */
.breadcrumb {
    width: 100%;
    position: relative;
    margin-top: 15px;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb ul li {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1em;
    color: #404040;
    margin: 0 1px;
}

.breadcrumb ul li a {
    color: #236B95;
    text-decoration: underline;
}

/* **** End Marine Transportation breadcrumb **** */

/* **** Marine Transportation Overview Section **** */
.overview {
    position: relative;
    width: 100%;
    padding-top: 20px;
}

.overview-inner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.overview-data p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    color: #404040;
    padding: 10px;
}
.overview-data ul{
    padding-left: 30px;
}

.common-title-secondary {
    width: 100%;
    padding: 6px 0;
    border-bottom: 3px solid #72C2D6;
}

.common-title-secondary h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    color: #236B95;
}

.common-title-secondary h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    color: #236B95;
}

.comman-title-secondry {
    width: 100%;
    padding: 6px 0;
    border-bottom: 3px solid #72C2D6;
}

.common-title-secondary h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    color: #236B95;
}

.comman-title-secondry h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    color: #236B95;
}


.data-box {
    position: relative;
}

.data-box-inner {
    width: 85%;
    border: 1px solid #72C2D6;
    background-color: #F6FBFC;
    margin: 0 auto;
}

.data-box-inner h2 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    color: #fff;
    background-color: #72C2D6;
    padding: 6px 0;
    text-align: center;
}

.data-box-inner ul {
    padding: 15px 10px 10px 10px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4em;
    color: #404040;
    text-align: center;
    list-style: none;
}

.data-box-inner ul li {
    margin-bottom: 15px;
}

/* **** End Marine Transportation Overview Section **** */

/* **** Marine Transportation Subtopics Section **** */
.subtopics{
    margin-top: 35px;
}
.subtopics-inner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}
.subtopics-inner-data {
    position: relative;
    width: 36%;
    padding: 10px;
}
.subtopics-inner-data h2{
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    line-height: 1.2em;
    letter-spacing: 0em;
    color: #236B95;
    margin-bottom: 5px;
}
.subtopics-inner-data h2 span{
    font-weight: normal;
    font-size: .9rem;
}
.subtopics-inner-data ul{
    font-weight: 400;
    color: #404040;
    padding-left: 20px;
    margin-bottom: 10px;
	line-height:1.5em;
}
.subtopics-inner-img{
    position: relative;
    width: 64%;
}
.subtopics-inner-img img{
    width: 100%;
}
.subtopics-accordion .accordion-toggle {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1em;
    color: #236B95;
    padding: 10px;
}
.subtopics-accordion .accordion-toggle.active{
    background-color: #E3F3F7;
}
.subtopics-accordion .accordion-content {
    display: none;
    border: 2px solid #E3F3F7;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2em;
    color: #404040;
}
.subtopics-accordion .accordion-content p{
    margin-bottom: 10px;
}
.subtopics-accordion .accordion-content.default {
    display: block;
}
.subtopics-accordion .accordion-toggle:before {
    content: "\f105";
    font-family: FontAwesome;
	/*font-family:"Font Awesome 5 Pro";*/
    margin-right: 10px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

.subtopics-accordion .active:before {
    content: "\f107";
    font-family: FontAwesome;
	/*font-family:"Font Awesome 5 Pro";*/
    margin-right: 10px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
}
.subtopics-link{
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5em;
    text-decoration: underline;
    color: #236B95;
    margin: 10px 0 40px;
    display: block;
}
.subtopics-text{
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5em;
    color: #404040;
    margin: 10px 0;
}
.subtopics-text a{
    color: #236B95;
    text-decoration: underline;
}

/* **** End Marine Transportation Subtopics Section **** */
.marine-page .updates-box{
    margin: 20px 0 50px;
}
.marine-page .updates-box li span{
    width: 25px;
    height: 25px;
    display: inline-flex;
}
.marine-page .updates-box li span svg{
    fill: #72C2D6;
    transition: fill 0.3s;
}
.marine-page .updates-box li{
    margin: 10px 0;
}

/* ********************** End Marine Transportation Page ********************** */

/* ********************** Obtain Data Page ********************** */

/* ******* Obtain Data Page Banner ******* */
.obtain-page .banner{
  /*  background-image: url(../images/obtain-banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
    margin-bottom: 0px;
	padding:120px 0;
	background-image:none!important;
	background-color:transparent!important;
	border:none;
}


.obtain-page .banner-inner h1{
    text-shadow: 0px 0px 8px #000000;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.obtain-page { 
	background-image: url(/wp-content/uploads/obtain-page-bkgd.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: top;
	padding-bottom:100px;
}

/* ******* Obtain Data Page Banner ******* */
.obtain-page .overview-data {
	background-color: white;
  padding: 20px;
  border-radius: 9px;
}

.obtain-page .overview-inner {
	margin-bottom:50px;
}

.obtain-page .human-dimensions  .comman-section {
	margin-top:100px;
}

.obtain-box{
    width: 50%;
}
.obtain-box-inner{
    padding: 25px 35px 20px 28px;
    background-color: #F6FBFC;
    border-left: 5px solid #BBE2EC;
    width: 85%;
    margin: 0 auto;
}
.obtain-box-inner p{
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4em;
    color: #236B95;
    margin-bottom: 13px;
}
.human-dimensions{
    position: relative;
    width: 100%;
    margin-top: 100px;

}

.human-dimensions .common-title-secondary h2{
    text-align: center;
}


.human-dimensions .comman-title-secondry h2{
    text-align: center;
	color:#ffffff;
}
.human-dimensions-dec{
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5em;
    color: #404040;
    /*margin-bottom: 10px;*/
    padding: 20px 30px 0px 10px;
}

.obtain-page-inner{
    width: 100%;
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
}

/*.obtain-icon-box{
    position: relative;
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 25px 0 45px;
}*/

.obtain-icon-box {
  position: relative;
  width: 49%;
  display: flex;
  align-items: center;
  justify-content: center;
	flex-direction: column;
	background-color: #f2f7f9;
}

.obtain-icon{
    width: 85px;
    height: 85px;
    margin-bottom: 8px;
}
.obtain-icon img{
    width: 100%;
}
.obtain-title h2{
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0em;
    color: #A7A9AC;
}
.aquaculture-color h2{
    color: #4B89BD;
}
.recreation-color h2{
    color: #F27169;
}
.security-color h2{
    color: #F69364;
}
.marine-color h2{
    color: #236B95;
}
.energy-color h2{
    color: #72C2D6;
}
.culture-color h2{
    color: #696868;
}
.fishing-color h2{
    color: #87A097;
}
.mammals-color h2{
    color: #E2D268;
}
.restoration-color h2{
    color: #95B378;
}
.water-color h2{
    color: #8ED1C4;
}
.obtain-link p{
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: underline;
    line-height: 1.4em;
    color: #236B95;
    margin: 2px 0 8px;
	display:none;
}
.obtain-icon-box .subtopics-accordion .accordion-toggle:before{
   /* content: '\f138';*/
	 content: '\f150';
	margin-right:0;
	font-size:26px;
	padding-top:30px;
}
.obtain-icon-box .subtopics-accordion .active:before{
   /* content: '\f078';*/
	    content: '\f151 ';
}
.obtain-icon-box .subtopics-accordion .accordion-toggle{
    padding: 5px;
    text-align: center;
}
.obtain-icon-box .subtopics-accordion .accordion-toggle.active{
    background-color: #F7F8F8;
}
.obtain-icon-box .subtopics-accordion .accordion-content{
    border-style: solid;
    border-width: 0px 2px 2px 1px;
    border-color: #F7F8F8;
}

.obtain-icon-box .accordion-content h2{
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4em;
    color: #404040;
}

.obtain-page h4.accordion-toggle {
font-size:0;
	color:#236b95;
}

.obtain-icon-box .accordion-content p{
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4em;
    color: #404040;
    margin: 0;
}
.obtain-icon-box .accordion-content p a{
    color: #236B95;
    text-decoration: underline;
}
.obtain-icon-box .accordion-content ul{
    padding-left: 15px;
    margin-bottom: 10px;
}
.obtain-icon-box .accordion-content ul li{
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4em;
    color: #404040;
}
.mb-0{
    margin-bottom: 0 !important;
}
/*.marine-life .obtain-icon-box{
    border: 2px dotted #BDBCBC;
    padding: 25px 5px;
    margin: 10px 0;
}*/

.marine-life .obtain-icon-box{
border: 1px solid #BDBCBC;
  padding: 25px 5px;
  margin: 10px 0;
	border-radius:10px;
}

.human-dimensions .obtain-icon-box{
border: 1px solid #BDBCBC;
  padding: 25px 5px;
  margin: 10px 0;
	border-radius:10px;
}

.environment{
    margin-bottom: 60px;
}
/* ********************** End Obtain Data Page ********************** */

/* ********************** About Page ********************** */

.about-page .banner{
    background-image: url(../images/about-credit-thierry.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 40px;
}
.about-page .banner-inner h1{
    text-shadow: 0px 0px 8px #000000;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}
.about-fig{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.about-fig-inner{
    width: 90%;
    margin: 0 auto;
}
.about-fig-inner img{
    width: 100%;
}
.about-fig-inner figcaption{
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.4em;
    font-style: italic;
}

.common-subtitle{
    margin-top: 30px;
}
.common-subtitle h2{
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: none;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    color: #236B95;
}


.comman-subtitle{
    margin-top: 30px;
}
.comman-subtitle h2{
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: none;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    color: #236B95;
}

.obtain-box-inner h2{
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4em;
    color: #236B95;
}
.obtain-box-inner ul{
    padding-left: 15px;
}
.obtain-box-inner ul li::marker{
    color: #236B95;
}

.tab-container{
	width: 80%;
    margin: 65px auto;
}
.tab-container .tab-menu ul{
	margin: 0;
	padding: 0;
}
.tab-container .tab-menu ul li{
	list-style-type: none;
	display: inline-block;
}
.tab-container .tab-menu ul li a{
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1em;
    background-color: #72C2D6;
    color: #fff;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
}
.tab-container .tab-menu ul li a.active-a{
	background-color: #4B89BD;
}
.tab-container .tab-menu ul li a:hover{
    background-color: #F69364;
}
.tab-container .tab{
	display: none;
    padding: 30px;
    border: 2px solid #72C2D6;
    margin-top: 15px;
}
.tab-container .tab p{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4em;
    color: #404040;
    margin-bottom: 10px;
}
.tab-container .tab ul{
    padding-left: 50px;
}
.tab-container .tab-active{
	display: block;
}
.tab-container .tab img{
    margin: 0 auto;
    width: 80%;
}
.video{
    margin: 0 0 70px;
}
.video-inner,
.video-iframe{
    height: 100%;
    width: 100%;
    display: flex;
    border: none;
    background-color: #000;
    position: relative;
    aspect-ratio: 1.777;
}
/* ********************** End About Page ********************** */

/* ********************** Updates Page ********************** */
.updates-page .banner{
    background-image: url(../images/update-banner-bg.jpg);
    border: 0;
    padding: 170px 0;
    background-position: center;
    background-size: 67%;
    background-repeat: no-repeat;
    background-color: transparent;
}
.updates-page .banner::before{
    display: none;
}

.updates-page .banner-inner h1{
    font-family: "Poppins", Sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: none;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
    color: #fff;
}
.updates-page .overview-data p{
    font-size: 1.1rem;
}
.updates-full-date h4{
    color: #797777;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5em;
    padding: 20px 10px 2px;
}

.updates-birds-box{
    position: relative;
    width: 85%;
	width:400px;
	max-width:100%;
    margin: 20px auto 0;
    padding: 20px 35px 15px 20px;
    border: 5px solid #D3D4D5;
    background-color: #F6F6F6;
}
.birds-title h2,.birds-title a{
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0em;
    color: #E2D268;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.birds-title h2 img,.birds-title a img{
    width: 50px;
    height: 50px;
    position: relative;
    display: block;
    margin-right: 10px;
}

.birds-data p{
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4em;
    color: #404040;
    margin-bottom: 15px;
}

.birds-data p a{
    text-decoration: underline;
    color: #236B95;
}
.interactive{
    position: relative;
    width: 100%;
    margin: 35px 0;
}
.interactive-inner{
    width: 800px;
    margin: 0 auto;
    text-align: center;
}
.interactive-inner img{
    width: 100%;
}
.interactive-inner figcaption{
    text-align: left;
    font-size: 0.8rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.1em;
    margin-top: 6px;
    color: #404040;
}
.interactive-link{
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.1px;
    color: #FFFFFF;
    background-color: #72C2D6;
    border-radius: 5px 5px 5px 5px;
    padding: 7px 12px 7px 12px;
    display: inline-block;
    margin: 5px auto 0;
}

.updates-information-box{
    position: relative;
    width: 90%;
    border: 2px solid #236B95;
    background-color: #FFFFFF;
    margin: 0 auto;
}

.information-title{
    width: 100%;
    padding: 6px 0;
    background-color: #236B95;
    text-align: center;
}
.information-title h2{
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 0.01em;
    color: #fff;
}
.information-data{
    padding: 20px 20px 10px 20px;
}

.information-data p{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4em;
    color: #404040;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.information-data p a{
    text-decoration: underline;
    color: #236B95;
}
.tags-list{
    margin: 20px 0 30px;
}
.tags-list ul{
    list-style: none;
    padding: 10px;
}
.tags-list ul li{
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7em;
    color: #404040;
}
.tags-list ul li a{
    text-decoration: underline;
    color: #236B95;
}
/* ********************** End Updates Page ********************** */

/* ********************** TOPICS PAGE ********************** */
.topic-page .banner{
  /*  background-image: url(/wp-content/uploads/topics-page-bkgd.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
    margin-bottom: 0px;
	padding:120px 0;
	background-image:none!important;
	background-color:transparent!important;
	border:none;
}


.topic-page .banner-inner h1{
    text-shadow: 0px 0px 8px #000000;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.topic-page { 
	background-image: url(/wp-content/uploads/topics-page-bkgd-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
	padding-bottom:100px;
	background-color:transparent!important;
}
