/* Hero section */

.hero {
    margin-top: 60px;
    background: #00273D;
    background: linear-gradient(135deg, rgba(0, 39, 61, 1) 0%, rgba(19, 99, 144, 1) 100%);
    position: relative;
	z-index: 1;
}

.slide__background {
    position: absolute;
    left: 0;
    bottom: 0;
}

.hero__single-slide {
    height: 504px;
    position: relative;
    display: flex !important;
}

.hero__image {
    height: 504px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero__image img {
    height: 100%;
    width: auto;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero .custom-arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 99999;
    background: transparent;
    border: 0;
	padding: 0;
}

.slick-prev {
    left: 18px;
}

.slick-next {
    right: 18px;
}

.hero__container {
    height: 100%;
    z-index: 199;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.hero__content-holder {
    z-index: 2;
}

.hero__content {
    margin-bottom: 60px;
}

.hero__content h1,
.hero__content h2 {
    font-size: 30px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
}

.hero__content h1 strong,
.hero__content h2 strong {
    color: #28C1DD;
    font-weight: 800;
}

.hero__button a {
    text-decoration: none;
    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 164px;
    background: #28C1DD;
    border-radius: 20px;
}

@media only screen and (min-width: 991px) {
	.hero__content-holder {
		max-width: 500px;
	}
}

@media only screen and (max-width: 991px) {
	.hero__content-holder {
		padding: 0 48px;
		max-width: 340px;
	}
	.custom-arrow svg {
		width: 28px;
		height: 28px;
	}
	.hero__content {
		margin-bottom: 16px;
	}
	.hero__content h1, .hero__content h2 {
		font-size: 20px;
	}
	
	.slick-prev {
		left: 10px;
	}
	
	.slick-next {
		right: 10px;
	}
	.hero__image,
	.hero__image img,
	.hero__single-slide {
	height: 406px;	
	}
	
	.hero__image img {
		clip-path: unset;
    	object-fit: cover;
    	object-position: right center;
	}
	
	.slide__background {
		max-width: 163px;
		height: auto;
	}
	
	.hero__single-slide::after {
		content: '';
		display: inline-block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		background: #00273D;
		background: linear-gradient(90deg, rgba(0, 39, 61, 0.95) 0%, rgba(9, 68, 102, 0.83) 46%, rgba(19, 99, 144, 0) 84%);
		z-index: 9;
	}
}

/* about section */
.about {
    padding-top: 100px;
    padding-bottom: 110px;
    position: relative;
}

.about__background {
    position: absolute;
    top: 0;
    right: 0;
    height: initial;
    z-index: -1;
}

.about__images {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.about__left-image,
.about__right-image {
    position: relative;
}

.about__left-image {
    padding-bottom: 45px;
    padding-right: 10px;
}

.about__left-image img {
    border-radius: 0 0 20px 0;
}

.about__right-image {
    padding-top: 38px;
    padding-left: 10px;
    margin-top: 60px;
}

.about__right-image img {
    border-radius: 20px 0 0 0;
}

.about__left-image-background {
    background: #28C1DD;
    border-radius: 0 0 0 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 179px;
    height: 186px;
    z-index: -1;
}

.about__right-image-background {
    background: #00273D;
    border-radius: 0 20px 0 0;
    position: absolute;
    top: 0;
    right: -10px;
    width: 179px;
    height: 186px;
    z-index: -1;
}

.about__content h2 {
    font-size: 24px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 800;
    line-height: 1.3;
    color: #00273D;
    margin-bottom: 18px;
}

.about__content h2 strong {
    color: #28C1DD;
    font-weight: 800;
}

.about__content p {
    font-size: 14px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 400;
    line-height: 1.5;
    color: #00273D;
}

.about__socials {
    margin-top: 30px;
    background-color: #00273D;
    border-radius: 20px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    gap: 30px;
}

.about__socials h3 {
    font-size: 20px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    padding-left: 20px;
}

.about__socials-holder {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.about__socials-holder img {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.about__single-social a {
    text-decoration: none;
}

@media only screen and (min-width: 991px) {
    .about__holder {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .about__images,
    .about__content {
        flex: 0 0 calc(50% - 10px);
    }

    .about__images {
        margin-bottom: 0;
    }

    .about__content h2 {
        font-size: 36px;
    }

    .about__socials {
        gap: 54px;
    }
}


/* what we do section */

.what-we-do {
    padding-top: 20px;
    background: #FFFFFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(244, 244, 244, 1) 100%);
	margin-bottom: 60px;
}

.what-we-do__title {
    text-align: center;
    margin-bottom: 100px;
}

.what-we-do__title h2 {
    font-size: 24px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 800;
    line-height: 1.3;
    color: #00273D;
    text-align: center;
}

.what-we-do__options {
	margin-bottom: 60px;
}

.what-we-do__single-option {
    position: relative;
    margin-bottom: 120px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.what-we-do__single-option:last-of-type {
    margin-bottom: 0;
}

.what-we-do__single-option__image {
    background: #28C1DD;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    padding: 18px;
    border: 10px solid #F4F4F4;
    position: absolute;
    top: -63px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
	display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}

.what-we-do__single-option__image img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

.what-we-do__single-option__holder {
    background: #D9D9D9;
    padding: 76px 20px 25px;
    z-index: 2;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.what-we-do__single-option__background {
    position: absolute;
    left: -30%;
    bottom: -35%;
    z-index: -1;
}

.what-we-do__single-option__title {
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #00273D;
    margin-bottom: 6px;
}

.what-we-do__single-option__title h3 {
    text-align: center;
    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #00273D;
}

.what-we-do__single-option__description {
    padding-bottom: 10px;
    border-bottom: 1px solid #00273D;
    margin-bottom: 6px;
}

.what-we-do__single-option__description p {
    text-align: center;
    font-size: 14px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 300;
    line-height: 1.3;
    color: #00273D;
}

.what-we-do__single-option__disclaimer p {
    text-align: center;
    font-size: 14px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #00273D;
}

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

    .what-we-do__title h2 {
        font-size: 36px;
    }

    .what-we-do__options {
        display: flex;
        flex-flow: row;
        align-items: stretch;
        justify-content: center;
        gap: 50px;
        margin-bottom: 60px;
    }

    .what-we-do__single-option {
        max-width: 225px;
        margin-bottom: 0;
    }
	
	.what-we-do__single-option__holder {	
	height: 100%;
	}
}

/* CTA section */

.cta {
    margin-bottom: 46px;
}

.cta__holder {
    background-color: #00273D;
    padding: 18px 42px;
    border-radius: 30px;
}

.cta__content {
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
    margin-bottom: 12px;
}

.cta__content p {
    text-align: center;
    font-size: 12px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 300;
    line-height: 1.3;
    color: #fff;
}

.cta__gallery {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.cta__gallery img {
	max-width: 125px;
}
@media only screen and (min-width: 991px) {
    .cta__gallery {
        gap: 90px;
    }
}


/* Banners section */

.banners {
    margin-bottom: 52px;
}

.banners__single {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 2/1;
    margin-bottom: 40px;
}

.banners__single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.banners__single a {
    position: relative;
    display: flex;
    flex-flow: row;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 1;
    aspect-ratio: 2/1;
}

.banners__single h4 {
    z-index: 3;
    padding-bottom: 36px;
    padding-left: 36px;

    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.banners__single .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00273D;
    background: linear-gradient(0deg, rgba(0, 39, 61, 1) 14%, rgba(0, 61, 95, 0.67) 58%, rgba(0, 104, 163, 0) 100%);
    z-index: 2;
}

@media only screen and (min-width: 991px) {
    .banners__holder {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .banners__single {
        margin-bottom: 0;
    }
}

/* News section */

.news {
    background: #EDEDED;
    padding-top: 30px;
    padding-bottom: 44px;
}

.news__title-holder {
    margin-bottom: 24px;
}

.news__title {
    margin-bottom: 30px;
}

.news__title h2 {
    font-size: 24px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 800;
    line-height: 1.3;
    color: #00273D;
}

.news__title h2 strong {
    font-weight: 800;
    color: #28C1DD;
}

.news__button-holder {
    padding-bottom: 24px;
    border-bottom: 1px solid #00273D;
}

.news__button {
    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    background: #00273D;
    width: 206px;
    height: 40px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.featured-card {
    margin-bottom: 24px;
}

.featured-posts .big-card .featured-link,
.featured-posts .featured-link {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 20px;
    overflow: hidden;
}

.featured-content {
    padding: 28px 34px;
    background: #fff;
    width: 100%;
}

.featured-date {
    background-color: #EDEDED;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    height: 35px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 10px;

    font-size: 12px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 400;
    line-height: 1.3;
    color: #00273D;
}

.featured-posts .big-card .featured-date {
    color: #fff;
}

.featured-title {
    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #00273D;
    margin-bottom: 16px;
}

.featured-excerpt {
    margin-bottom: 16px;
    font-size: 14px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 300;
    line-height: 1.3;
    color: #00273D;
}

.featured-button span {
    font-size: 14px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 600;
    line-height: 1.3;
    color: #00273D;
}

.featured-card.big-card .featured-content {
    padding-top: 0;
}

.featured-thumb {
    width: 100%;
    object-fit: cover;
}

.featured-card.big-card .featured-date {
    background: #00273D;
    color: #fff;
    margin-top: -17px;
    z-index: 9;
}

.featured-card.big-card .featured-date svg path {
    fill: #fff;
}

.featured-thumb {
    width: 100%;
}

.featured-thumb img {
    width: 100%;
}

@media only screen and (min-width: 991px) {
    .news__title-holder {
        display: flex;
        flex-flow: row;
        align-items: stretch;
        justify-content: space-between;
    }

    .news__title {
        margin-bottom: 0;
    }

    .news__title h2 {
        font-size: 36px;
    }

    .news__title-holder {
        gap: 34px;
    }

    .news__button-holder {
        flex: 1;
        display: flex;
        flex-flow: row;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .featured-posts .featured-link {
        flex-flow: row;
    }

    .big-post .featured-thumb img {
        height: 220px;
    }

    .featured-thumb img {
        height: 190px;
        object-fit: cover;
    }

    .featured-content {
        padding: 14px 12px 16px 8px;
    }

    .featured-posts {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .featured-posts .featured-link {
        align-items: stretch;
    }
    .featured-card.big-card {
        grid-row: 1 / span 2;
        grid-column: 1 / span 1;
    }

    .featured-card {
        grid-column: 2 / span 2;
        margin-bottom: 0;
    }

    .featured-card.big-card .featured-date {
        margin-top: -32px;
    }

    .featured-card.big-card .featured-content {
        padding: 14px 34px 28px 34px;
    }

    .featured-card.big-card .featured-thumb img {
        height: 220px;
    }

    .featured-posts .big-card .featured-link {
        align-items: stretch;
        height: 100%;
    }

    .featured-card.big-card .featured-content {
        flex: 1;
    }
    .featured-thumb img {
        height: 100%;
        max-height: 220px;
        object-fit: cover;
        aspect-ratio: 2/1;
    }

}