/*
Theme Name: Blue Marine
Description: Custom theme
Version: 0.1
Text Domain: bm
*/

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('fonts/GalanoGrotesque-Bold.woff2') format('woff2'),
        url('fonts/GalanoGrotesque-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('fonts/GalanoGrotesque-ExtraBold.woff2') format('woff2'),
        url('fonts/GalanoGrotesque-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('fonts/GalanoGrotesque-Medium.woff2') format('woff2'),
        url('fonts/GalanoGrotesque-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('fonts/GalanoGrotesque-MediumItalic.woff2') format('woff2'),
        url('fonts/GalanoGrotesque-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('fonts/GalanoGrotesque-Regular.woff2') format('woff2'),
        url('fonts/GalanoGrotesque-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #fff;
    font-family: GalanoGrotesque, Arial, sans-serif;
    color: #00365f;
    letter-spacing: 0.5px;
    padding-top: 86px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 121px;
}

.wrapper.wrapper-top-pad {
    padding-top: 32px;
    padding-bottom: 32px;
}

a {
    transition: color 0.4s, border-color 0.4s;
}

a,
.color-blue {
    color: #00365f;
}

.color-blue-medium {
    color: #00adc7;
}

a:hover,
.color-blue-light {
    color: #00c1de;
}

.bg-color-blue-light {
    background-color: #a0e9f2;
}

.bg-color-blue-dark {
    background-color: #00365e;
}

a:hover {
    text-decoration: none;
}

.wow {
    visibility: hidden;
}

.date {
    font-size: 11px;
    font-weight: 500;
    font-style: italic;
}

.font-weight-medium {
    font-weight: 500;
}

.font-headline {
    font-size: 30px;
    font-weight: bold;
}

.font-headline-small {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.v-hidden {
    visibility: hidden;
    pointer-events: none;
}

.thumbnail {
    background-size: cover;
    background-position: center;
    padding-bottom: 66.666%;
    position: relative;
    overflow: hidden;
}

.thumbnail.thumbnail-full-height {
    padding-bottom: 0;
    height: 100%;
}

.thumbnail.thumbnail-50 {
    padding-bottom: 50%;
}

.thumbnail.thumbnail-28 {
    padding-bottom: 28%;
}

.thumbnail img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s;
    will-change: transform;
}

.thumbnail:not(.thumbnail-no-hover):hover img {
    transform: scale(1.2);
}

.thumbnail .thumbnail-title,
.thumbnail .thumbnail-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.thumbnail .thumbnail-cta {
    background-color: #00c1de;
    color: #fff;
    font-style: normal;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 100;
    padding: 20px 40px 17px;
    transition: all 0.4s;
}

a:hover .thumbnail .thumbnail-cta {
    background-color: #fff;
    color: #00c1de;
}

.thumbnail .thumbnail-title {
    font-size: 18px;
    color: #fff;
    text-align: center;
    z-index: 5;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
}

.thumbnail.thumbnail-hover:after,
.thumbnail.thumbnail-shade:after,
.thumbnail.thumbnail-read-more:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 2;
}

.thumbnail.thumbnail-shade:hover:after,
.thumbnail.thumbnail-read-more:after {
    background-color: rgba(0, 0, 0, 0.5);
}

.thumbnail.thumbnail-hover:hover:after,
.thumbnail.thumbnail-shade:after {
    opacity: 1;
}

.thumbnail.thumbnail-read-more:before {
    font-style: italic;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    content: 'Read more';
    z-index: 3;
    position: absolute;
    top: 55%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.thumbnail.thumbnail-hover:after,
.thumbnail.thumbnail-shade:after,
.thumbnail.thumbnail-read-more:before,
.thumbnail.thumbnail-read-more:after {
    transition: all 0.4s;
}

a:hover .thumbnail.thumbnail-read-more:after {
    opacity: 1;
}

a:hover .thumbnail.thumbnail-read-more:before {
    top: 50%;
    opacity: 1;
}

.thumbnail-caption {
    font-size: 12px;
    font-weight: bold;
    margin-top: 15px;
}

.row-column-borders>div {
    padding-top: 10px;
    padding-bottom: 10px;
}

.row-column-borders>div:not(:last-child) {
    border-right: 1px solid #ccc;
}

.hero .row-column-borders>div:not(:last-child) {
    border-color: rgba(255, 255, 255, 0.5);
}

.row.row-large-gutters {
    margin-left: -25px;
    margin-right: -25px;
}

.row.row-large-gutters>div {
    padding-left: 25px;
    padding-right: 25px;
}

#projects-listing>div {
    margin-bottom: 50px;
}

body:not(.page-onetrack1000) .logo-london-monaco {
    width: 90px;
}

body.page-onetrack1000 .logo-london-monaco {
    max-width: 250px;
}

@media (max-width: 768px) {
    .m-underline {
        text-decoration: underline;
    }

    .wow {
        visibility: visible;
    }

    body {
        padding-top: 50px;
    }

    .wrapper {
        max-width: none;
        padding: 0 15px;
    }

    .full-bleed {
        width: 100vw !important;
        margin-left: 50%;
        left: auto !important;
        right: auto !important;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .color-m-white>span,
    .color-m-white {
        color: #fff !important;
    }

    #projects-listing>div {
        margin-bottom: 20px;
    }

    .row.row-no-mobile-offset,
    .row.row-large-gutters,
    footer>.row,
    .block>.row {
        margin-left: 0;
        margin-right: 0;
    }

    .row.row-no-mobile-offset>div,
    .row.row-large-gutters>div,
    footer>.row>div,
    .row.row-large-gutters>div {
        padding-left: 0;
        padding-right: 0;
    }

    .row-column-borders>div:not(:last-child) {
        border-right: none;
        margin-bottom: 32px;
        padding-bottom: 32px;
        position: relative;
    }

    #how-to-help .row-column-borders>div:not(:last-child):after {
        position: absolute;
        content: '';
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        border-bottom: 1px solid #ccc;
    }

    .thumbnail.thumbnail-28,
    .thumbnail.thumbnail-50 {
        padding-bottom: 70%;
    }

    .thumbnail .thumbnail-cta {
        font-size: 20px;
        padding-left: 27px;
        padding-right: 27px;
    }

    .font-headline {
        font-size: 20px;
    }
}

/* Headings */
h1,
h2,
h3,
.h1,
.h2,
.h3,
.h4,
.sub-heading {
    text-transform: uppercase;
    font-weight: bold;
}

.sub-heading {
    font-size: 30px;
}

h2,
.h2 {
    font-size: 30px;
}

h3 {
    font-size: 16px;
}

.sub-intro {
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sub-heading {
        line-height: 30px;
    }

    h2,
    .h2 {
        font-size: 26px;
    }
}

/* Header */
header {
    top: 0;
    left: 0;
    background-color: #fff;
    height: 100px;
    z-index: 1000;
    position: fixed;
    width: 100%;
}

header>.wrapper>div {
    height: 100px;
    position: relative;
}

header #logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

header #logo img {
    height: 55px;
}

header #logo img:first-child {
    position: absolute;
    right: calc(100% + 15px);
}

header nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

header nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

header nav ul li {
    display: inline-block;
}

header nav ul li:not(:last-child) {
    margin-right: 44px;
}

header nav ul a {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

header nav .current-menu-item a,
header nav .current-page-ancestor a {
    color: #00c1de;
}

header #search {
    position: absolute;
    left: calc(100% + 50px);
    top: 50%;
    text-align: center;
}

header .search-icon {
    cursor: pointer;
}

header #search .search-icon svg {
    width: 20px;
    position: relative;
    top: -10px;
}

header .search-icon svg>g>g {
    fill: #00365f;
    transition: fill 0.4s;
}

header .search-icon:hover svg>g>g {
    fill: #00C1DE;
}

header #search .social-icons {
    margin-top: 40px;
}

header #search .social-icons a {
    width: 22px;
    display: block;
    margin: 10px auto 0;
    height: 22px;
    line-height: 20px;
}

header #search .social-icons svg {
    width: 14px;
}

header #search-form {
    position: absolute;
    left: 0;
    padding: 50px 0;
    width: 100%;
    background-color: #fff;
    z-index: 200;
    text-align: center;
    transition: all 0.5s;
    opacity: 0;
    top: 50%;
    pointer-events: none;
}

body.search-open header #search-form {
    top: 100%;
    opacity: 1;
    pointer-events: auto;
}

header #search-form input {
    -webkit-appearance: none;
    border: none;
    border-radius: unset;
    width: 40%;
    outline: none !important;
    padding: 0 0 5px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #00365f;
    color: #00365f;
}

header #search-form input::-webkit-input-placeholder {
    font-weight: bold;
    text-transform: uppercase;
    color: #00365f;
}

header #search-form input::-moz-placeholder {
    font-weight: bold;
    text-transform: uppercase;
    color: #00365f;
}

header #search-form input:-ms-input-placeholder {
    font-weight: bold;
    text-transform: uppercase;
    color: #00365f;
}

header #search-form input:-moz-placeholder {
    font-weight: bold;
    text-transform: uppercase;
    color: #00365f;
}

header #search-form .search-icon {
    display: inline-block;
    position: relative;
    left: 10px;
    top: 2px;
    cursor: pointer;
}

header #search-form #search-form-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.4s;
}

header #search-form #search-form-close:hover {
    color: #00C1DE;
}

header #search-form #search-form-close img {
    width: 30px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    header {
        margin: 0;
        height: 66px;
        top: 0;
        left: 0;
        z-index: 5000;
        background-color: #fff;
    }

    header>.wrapper>div {
        height: 66px;
        position: static;
    }

    header #logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    header #logo img {
        height: 45px;
        position: relative !important;
        right: auto !important;
    }

    header nav {
        background: #fff;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100% - 65px);
        padding: 30px 15px 15px;
        transform: translateX(-100%);
        pointer-events: none;
        transition: transform 0.6s;
    }

    body.show-nav header nav {
        pointer-events: auto;
        transform: none;
    }

    header nav ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
    }

    header nav ul a {
        font-size: 16px;
    }

    header nav .nav-title {
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
    }

    header nav .nav-social {
        margin: 20px 0 10px;
        display: inline-block;
        padding: 10px 0 40px;
        border-top: 1px solid #00365f;
        border-bottom: 1px solid #00365f;
    }

    header #search-form input {
        font-size: 13px;
    }

    /* Menu open */
    .menu-open {
        position: absolute;
        box-sizing: content-box;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        width: 25px;
        top: 14px;
        left: 15px;
        height: 16px;
        transform-origin: center;
        -webkit-transition: transform 0.6s;
        -moz-transition: transform 0.6s;
        -ms-transition: transform 0.6s;
        -o-transition: transform 0.6s;
        transition: transform 0.6s;
        cursor: pointer;
    }

    .menu-open span {
        display: inline-block;
        width: 100%;
        background-color: #051b29;
        height: 2px;
        position: absolute;
        left: 0;
        top: 0;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        opacity: 1;
    }

    .menu-open span:last-of-type {
        top: calc(100% - 2px);
    }

    body.show-nav .menu-open span,
    .menu-open span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    body.show-nav .menu-open {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    body.show-nav .menu-open span:first-of-type,
    body.show-nav .menu-open span:last-of-type {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    body.show-nav .menu-open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    body.show-nav .menu-open span:last-of-type {
        opacity: 0;
    }

    header #search {
        position: absolute;
        left: auto;
        right: 15px;
        top: 28px;
        text-align: center;
    }

    header #search .social-icons {
        display: none;
    }

    header #search-form {
        padding: 30px 15px;
        text-align: left;
    }

    header #search-form input {
        width: auto;
        min-width: 64%;
    }

    header #search-form .search-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Blocks */
.block-border-top {
    border-top: 1px solid #979797;
}

.block {
    margin: 37px 0;
    position: relative;
}

.block.block-pad {
    padding: 50px 0;
    margin: 0;
}

.block-border-top>.block {
    padding-top: 50px;
}

.block.block-top-large {
    margin-top: 86px;
}

.block.block-no-bottom-margin {
    margin-bottom: 0;
}

.block-heading {
    position: absolute;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transform-origin: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    text-align: right;
    height: 200px;
    letter-spacing: 2px;
    line-height: 16px;
    left: -84px;
    top: 0;
}

.block-heading:empty {
    display: none;
}

.block-heading.block-heading-bottom {
    top: auto;
    bottom: -18px;
    text-align: left;
}

.bg-color-blue-dark .block-heading.block-heading-line,
.bg-color-blue-light .block-heading.block-heading-line {
    color: #00adc7;
}

.block-heading.block-heading-blue {
    color: #00adc7;
}

.block-heading.block-heading-line:after {
    position: absolute;
    content: '';
    bottom: 0;
    right: 74px;
    height: 124px;
    border-left: 1px solid #7d9baf;
}

.bg-color-blue-dark .block-heading.block-heading-line:after,
.bg-color-blue-light .block-heading.block-heading-line:after {
    border-color: #00adc7;
}

.block-heading.block-heading-blue.block-heading-line:after {
    border-color: #fff;
}

.block-heading span {
    display: block;
}

.block-heading span:not(:first-child) {
    color: #00c1de;
}

@media (max-width: 768px) {
    .block {
        margin: 20px 0;
    }

    .block.block-heading-pad {
        /*padding-left: 40px;*/
    }

    .block-heading {
        display: none;
        z-index: 100;
        left: -26px;
        top: -1px;
        padding-bottom: 2px;
        padding-right: 10px;
        height: 100%;
        font-size: 12px;
        line-height: 14px;
    }

    .block-heading.block-heading-bg {
        background-color: #fff;
    }

    .quotes-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .quotes-container .block-heading {
        padding-left: 12px;
        left: 35px;
        margin-left: 0;
        transform-origin: left;
    }

    .bg-color-blue-dark .quotes-container .block-heading {
        background-color: #00365e;
    }

    .bg-color-blue-light .quotes-container .block-heading {
        background-color: #a0e9f2;
    }

    .block-heading.block-heading-m-inside {
        padding-bottom: 20px;
    }

    #how-to-help .block-heading.block-heading-m-inside {
        padding-bottom: 42px;
    }

    .block-heading.block-heading-line:after {
        right: 35px;
        bottom: 5px;
    }

    .block-heading.block-heading-line.block-heading-line-2:after {
        right: 47px;
    }

    .block-heading.block-heading-m-none,
    body:not(#contact) h1.block-heading {
        display: none;
    }

    .block.block-top-large {
        margin-top: 50px;
    }
}

@supports (-webkit-overflow-scrolling: touch) {
    .quotes-container .block-heading {
        left: 15px;
    }
}

/* Filters */
#filters-display ul,
#filters ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#filters-display ul li,
#filters ul li {
    display: inline-block;
    text-transform: uppercase;
    transition: color 0.4s;
    cursor: pointer;
}

#filters-display ul li:not(:last-child),
#filters ul li:not(:last-child) {
    margin-right: 24px;
}

#filters-display ul li.active,
#filters ul li.active,
#filters ul li.active a {
    color: #00c1de;
}

#filters-display ul li:not(.active):hover,
#filters ul li:not(.active):hover {
    color: #00adc7;
}

#filters-container>.row {
    min-height: 129px;
}

#filters-container>.row>div {
    padding-top: 20px;
}

@media (max-width: 768px) {

    #filters-display ul li,
    #filters ul li {
        margin: 0 12px !important;
    }

    #filters-container>.row>div {
        padding-top: 0;
    }

    #filters-container {
        margin-top: 20px;
    }

    #filters-container .pl-5 {
        padding-left: 3.5rem !important;
    }

    #filters ul {
        margin: 0 20px;
    }
}

/* Quotes */
.quote {
    text-align: center;
    color: #00adc7;
    font-size: 24px;
    font-weight: bold;
}

.quote>div {
    max-width: 70%;
    margin: 0 auto;
}

.quote h3 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 800;
}

.quote .quote-sub-title {
    color: #fff;
    font-size: 14px;
}

.slick-dots {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    text-align: center;
}

.hero .slick-dots {
    margin-top: 0;
    position: relative;
    top: -60px;
    z-index: 30;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li:not(:last-child) {
    margin-right: 30px;
}

.slick-dots button {
    background: none;
    border: none;
    -webkit-appearance: none;
    font-size: 14px;
    color: #fff;
    width: 40px;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none !important;
    font-weight: 500;
    border-bottom: 2px solid #fff;
}

.slick-dots .slick-active button {
    color: #00adc7;
    border-color: #00adc7;
}

.bg-color-blue-dark .quote {
    color: #00c1de;
}

@media (max-width: 768px) {
    .quote {
        font-size: 18px;
    }

    .quote>div {
        max-width: 70%;
    }

    .quotes-carousel .slick-dots {
        margin-top: 20px;
    }
}

/* Hero */
.hero {
    height: 495px;
    color: #fff;
    position: relative;
}

.hero .arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero .arrow.arrow-prev {
    left: -40px;
}

.hero .arrow.arrow-next {
    right: -40px;
}

#post .hero {
    height: 415px;
}

#projects .hero,
#home .hero {
    padding-top: 15px;
}

#home .hero.hero-main {
    padding-top: 32px;
}

.hero .slick-list,
.hero .slick-track,
.hero .hero-slide,
.hero .hero-slide-image {
    height: 100%;
}

.hero .hero-slide {
    overflow-x: hidden;
    position: relative;
}

.hero .hero-slide-image {
    background-position: left center;
    background-size: cover;
    width: 117%;
    animation: hero-slide infinite 60s linear;
}

.hero .hero-slide-image.hero-slide-image-overlay:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    mix-blend-mode: multiply;
    background-color: rgba(0, 54, 95, 0.8);
    top: 0;
    left: 0;
}

#project .hero .hero-slide-image.hero-slide-image-overlay:after {
    background-color: rgba(151, 151, 151, 0.8);
}

.hero .hero-slide-image.hero-slide-image-static {
    width: 100%;
    animation: none;
}

.hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 50%;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    transform: translate(-50%, -50%);
}

.hero .hero-content .hero-icon {
    width: 120px;
    margin-bottom: 25px;
}

.hero .hero-title {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
    max-width: 78%;
    margin: 0 auto 22px;
    line-height: 31px;
}

#home .hero .hero-title {
    max-width: 380px;
}

.hero .hero-content-full {
    position: absolute;
    top: 100px;
    bottom: 100px;
    left: 10px;
    right: 10px;
    font-weight: 500;
    font-size: 14px;
}

.hero .hero-cta {
    margin-top: 30px;
}

a.cta,
.hero .hero-cta a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    padding-bottom: 4px;
    border-bottom: 1px solid #fff;
}

.hero .hero-cta a:hover {
    color: #00c1de;
    border-color: #00c1de;
}

a.cta {
    color: #00c1de;
    border-color: #00c1de;
}

@keyframes hero-slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-15%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
    }

    .hero .arrow {
        display: none !important;
    }

    .hero .hero-content {
        min-width: 0;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 90px 20px;
    }

    .hero .hero-slide-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        background-size: auto 100%;
    }

    .hero.full-bleed .hero-content {
        min-width: 70%;
    }

    .hero .hero-title {
        font-size: 26px;
    }

    #projects .hero,
    #home .hero {
        padding-top: 0;
    }

    .hero .hero-content-full {
        position: relative;
        left: auto;
        right: auto;
        padding-bottom: 20px;
        margin-top: -60px;
    }

    #how-to-help .hero.full-bleed {
        margin-bottom: 50px;
    }

    #how-to-help .hero.full-bleed .hero-slide {
        min-height: 900px;
    }

    #post .hero {
        height: 300px;
    }

    #home .hero:not(.hero-main) {
        height: auto;
    }

    #home .hero.hero-main {
        padding-top: 0;
    }
}

/* Image carousels */
.image-carousel-container {
    position: relative;
}

.image-carousel {
    margin: 0 40px;
    min-height: 90px;
}

.image-carousel .image-carousel-slide,
.image-carousel .slick-track,
.image-carousel .slick-list {
    height: 100%;
}

.image-carousel .image-carousel-slide {
    position: relative;
    text-align: center;
    min-height: 90px;
}

.image-carousel .image-carousel-slide>div {
    min-height: 90px;
    position: relative;
}

.image-carousel .image-carousel-slide img {
    max-width: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline;
}

.image-carousel-container .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.image-carousel-container .arrow.arrow-prev {
    left: 0;
}

.image-carousel-container .arrow.arrow-next {
    right: 0;
}

@media (max-width: 768px) {
    .image-carousel .image-carousel-slide img {
        max-width: 90%;
    }
}

/* Arrows */
.arrow {
    background: url('img/arrow.svg') no-repeat center / 100% auto;
    width: 20px;
    height: 20px;
    display: inline-block;
    transform-origin: center;
}

.arrow.arrow-prev {
    margin-top: -10px;
    transform: rotate(180deg);
}

/* Footer */
footer {
    font-size: 14px;
    padding: 50px 20px 0;
    margin: 50px 0;
}

footer {
    border-top: 1px solid #979797;
}

footer h2 {
    font-weight: bold;
    font-size: 16px;
}

footer .social-icons {
    margin-top: 1.5rem;
}

footer .blue-icon {
    width: 36px;
    height: auto;
}

footer .disclaimers {
    font-size: 9px;
    letter-spacing: 0.75px;
    line-height: 15px;
}

footer .disclaimers a {
    text-decoration: underline;
}

footer .disclaimers ul {
    list-style: none;
    padding: 0;
}

footer .disclaimers ul li {
    display: inline;
}

footer .disclaimers ul li:not(:last-child) {
    margin-right: 15px;
}

.social-icons svg {
    width: 15px;
    height: auto;
}

.social-icons svg path {
    fill: #fff;
}

.social-icons a {
    text-align: center;
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 24px;
    background-color: #00365f;
    transition: background-color 0.4s;
    border-radius: 50%;
}

.social-icons.social-icons-share svg {
    width: 20px;
}

.social-icons.social-icons-share a {
    width: 30px;
    height: 30px;
    line-height: 28px;
}

.social-icons a:hover {
    background-color: #00c1de;
}

.social-icons a:not(:last-child) {
    margin-right: 13px;
}

footer .footer-subscribe {
    width: 80%;
    margin: 0 auto;
}

footer .footer-subscribe .form-container .text-center {
    text-align: left !important;
    padding-top: 15px;
}

@media (max-width: 768px) {
    footer {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        margin-top: 0 !important;
        padding-top: 0;
    }

    footer>.row>div {
        border-bottom: 1px solid #979797 !important;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    footer .footer-subscribe {
        width: 70%;
    }

    footer>.row>div:nth-child(2) {
        order: 2;
    }
}

/* Forms */
#subscribe-form input {
    -webkit-appearance: none;
    border: none;
    border-radius: unset;
    background: none;
    padding: 6px 0;
    border-bottom: 1px solid #4c4c4c;
    width: 100%;
    outline: none !important;
}

.button-link,
#subscribe-form button {
    -webkit-appearance: none;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    color: #00c1de;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #00c1de;
    transition: color 0.4s, border-color 0.4s
}

.button-link:hover,
#subscribe-form button:hover {
    color: #00365f;
    border-color: #00365f;
}

#contact-form input,
#contact-form textarea {
    border: 1px solid #00365e;
    background: #fbfbfb;
    width: 100%;
    padding: 10px 20px;
}

#contact-form button {
    background-color: #00365e;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
    font-size: 24px;
    padding: 10px 20px 7px;
    text-transform: uppercase;
    transition: background-color 0.4s;
}

#contact-form button:hover {
    background-color: #00c1de;
}

.form-container ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    color: red;
}

/* Sub nav */
.sub-navigation {
    border-top: 1px solid #ccc;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #ccc;
}

.sub-navigation li {
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
    line-height: 31px;
    padding: 30px 0;
    text-transform: uppercase;
}

.sub-navigation li.active a {
    color: #00c1de;
}

.sub-navigation {
    border-bottom: none;
}

.sub-navigation li {
    width: 33.33333337%;
    float: left;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
    border-bottom: 1px solid #ccc;
    border-right: none;
}

#about-us .sub-navigation li,
#about-us-reports .sub-navigation li,
#about-us-people .sub-navigation li {
    width: 25%;
}

.sub-navigation li a {
    padding: 13px 0;
    display: block;
}

.sub-navigation li.active a {
    color: #00c1de;
}

#support .sub-navigation li:nth-child(1),
#support .sub-navigation li:nth-child(2),
#support .sub-navigation li:nth-child(4),
#support .sub-navigation li:nth-child(5),
#about-us .sub-navigation li:not(:last-child),
#about-us-reports .sub-navigation li:not(:last-child),
#about-us-people .sub-navigation li:not(:last-child) {
    border-right: 1px solid #ccc;
}

.sub-navigation li {
    font-size: 20px;
}

@media (max-width: 768px) {
    .sub-navigation {
        padding: 0;
        border-width: 1px;
        border-bottom: none;
        margin: 20px 0 !important;
    }

    .sub-navigation li {
        width: 50% !important;
        float: left;
        text-align: center;
        line-height: normal;
        margin: 0 !important;
        padding: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid #ccc;
        font-size: 14px !important;
    }

    .sub-navigation li:nth-child(odd) {
        border-right: 1px solid #ccc !important;
    }

    .sub-navigation li:not(:last-child) {
        margin-right: 0 !important;
    }

    .sub-navigation li a {
        padding: 13px 0;
        display: block;
    }
}

/* Content */
.contact-details,
.content {
    font-size: 14px;
    line-height: 24px;
}

.content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content ul li {
    position: relative;
    padding-left: 25px;
}

.content ul li:not(:last-child) {
    margin-bottom: 15px;
}

.content ul li:before {
    content: '–';
    font-weight: bold;
    position: absolute;
    left: 0;
}

.content .title-small {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 25px;
    font-weight: bold;
}

.content.content-links a {
    text-transform: uppercase;
    text-decoration: underline;
}

.content:not(.content-links) a,
.content.content-links a.link-plain {
    font-weight: 500;
    font-style: italic;
    color: #00c1de;
    text-transform: none;
}

.content.content-links a.link-plain {
    text-decoration: none !important;
}

.content:not(.content-links) a {
    text-decoration: underline;
}

.content.content-links a.link-plain:hover {
    color: #00365f;
}

.content .h3 {
    font-size: 20px;
}

#map {
    height: 450px;
}

#interactive-maps-container {
    position: relative;
    background-color: grey;
}

#interactive-maps-container .project-map-interactive {
    height: 540px;
}

.project-circle-map-container,
#interactive-maps-container .project-map-uk-container {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}

#interactive-maps-container .project-map-uk-container {
    top: 50px;
    left: 22%;
    width: 270px;
    height: 270px;
    border: 2px solid #00c1de;
}

.project-circle-map-container {
    left: 50%;
    transform: translateX(-50%);
    width: 67%;
    padding-bottom: 67%;
    position: relative;
}

.project-circle-map-container .project-circle-map {
    height: 105%;
    position: absolute;
    width: 100%;
}

.project-circle-map-container .project-map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 200;
    height: 35px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    background: url('img/map_pin_x2.png') no-repeat center / 20px auto;
}

.project-circle-map-container .project-map-marker span {
    position: relative;
    top: 25px;
    font-size: 12px;
    left: 45px;
}

#interactive-maps-container .project-map-uk {
    height: 290px;
}

#interactive-maps-container .interactive-maps-container-intro {
    position: absolute;
    font-style: italic;
    top: 45px;
    left: 50px;
    font-size: 14px;
    width: 170px;
}

#interactive-maps-container .interactive-maps-content {
    line-height: 22px;
}

#interactive-maps-container .interactive-maps-content img {
    width: 20px;
    margin: 0 0 10px -10px;
}

#interactive-maps-container .interactive-maps-content,
#interactive-maps-container .interactive-maps-content a {
    color: #fff;
}

#interactive-maps-container .interactive-maps-content a {
    text-decoration: none;
}

#interactive-maps-container .interactive-maps-content a:hover {
    color: #00c1de;
}

#interactive-maps-container .interactive-maps-content {
    position: absolute;
    bottom: 45px;
    left: 50px;
    display: none;
}

#interactive-maps-container .interactive-maps-content .project-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}

#interactive-maps-container .interactive-maps-content .project-excerpt {
    width: 200px;
}

#interactive-maps-container .interactive-maps-content .project-link {
    margin: 0;
}

@media (max-width: 768px) {
    .project-circle-map-container .project-circle-map {
        height: 107%;
    }
}

/* Key stats */
.key-stats {
    padding: 0 5%;
    color: #fff;
    text-transform: uppercase;
}

.key-stats p {
    line-height: 42px;
    font-weight: 800;
    font-size: 35px;
    margin-bottom: 10px;
}

.key-stats p:first-of-type {
    font-size: 55px;
    line-height: 55px;
}

.key-stats p strong,
.key-stats p span:first-of-type {
    color: #00adc7;
}

@media (max-width: 768px) {
    .key-stats {
        padding-left: 0;
    }

    .key-stats p {
        font-size: 28px;
        line-height: 30px;
    }

    .key-stats p:first-of-type {
        font-size: 34px;
        line-height: 34px;
    }
}

/* Achievements */
.achievement {
    position: relative;
    display: flex;
    padding-bottom: 50px;
}

.achievement .achievement-bubble {
    width: 130px;
    height: 130px;
    display: inline-block;
    position: relative;
    background-color: #00c1de;
    border-radius: 50%;
}

.achievement .achievement-bubble:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 3px;
    background-color: #00c1de;
    height: 60px;
}

.achievement .achievement-content {
    display: inline-block;
    width: 70%;
    font-size: 14px;
    padding-top: 10px;
    padding-left: 25px;
    position: absolute;
    left: 130px;
    font-weight: bold;
}

.achievement .achievement-bubble span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 25px;
    color: #fff;
    font-weight: 800;
    line-height: 20px;
}

@media (min-width: 768px) {
    .achievement .achievement-bubble.no-line:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .achievement {
        padding-bottom: 20px;
        position: relative;
    }

    .achievement:after {
        content: '';
        position: absolute;
        left: 50px;
        width: 3px;
        height: 100%;
        background-color: #00c1de;
    }

    #achievements>.row>div:last-child>.achievement:last-child:after {
        display: none;
    }

    .achievement .achievement-bubble {
        width: 100px;
        height: 100px;
    }

    .achievement .achievement-bubble span {
        font-size: 20px;
    }

    .achievement .achievement-content {
        left: auto;
        padding-left: 20px;
        width: 60%;
        font-size: 13px;
        position: relative;
    }

    .achievement .achievement-bubble:after {
        display: none;
    }
}

/* Supporters */
#supporters {
    margin-top: 27px;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
}

#supporters h3 {
    margin: 30px 0 0;
    color: #00c1de;
}

@media (max-width: 768px) {
    #supporters h3 {
        font-size: 12px;
    }
}

#reports .thumbnail {
    padding-bottom: 140%;
}

.paging-container {
    border-top: 1px solid #979797;
    padding-top: 50px;
}

.paging-container .arrow {
    display: inline-block;
    margin: 0 20px;
    position: relative;
    top: 5px;
}

.paging {
    display: inline-block;
}

.paging>span:first-of-type {}

.paging a {
    margin-left: 10px;
}

.paging .page-numbers.dots+a {
    margin-left: 0;
}

.paging .page-numbers.current {
    color: #00c1de;
    margin-left: 10px;
}

/* Projects */
#projects-listing>div.project.project-list {
    margin-bottom: 20px;
}

#projects-listing .project.project-list {
    font-size: 12px;
}

#projects-listing .project.project-list .row {
    min-height: 145px;
}

#projects-listing .project.project-list .h3 {
    font-size: 18px;
    word-wrap: break-word;
}

#project-map {
    display: block;
    margin: 30px auto 0;
    max-width: 70%;
}

.display {
    width: 17px;
    height: 17px;
    position: relative;
}

.display span {
    position: absolute;
    display: inline-block;
    background-color: #00365f;
    transition: background-color 0.4s;
    height: 7px;
}

.active .display span {
    background-color: #00c1de;
}

.display.display-grid span {
    width: 7px;
}

.display.display-grid span:nth-child(1) {
    top: 0;
    left: 0;
}

.display.display-grid span:nth-child(2) {
    left: 0;
    bottom: 0;
}

.display.display-grid span:nth-child(3) {
    top: 0;
    right: 0;
}

.display.display-grid span:nth-child(4) {
    bottom: 0;
    right: 0;
}

.display.display-list span {
    width: 100%;
    left: 0;
}

.display.display-list span:nth-child(1) {
    top: 0;
}

.display.display-list span:nth-child(2) {
    bottom: 0;
}

#projects .hero {
    height: 540px;
}

#projects .hero .hero-slide-image {
    position: relative;
    background-position: center right 80px;
    background-repeat: no-repeat;
    background-size: auto 590px;
    background-color: #0c3660;
    width: 100%;
}

.pin {
    position: absolute;
    background: url('img/map_pin.png') no-repeat top left / 15px 25px;
    min-width: 15px;
    height: 25px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
}

.pin span {
    position: absolute;
    left: 13px;
    top: 17px;
    width: 150px;
}

.pin.pin-patagonia {
    top: 425px;
    right: 684px;
}

.pin.pin-pitcairn-island {
    top: 324px;
    right: 848px;
}

.pin.pin-maldives {
    top: 306px;
    right: 367px;
}

.pin.pin-st-helena {
    top: 339px;
    right: 532px;
}

.pin.pin-ascension-island {
    top: 307px;
    right: 556px;
}

.pin.pin-solent {
    top: 155px;
    right: 727px;
}

.pin.pin-scotland {
    top: 59px;
    right: 761px;
}

.pin.pin-lyme-bay {
    top: 159px;
    right: 753px;
}

.pin.pin-caspian-sturgeon {
    top: 156px;
    right: 416px;
}

#project-image-gallery {
    margin-left: -10px;
    margin-right: -10px;
    position: relative;
}

#project-image-gallery .slide {
    padding-left: 10px;
    padding-right: 10px;
}

#project-image-gallery .arrow {
    position: absolute;
    cursor: pointer;
    top: 50%;
}

#project-image-gallery .arrow.arrow-prev {
    left: -40px;
}

#project-image-gallery .arrow:not(.arrow-prev) {
    right: -40px;
    transform: translateY(-50%);
}

#project-pagination {
    margin-bottom: 60px;
    padding: 50px 0 42px;
    border-top: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

#project-pagination .arrow {
    position: absolute;
}

#project-pagination .arrow.arrow-next {
    right: -20px;
}

#project-pagination .arrow.arrow-prev {
    left: -20px;
    top: 10px;
}

@media (max-width: 768px) {
    #projects-listing>div.project.project-list {
        margin-bottom: 0;
    }

    #project-pagination {
        border: none;
        margin: 0 30px 0;
    }
}

/* Image gallery modal */
div[data-gallery-image] {
    cursor: pointer;
}

#gallery-modal-container {
    background-color: rgba(0, 13, 41, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 5000;
}

#gallery-modal-container,
#gallery-modal-container .slick-list,
#gallery-modal-container .slick-track,
#gallery-modal-container .gallery-modal-image-container {
    height: 100%;
    width: 100%;
    outline: none;
}

#gallery-modal-container .gallery-modal-image-container {
    position: relative;
}

#gallery-modal-container.show {
    opacity: 1;
}

#gallery-modal-container .arrow {
    position: absolute;
    top: 50%;
    z-index: 500;
    cursor: pointer;
}

#gallery-modal-container .arrow.arrow-prev {
    left: 5%;
}

#gallery-modal-container .arrow.arrow-next {
    right: 5%;
    transform: translateY(-50%);
}

#gallery-modal-container .gallery-modal-image {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 70%;
    width: 80%;
    transform: translate(-50%, -50%);
}

#gallery-modal-container .gallery-modal-image .embed-container,
#gallery-modal-container .gallery-modal-image img {
    max-width: 100%;
    max-height: 100%;
    border: 2px solid #fff;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#gallery-modal-close {
    width: 40px;
    height: 40px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 5010;
    cursor: pointer;
    opacity: 0;
    transition: opacity 1s ease 0.5s;
}

#gallery-modal-container.show+#gallery-modal-close {
    opacity: 1;
}

#gallery-modal-close:after {
    content: '×';
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 300;
    font-size: 50px;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    #gallery-modal-container .arrow.arrow-prev {
        left: 2%;
    }

    #gallery-modal-container .arrow.arrow-next {
        right: 2%;
    }
}

/* Partner logos */
.partner-logos {
    text-align: center;
    margin-top: 70px;
}

.partner-logos>div {
    margin-bottom: 50px;
}

.partner-logos img {
    max-width: 200px;
    max-height: 150px;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* News */
#post h1 {
    font-size: 30px;
}

#post .date {
    font-size: 14px;
}

#recent-posts {
    list-style: none;
    font-size: 14px;
    line-height: 24px;
}

#recent-posts li {
    font-weight: bold;
    margin-bottom: 20px;
}

#recent-posts li:before {
    display: none;
}

#post #latest-news {
    position: relative;
}

#post #latest-news .row {
    margin-left: -15px;
    margin-right: -15px;
}

#post #latest-news .row .arrow {
    cursor: pointer;
    position: absolute;
}

#post #latest-news .row .arrow.arrow-next {
    right: -40px;
    top: 35%;
}

#post #latest-news .row .arrow.arrow-prev {
    left: -40px;
    top: calc(37% + 5px);
}

#post .content figure,
#post .content figure img {
    width: 100% !important;
    height: auto;
}

#post .content figcaption {
    font-size: 12px;
    font-weight: bold;
    margin-top: 15px;
}

@media (max-width: 768px) {
    #post h1 {
        font-size: 26px;
    }

    #post #latest-news h3 {
        font-size: 14px;
    }

    #recent-posts {
        padding: 0;
    }
}

/* Search results */
.search-result {
    font-size: 14px;
    line-height: 24px;
}

.search-result .search-result-title {
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

/* Cookies */
#cookie-policy {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: #fff;
    height: 60px;
    transition: all 1s;
    transform: translateY(100%);
}

body.in #cookie-policy:not(.cookie-close) {
    transition: all 1s ease 1.2s;
    box-shadow: 0px 0px 26px 16px rgba(0, 54, 95, 0.21);
    transform: translateY(0);
}

#cookie-policy>div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#cookie-policy a.accept-cookies {
    background-color: #00365f;
    color: #fff;
    font-style: normal;
    text-decoration: none;
    padding: 5px 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 15px;
}

@media (max-width: 768px) {
    #cookie-policy {
        display: none;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {

    #filters,
    #filters-display,
    .block-heading,
    #projects-listing>div.project.project-list {
        display: none !important;
    }
}

.button-donate {
    background-color: #00c1de;
    color: #fff !important;
    text-transform: uppercase !important;
    font-size: 23px;
    text-decoration: none !important;
    font-style: normal !important;
    padding: 23px 70px;
    letter-spacing: 0.5px;
    transition: all 0.4s;
    border: 3px solid #00c1de;
}

.button-donate:hover {
    color: #00c1de !important;
    background-color: #fff;
}



/* Gravity form */
.block .gform_wrapper {
    padding: 65px;
    background-color: #E3F8FC;
}

.block .gform_wrapper form {
    max-width: 570px;
}

.block .gform_wrapper form .gform_fields {
    grid-row-gap: 20px;
}

.block .gform_wrapper form .gfield input {
    border: 1px solid #003655;
    height: 60px;
    line-height: 50px;
    outline: none;
    color: #003655;
    font-size: 14px;
    font-family: GalanoGrotesque, Arial, sans-serif;
    padding: 0 30px 5px;
}

.block .gform_wrapper form .gfield input[type=checkbox] {
    height: 25px;
    width: 25px;
    margin-right: 20px;
}

.gform_wrapper.gravity-theme .gfield_checkbox label,
.gform_wrapper.gravity-theme .gfield_radio label {
    font-size: 14px !important;
}

.block .gform_wrapper .gform_heading {
    margin-bottom: 30px;
}

.block .gform_wrapper .gform_heading .gform_description {
    display: block;
    font-size: 14px;
}

.block .gform_wrapper form .gform_button {
    background-color: #003655;
    color: white;
    text-transform: uppercase;
    padding: 0px 30px 6px;
    font-size: 16px;
    font-family: GalanoGrotesque, Arial, sans-serif;
    text-align: center;
    border: none;
    transition: all 0.3s ease-in-out 0s;
    height: 60px;
    font-weight: bold;
    cursor: pointer;

}

.block .gform_wrapper .gform_footer {
    padding-bottom: 0;
    text-align: center;
}

.gform_wrapper.gravity-theme .gfield-choice-input+label {
    max-width: calc(100% - 50px) !important;
}

.block .gform_wrapper form .gform_button:hover,
.block .gform_wrapper form .gform_button:focus {
    background-color: #00C1DE;
}

@media (max-width: 768px) {
    .block .gform_wrapper {
        padding: 30px;
    }

    .block .gform_wrapper .gform_heading .gform_description {
        font-size: 20px;
    }

    .block .gform_wrapper form .gfield input {
        height: 50px;
        padding: 0 20px 5px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .block .gform_wrapper {
        padding: 30px 20px;
    }

    .gform_wrapper.gravity-theme .gfield_checkbox label,
    .gform_wrapper.gravity-theme .gfield_radio label {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    .block .gform_wrapper form .gform_fields {
        grid-row-gap: 10px;
    }
}

.subscribe-form br {
    display: none;
}

.subscribe-form .wpcf7-submit {
    -webkit-appearance: none;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 !important;
    width: auto !important;
    font-size: 14px;
    color: #00c1de;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #00c1de !important;
    transition: color 0.4s, border-color 0.4s
}

.subscribe-form .wpcf7-submit:hover {
    color: #00365f;
    border-color: #00365f;
}

.subscribe-form .wpcf7-spinner {
    display: none !important;
}