

.umb-block-grid__layout-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 1), minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: minmax(50px, min-content);
    column-gap: var(--umb-block-grid--column-gap, 0);
    row-gap: var(--umb-block-grid--row-gap, 0);
}

.umb-block-grid__area-actions>button {
    background: white;
}

.umb-block-grid__layout-item {
    position: relative;
    /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
    grid-column-end: span min(calc(var(--umb-block-grid--item-column-span, 1) * 3), var(--umb-block-grid--grid-columns));
    grid-row: span var(--umb-block-grid--item-row-span, 1);
}


.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--umb-block-grid--area-grid-columns, var(--umb-block-grid--grid-columns, 1)), minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: minmax(50px, min-content);
    /*column-gap: var(--umb-block-grid--areas-column-gap, 0);*/
    /*row-gap: var(--umb-block-grid--areas-row-gap, 0);*/
}

.umb-block-grid__area {
    position: relative;
    height: 100%;
    display: block !important;
    flex-direction: column;
    /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
    grid-column-end: span min(calc(var(--umb-block-grid--area-column-span, 1) * 3), var(--umb-block-grid--area-grid-columns));
    grid-row: span var(--umb-block-grid--area-row-span, 1);
}

@media (min-width:1024px) {
    .umb-block-grid__layout-item {
        grid-column-end: span min(var(--umb-block-grid--item-column-span, 1), var(--umb-block-grid--grid-columns));
    }

    .umb-block-grid__area {
        grid-column-end: span min(var(--umb-block-grid--area-column-span, 1), var(--umb-block-grid--area-grid-columns));
    }
}

/**** Custom additions to the default Grid Layout Stylesheet: ****/

.umb-block-grid {
    container-type: inline-size;
    --my-container-max-width: 1200px;
    --my-container-padding: 0 20px;
}
@container (min-width: 720px) {
    .umb-block-grid__layout-container {
        --my-container-padding: 0 60px;
    }
}

/* additional CSS options for area-container and areas: */
.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
    /*max-width: var(--my-container-max-width);*/
    /*padding: var(--my-container-padding);*/
    margin-left: auto;
    margin-right: auto;

    /* We add gap for Areas in general: */
    --umb-block-grid--areas-column-gap: 20px;
    --umb-block-grid--areas-row-gap: 20px;
}

@container (min-width: 720px) {
    .umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
        --umb-block-grid--areas-column-gap: 60px;
        --umb-block-grid--areas-row-gap: 60px;
    }
}

.umb-block-grid__area {
    justify-content: center;
}

/** Specifically for oneColumnSectionBlock we add block colum-gap/row-gap. Notice this is different from the Area Gaps added above. */
.umb-block-grid__layout-item[data-content-element-type-alias="oneColumnSectionBlock"] .umb-block-grid__layout-container {
    --umb-block-grid--column-gap: 20px;
    --umb-block-grid--row-gap: 20px;
}
@container (min-width: 720px) {
    .umb-block-grid__layout-item[data-content-element-type-alias="oneColumnSectionBlock"] .umb-block-grid__layout-container {
        --umb-block-grid--column-gap: 60px;
        --umb-block-grid--row-gap: 60px;
    }
}

/**** My custom website styles: ****/

:root, :host, body, * {
    font-family: 'Open Sans', sans-serif;
    /*font-weight: 300;*/
    line-height: 1.15;
    letter-spacing: 0px;
    font-style: normal;
    margin: 0;
}

section {
    padding: var(--section-padding, 60px 0);
}
section[bright-contrast] {
    color:white;
    --my-bright-contrast: ;
}

.block {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.gallery-block {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.block h2 {
    margin-bottom: 1.5rem;
}

/** only works on website. */
.umb-block-grid__layout-item:has(section[nobackgroundcolor]) +
.umb-block-grid__layout-item section[nobackgroundcolor] {
    padding-top: 0;
}

h1, .h1 {
    --fontSize: 48;
    font-weight: 300;
    line-height: 0.96;
    margin-bottom: calc(1.5rem * .5);
    color: inherit;
}

h2, .h2 {    
    --fontSize: 44;
    font-weight: 300;
    line-height: 1.2;
    color: inherit;
    margin-bottom: calc(1.5rem * .5);
}

/**umb_name:H3*/
h3, .h3 {
    --fontSize: 26;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: calc(1.5rem * .5);
    color: inherit;
}

/**umb_name:H4*/
h4, .h4 {
    --fontSize: 21;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: calc(1.5rem * .5);
    color: inherit;
}

/**umb_name:H5*/
h5, .h5 {
    margin-bottom: calc(1.5rem * .5);
}

blockquote {
    margin: 30px;
    background-color: #333645;
    color: white;
    font-style: italic;
    border-left: 3px solid  #549c90;
    padding: calc(1.5rem * .5);
}

blockquote p {
    font-style: italic;
}
    
    
    
/** Image */
img.image {
    object-fit: cover;
    max-width:100%;
    max-height:100%;
    height: auto;
    width: auto;
    pointer-events: none;
}

.menu-logo {
    object-fit: cover;
    max-width:80px;
    max-height:80px;
    height: auto;
    width: auto;
    pointer-events: none;
}

.content-image {
    object-fit: cover;
    max-width:100%;
    max-height:100%;
    height: auto;
    width: auto;
    pointer-events: none;
    padding: 1rem;
}

#twoColumnLayout-contain img.image {
    object-fit: cover;
    max-width:100%;
    max-height:100%;
    width: 100%;
    pointer-events: none;
}

img.image.fullheight {
    visibility: hidden;
    opacity: 0;
    animation: none;
}

@keyframes zoomInLeftAndGrow {
    0% {
        opacity: 0;
        transform: scale(0.1) translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes zoomInRightAndGrow {
    0% {
        opacity: 0;
        transform: scale(0.1) translateX(100%);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

img.image.fullheight.zoom-in-left-and-grow {
    animation: zoomInLeftAndGrow 0.5s forwards;
}

img.image.fullheight.zoom-in-right-and-grow {
    animation: zoomInRightAndGrow 0.5s forwards;
}

@media (max-width: 1023px) {
    img.image.fullheight {
        object-fit: cover;
        max-width:100%;
        max-height: 400px;
        height: auto;
        width: 100%;
        pointer-events: none;
    }
}

.section .umbBlockGridDemoRichTextBlock{
    padding-top: 0 !important;
}

.umbBlockGridDemoRichTextBlock h1, 
.umbBlockGridDemoRichTextBlock h1, 
.umbBlockGridDemoRichTextBlock h2,
.umbBlockGridDemoRichTextBlock h3,
.umbBlockGridDemoRichTextBlock h4,
.umbBlockGridDemoRichTextBlock h5 {
    color: #549c90 !important;
    /*margin-top: 1.5rem;*/
}

.umbBlockGridDemoRichTextBlock {
    padding: 2rem;
    padding-bottom: 0;
}


.umbBlockGridDemoRichTextBlock ul {
    list-style-type: none; /* remove default bullet points */
}

.umbBlockGridDemoRichTextBlock ul li {
    position: relative; /* make the li element a reference for the ::before pseudo-element */
    padding-left: 30px;
    line-height: 35px;
}

.umbBlockGridDemoRichTextBlock ul li::before {
    font-family: icomoon;
    content: "\ea10";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    color: #549c90;
}

/*@media (min-width:1024px) {*/
/*    .rich-text {*/
/*        !** Using CSS Calculation, which gives 1 for column spans of 1-11 and 2 for column span of 12. *!*/
/*        columns: clamp(1, calc(var(--umb-block-grid--item-column-span) - 10), 2);*/
/*        column-gap: 60px;*/
/*    }*/
/*}*/

/*.rich-text > p:first-child {*/
/*    margin-top: 0;*/
/*}*/

/*!**umb_name:Lead Paragraph*!*/
/*p.lead-paragraph {*/
/*    font-size: 18px;*/
/*}*/

a {
    color: #549c90;
    text-decoration: none;
}

#site-search {
    color: white;
}

small {
    font-size: 13px;
}

/** Hero */

.umb-block-grid__layout-item[data-content-element-type-alias="heroBlock"] .umb-block-grid__area-container,
.umb-block-grid__layout-item[data-content-element-type-alias="heroBlock"] .umb-block-grid__block--view::part(area-container) {
    padding: 0;
}

.hero {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: end;
    padding: 60px 0;
    box-sizing: border-box;
}
.hero[bright-contrast] {
    color: white;
    --my-bright-contrast: ;
}

.hero .hero-background {
    position: absolute;
    inset: 0;
    background-position: 50% 50%;
    background-size: cover;
}

.overlay {
position: absolute;
top: 0;
left: 0; 
width: 100%;
    height: 100%;
    inset: 0;
    opacity: 0.7;
    pointer-events: none;
}

.hero .hero-content {
    position: relative;
    width: 100%;
    
}

.hero .hero-content > .container > h1 {
    text-align: center;
}

/* Breadcrumbs */

.breadcrumb {
    align-items: center;
    justify-content: center;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #549c90;
}

/** Background Section **/

.section{   
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /*padding-top: 20px;*/
    /*padding-bottom: 20px;*/
}

.section[bright-contrast] {
    color: white;
    --my-bright-contrast: ;
}

.btn {
    font-family: Work Sans;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1px;
    border-width: 0px;
    border-style: solid;
    border-radius: 2px;
    text-transform: uppercase;
    -webkit-transition: all .2s;
    transition: all .2s;
    width: inherit;
}

.btn[bright-contrast] {
    color:white;
    --my-bright-contrast: ;
}

.btn-lg {
    line-height: 21px;
    font-size: 18px;
    padding: 17px 40px;
    align-content: center;
    border-radius: 2px;
}

/* Tabs */

.tabs {
    margin-bottom: calc(1.5rem * .5);
}

.tabs h3 {
    color: #549c90;
}

.tabs .list-group {
    width: 50%;
    float: left;
}

.tabs .list-group-item {
    border-radius: 0;  
    border-color: #ebeaea;
    background-color: #ebeaea;
    border-bottom: 1px solid white;
}

.tabs .list-group-item.active {
    border-radius: 0;
    border-color: white;
    background-color: white !important;
    color: black;
    border-left: 3px solid #549c90;
}

.tabs .tab-content {
    border: 1px solid #dee2e6;
    float: left;
    width: 50%;
    background: white;
    padding: 1.5rem;
    color: black;
}
/* Carousel  */

.carousel-item.blue {
    position: relative;
}

.carousel-item.blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 70, 140, 0.5); /* #00468c with 0.5 transparency */;
    z-index: 1;
}

/* a */
/* Basic styling for the container */
.cc-container {
    position: relative;
}

/* Styling for the main image container */
.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin-bottom: 1px;
}

/* The main image inside the container */
.image-container img {
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* The overlay with the specified RGBA color */
.image-container .overlay {
    position: absolute;
    left: 0;
    width: 100%;
    top: 30%;
    height: 40%;
    background-color: rgba(0, 70, 140, 0.7);
    transition: opacity 0.3s ease;
}

/* Hover effect - reduce opacity and zoom the image */
.image-container:hover img {
    transform: scale(1.1); /* You can adjust the zoom level as needed */
    
}

.image-container:hover .overlay {
    background-color: rgba(0, 70, 140, 0.6);
}

/* Centered image */
.centered-image {
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensure the centered image appears above the overlay */
    object-fit: cover;
    width: 150px;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    pointer-events: none;
}

/* Map */
div.map-banner {
    width: 100%;
    height: 740px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 2rem;
}
/* Portfolio */
.portfolio-gallery-image {
    display: none;
    margin-bottom: 25px;
}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

.portfolio-gallery .btn {
    text-transform: capitalize !important;
    font-size: 16px;
    color: white;
}

.portfolio-gallery .btn.active {
    border-top: 4px solid #549c90;
}

.portfolio-item.active {
    background: #549c90;
    color: white;
}
.portfolio-item.active h2 {
    color: white !important;
}

.portfolio-item .carousel-item img {
    border: 1px solid white;
}

.portfolio-item .carousel-control-prev, .portfolio-item .carousel-control-next{
    background: rgba(0, 0, 0, 0.6);
    width: 30px;
    
}
.portfolio-item .carousel-control-next-icon,  .portfolio-item .carousel-control-prev-icon {
    height: 1rem;
    width: 1rem;
}


/* Images */
.image-overlay {
    position: relative;
    width: fit-content;
}

.image-overlay img {
    display: block;
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

/* Initial state */
.image-overlay .link-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%; /* Initial height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(51, 54, 69, 0.93);
    transition: height 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    z-index: 1;
    opacity: 1; /* Initially hidden */
    transform: translateY(0); /* Initially slide down */
}

/* Hover state */
.image-overlay:hover .link-overlay {
    opacity: 1;
    transform: translateY(0); /* Slide up to full height */
    height: 100%; /* Full height */
}

.image-overlay:hover p {
    margin-bottom: 0;
}

.image-overlay:hover .link-overlay .links-container {
    opacity: 1;
}

.links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, 50%);
    opacity: 0;
}

.links-container a {
    display: inline-block;
    margin: 0 5px;
    width: calc((16px) * 2.41);
    height: calc((16px) * 2.41);
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    line-height: 50px;
}

.image-overlay p {
    position: absolute;
    margin-top: -10px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
}

a[data-gallery="grid-gallery"] {
    display: inline-block;
    /*width: 100%;*/
    /*height: 100%;*/
    }

/* Table */
table {
    background-color: transparent;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

table th {
    text-align: center;
}
table td, table th {
    padding: 5px;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid #ccc;
}

tbody tr:nth-child(odd) {
    background-color: #ececec;
}

/** Inspiration */

.inspiration[bright-contrast] {
    --my-bright-contrast: ;
}

.inspiration .area-container {
    max-width: var(--my-container-max-width);
    padding: var(--my-container-padding);
    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    column-gap: 60px;
    row-gap: 20px;
}
@media (min-width: 720px) {
    .inspiration .area-container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.inspiration .left-area {
    grid-column-end: span 1;
    display: block;
    margin-bottom: 60px;
}

.inspiration .right-area {
    grid-column-end: span 1;
    display: block;
    margin-top: 60px;
    margin-right: -120px;
    transform: translateX(-120px);
}

.inspiration .content-area {
    grid-column-end: span 2;
    display: block;
}

.umb-block-grid__layout-item[data-content-element-type-alias="inspirationBlock"] .umb-block-grid__area[data-area-alias="leftArea"] {
    justify-content: start;
}

.umb-block-grid__layout-item[data-content-element-type-alias="inspirationBlock"] .umb-block-grid__area[data-area-alias="rightArea"] {
    justify-content: end;
}

/* Navigation */
/* Styles for fixed navigation bar */
@media screen and (min-width: 992px) {
    .navbar-nav, #site-search {
        margin-top: -18px;
    }
}

.navbar-nav .dropdown-menu {
    background: linear-gradient(180deg, rgb(51, 54, 69) 50%, rgb(30, 36, 68) 100%);
}

.col-megamenu .title {
    color: white;
    border-bottom: 1px dotted #549c90;
    text-align: center;
    padding-bottom: 15px;
}

.list-submenu-items {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.list-submenu-items li {
    margin-top: 10px;
    margin-bottom: 10px;
}

.col-megamenu .strapline {
    font-style: italic;
    color: #549c90;
    font-size: 14px;
}

#header {
    height: 45px !important;
    color: white;
    background: none;
    top: -5px;
}
.col-megamenu.menu-icons .menu-icon {
    float: left;
    padding-right: 10px;
    color: white;
    margin: 5px;
}

.col-megamenu.menu-icons .list-unstyled {
margin-top: 8px;
}


#navigation {
    padding: 15px 15px 15px 15px;
    background: rgba(0,33,66,0.75)
}

#navigation.scroll {
    transition: background-color 0.5s ease-in-out; /* Add transition effect to background color */
    background: rgba(0,33,66,1);
}

@media (max-width: 991px)
{
    #navigation {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(0,33,66,1);
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .reach-us .item {
        padding-bottom: 20px !important;
    }
    
    #header small {
        font-size: 11px;
        margin-top: 8px;
    }
}


.nav-link {
    color:  #fff;
    font-weight: 500;
    text-transform: uppercase;
}

.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
}



@media screen and (min-width: 992px) {
    .nav-item {
        float: left;
    }
}

navbar-nav .umb-block-list {
    float: left !important;
}

.umb-block-list .col {
    float: left !important;
}
.navbar .umb-block-list {
    width: 100%;
}

.col-megamenu {
    padding: 1rem;
    left: 15px;
}

.col-megamenu img {
    padding-bottom: 0.5rem;
}

@media screen {
    
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) {

    .navbar .has-megamenu{position:static!important;}
    .navbar .megamenu{left:25px; right:0; width: calc(100% - 50px); margin-top:0;  }

}
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px){
    .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
        overflow-y: auto;
        max-height: 90vh;
        margin-top:10px;
    }
}
/* ============ mobile view .end// ============ */
.hidden {
    display: none !important;
}


/* Icon Circle */
.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-in-out;
    margin: 0 auto;
    border: 1px solid #549c90;
}

.circle:hover {
    background-color: #64bc7c;
    border: 1px solid #64bc7c;
}

.circle-small {
    width: 32px;
    height: 32px;
}
.circle-medium {
    width: 50px;
    height: 50px;
}

.circle-large {
    width: 84.48px;
    height: 84.48px;
}

.icon-small {
    font-size: 14px;
}

.icon-medium {
    font-size: 25px;
}

.icon-large {
    font-size: 42.24px;
}


.badge.tag {
    background: #00468c;
}

/* Gallery */
.carousel-inner > .carousel-item > img, .carousel-inner > .carousel-item > a > img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    height: 450px;
}

.inner-content {
    height: fit-content; /* Adjust height as per content */
    color: #00468c;
    padding: 3rem;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
}

.inner-content h1, .inner-content p {
    font-weight: bold !important;
    color: white;
    text-shadow: 2px 2px black;
}

/* Social Media */
.social-media {
    display: flex;   
}

.social-media.center, .social-media.justify {
    align-items: center;
    justify-content: center;
}

.social-media.left {
    align-items: flex-start;
    justify-content: flex-start;
}

.social-links {
 float: left;
    margin: 0 3.5px 10px;
}

.social-network-icon {
    border-radius: 50%;
    padding: 12px;
    font-size: 25px;    
    /* color, background-color and border-color should be set dynamically */
}

/* Highlighted Page */
.highlighted-page {
    margin: 0 auto;
}

.highlighted-page-content {
    width: 100%;
    height: 85px;
}

/* News Page */

.news .card .card-title{
    font-size: 23px;
    font-weight: 400;
    color: #549c90;
}

.news .card a {
    color: #549c90;
}

.news .card {
    border: none;
}

.recent-articles {
    margin: 10px;
}


.recent-articles .content {
    
}

.topbar {
    background-color: #07469d !important;
    color: white;
    font-weight: 500;
    padding: 12px;
    margin: 0;
}
/* Topbar */
.topbar .heading {
   color: white;
    font-weight: 500;
    margin: 0;
}

.topbar .heading a {
    color: white;
}

/* Sidebar */

.sidebar .heading {
    background-color: #07469d !important;
    color: white;
    font-weight: 500;
    padding: 12px;
    margin: 0;
}


.sidebar ul {
    list-style-type: none;   
}

.sidebar ul li {
    padding: 3px 0;
    font-size:15px;
}

.sidebar ul li:before {
    position: absolute;
    font-family: icomoon;
    content: "\ea42";    
    margin-left: -24px;
    color: #549c90;
    margin-top: 1px;  
}

.sidebar select {
    background-color: #f2f2f2;
    font-size: 13px;
    color: #5f616f;
    border-width: 3px;
    border-color: rgba(210,210,210,0);
    border-radius: 0px;
    width: 100%;
    height: 44px;
    margin-top: 10px;
}

/* Pagination */

.pagination {
    padding: 20px 0 20px 0;
}

.pagination.first,.pagination.next, .pagination.previous, .pagination.last{
    background: white;
    color:  #549c90;
    border: none;
}

.pagination.current {
    padding: 8px 8px 8px 8px;
    background: #549c90;
    color: white;
    margin: 2px;
}

.pagination a {
    padding: 8px 8px 8px 8px;
    border: 1px solid #549c90;
    margin: 2px;
}

/* Footer */
.footer {
    background-color: #292b37;
    color: white;
}

.footer-logos {
    background-color: #333645;    
}
.footer a:-webkit-any-link {
    color: #9fa0ab;
    text-decoration: none;
}

.footer a:hover {
    color: #549c90;
}

.footer h4 {
   font-size: 20px;
    line-height: 1.3;
    color: #549c90;
    font-weight: 400;    
}

.footer strong {
    font-weight: 700;
}
.footer img.image {
    padding: 40px 0 0 0;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    display: block;
    padding: 10px 10px 10px 12px;
    border-bottom: 1px solid #333645;
    position: relative;
}
 
.copyright{
    color: white;
}

.footer .social-network-icon {
    border-radius: 50%;
    padding: 12px;
    font-size: 25px;
    color: #292B37 !important;
    background-color: #549c90;
    border-color: #549c90;
}

.contact .btn {
    background-color: #549c90;
    color: white;
    width: 100%;
}

.contact .form-control {
    margin-bottom: 20px;
}


/* Carousel */

.carousel-indicators [data-bs-target]{
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.carousel-control-next, .carousel-control-prev {
    opacity: 1;
}

.carousel .call-to-action {
    width: fit-content;
    background-color: #549c90;
    color: white;
    margin: 0 auto;
}

.carousel .carousel-caption {
    padding-top: 13rem;
    z-index: 2;
}

.drk:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    opacity: 0.3;
    z-index: 1;
}

/* Timeline */

/* initially hide both divs */
#timeline-browser, #timeline-mobile {
    display: none;
}

/* show div1 on small screens */
@media screen and (max-width: 859px) {
    #timeline-mobile {
        #timeline-mobile {
            display: block;
        }
    }
}

    /* show div2 on large screens */
    @media screen and (min-width: 860px) {
        #timeline-browser {
            display: block;
        }
    }

    .timeline-post.fade-in-up {
        opacity: 0;
        animation-duration: 1s;
        animation-fill-mode: both;
        -webkit-animation-duration: 1s;
        -webkit-animation-fill-mode: both
    }

    .timeline-post.fade-in-up.visible {
        opacity: 0;
        animation-name: fadeInUp;
        -webkit-animation-name: fadeInUp;
    }

    @keyframes fadeInUp {
        from {
            transform: translate3d(0, 40px, 0)
        }

        to {
            transform: translate3d(0, 0, 0);
            opacity: 1
        }
    }

    @-webkit-keyframes fadeInUp {
        from {
            transform: translate3d(0, 40px, 0)
        }

        to {
            transform: translate3d(0, 0, 0);
            opacity: 1
        }
    }

    /* Shop */
    .product-grid {
        background: #F4F4F4;
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .product-grid .icon li {
        display: inline-block;
    }

    .product-grid .icon li a {
        color: #222;
        font-size: 16px;
        margin: 0 4px;
    }

    .product-grid .title {
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 700;
        line-height: 2px;
    }

    .product-grid .title a {
        color: #222;
        transition: all 0.5s ease-out 0s;
    }

    .product-grid .category {
        font-size: 18px;
        margin: 0 0 3px;
        display: block;
    }

    .action-buttons {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .action-buttons .btn-outline {
        padding: 6px 20px;
        border-radius: 5px;
        border: 2px solid #07469d;
        margin: 0 4px;
    }

    .action-buttons .btn-outline-icon {
        padding: 6px 10px;
        border-radius: 5px;
        border: 2px solid #07469d;
        margin: 0 4px;
    }

    .action-buttons a {
        color: #07469d;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
        cursor: pointer;
        transition: .4s;
    }

    .action-buttons a:hover {
        color: white !important;
        background: #07469d;
    }

    /* HR */
    .solid {
        border-top: 1px solid black;
        opacity: 1
    }

    .solid.orange {
        border-top: 1px solid #549c90;
        opacity: 1
    }

    .solid.blue {
        border-top: 1px solid #07469d;
        opacity: 1
    }

    .solid.white {
        border-top: 1px solid white;
        opacity: 1
    }

    /* Accreditation */
    .accreditation {
        background-color: white;
        color: black;
        padding: 2rem;
    }

    /* Reach Us */
    .reach-us .item p {
        font-size: 1.25rem;
        color: #549c90;
    }

    .reach-us .item:nth-of-type(1) {
        border-right: 1px solid white;
    }

    .reach-us .item:nth-of-type(3) {
        border-left: 1px solid white;
    }

    @media (max-width: 992px) {
        .reach-us .item {
            border: none !important;
        }
    }


/* Carusel Headline Image */

.headline-image {
    background: #fff;
    border-radius: 100%;
    height: 200px;
    width: auto;
    padding: 20px;
    top: 25px;
    position: relative;
}