.hero {
    padding: 140px 0 200px;
    position: relative;
    background-color: #0080C9;
    color: #fff;
}

.hero.type-normal {
    padding: 140px 0 96px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
	font-size: 55px;
}
.hero p {
    font-size: 22px;
    color: #A0CFEA;
    line-height: 1.48;
}

.hero .btn-wrapper {
    margin-top: 40px;
}

.hero .hero-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero .hero-wrapper .text-wrapper {
    width: 65%;
}

.hero .hero-wrapper .image-wrapper {
    width: 35%;
}

.hero.type-normal .hero-wrapper .image-wrapper img,
.hero.type-normal .hero-wrapper .image-wrapper svg {
    max-height: 434px;
}

.hero.type-rounded .hero-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
}

.hero.type-rounded .image-wrapper {
    width: 100%;
/* 	height: 819px; */
	height: 650px;
}
.video-wrapper, .video-wrapper video {
    height: 100%;
}
.video-wrapper video{
	object-fit: cover;
}

.hero.type-rounded .text-wrapper {
    width: 65%;
    background: #0080C9;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 20px 40px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 4;
}

.hero.type-rounded .text-wrapper::before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: -25px;
    left: 0;
    height: 25px;
    width: 50px;
    border-bottom-left-radius: 20px;
    box-shadow: -20px 0px 0 0 #0080C9;
}

.hero.type-rounded .text-wrapper::after {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    right: -50px;
    height: 25px;
    width: 50px;
    border-bottom-left-radius: 20px;
    box-shadow: -20px 0px 0 0 #0080C9;
    z-index: 999;
}

.hero.type-rounded .image-wrapper {
    line-height: 0.78;
}

.hero.type-rounded .image-wrapper video,
.hero.type-rounded .image-wrapper img {
    width: 100%;
    border-radius: 20px;
}

.hero.type-rounded-2 .image-wrapper video,
.hero.type-rounded-2 .image-wrapper img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 20px;
    object-fit: cover;
    -webkit-mask-image: url('../assets/images/mask-hero-imagery-v3.webp');
    -webkit-mask-size: cover;
    mask-image: url('../../assets/images/mask-hero-imagery-v3.webp');
    mask-size: cover;
}

.hero.type-rounded-2 .hero-wrapper {
    position: relative;
}

.hero.type-rounded-2 .image-wrapper {
    width: 75%;
    margin-left: auto;
    border-radius: 20px;
    aspect-ratio: 980 / 605;
    overflow: hidden;
}

.hero.type-rounded-2 .text-wrapper {
    width: 43%;
    background: #0080C9;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
    padding: 0 20px 55px 0;
	z-index: 9;
}

.hero.type-rounded-2 .text-wrapper::before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: -25px;
    left: 0;
    height: 25px;
    width: 50px;
    border-bottom-left-radius: 20px;
    box-shadow: -20px 0px 0 0 #0080C9;
}

.hero.type-rounded .image-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(25%) translateY(25%);
}

.hero.type-rounded-2 .image-icon {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
}

.hero.type-rounded,
.hero.type-rounded-2 {
    padding-left: 24px;
    padding-right: 24px;
}

.hero.type-rounded .container,
.hero.type-rounded-2 .container {
    overflow: hidden;
    padding: 0;
}

@media (max-width:1199px) {

    .hero.type-normal {
        padding: 96px 0;
    }

    .hero {
        padding: 120px 0;
    }

    .hero.type-rounded-2 {
        padding-bottom: 30px;
    }

    .hero p {
        font-size: 20px;
        line-height: 1.4;
    }

    .hero .hero-wrapper {
        gap: 40px;
    }

    .hero .hero-wrapper .text-wrapper {
        width: 55%;
    }

    .hero.type-rounded-2 .hero-wrapper .text-wrapper {
        width: 42%;
    }

    .hero:not(.type-rounded-2) .hero-wrapper .image-wrapper {
        width: 100%;
    }

    .hero.type-rounded .text-wrapper {
        width: 85%;
    }

    .hero.type-rounded .image-wrapper {
        width: 100%;
    }
	.hero.type-rounded .image-wrapper {
		height: 645px;
	}
	.hero.type-rounded .image-icon svg {
		max-width: 140px;
		height: 140px;
	}
}

@media (max-width:991px) {

    .hero.type-normal,
    .hero {
        padding: 100px 0 60px;
    }

    .hero .hero-wrapper {
        flex-wrap: wrap;
    }

    .hero .hero-wrapper .text-wrapper, .hero .hero-wrapper .image-wrapper {
		width: 80%;
	}

    .hero .btn-wrapper {
        margin-top: 20px;
    }

    .hero.type-rounded-2 .image-wrapper {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .hero.type-rounded-2 .hero-wrapper .text-wrapper {
        width: 100%;
        position: relative;
        left: auto;
        top: auto;
        padding: 0;
    }

    .hero.type-rounded .image-icon {
        max-width: 100px;
        height: auto;
    }

    .hero.type-rounded .image-wrapper {
        position: relative;
    }

    .hero.type-rounded .image-icon svg {
        max-width: 100px;
        height: auto;
    }

    .hero.type-rounded-2 .image-icon {
        left: -19%;
    }

    .hero.type-rounded-2 .image-icon svg {
        max-width: 50vw;
    }

    .hero.type-rounded-2 .image-wrapper video,
    .hero.type-rounded-2 .image-wrapper img {
        mask-image: none;
    }
	.hero h1{
		font-size: 40px;
	}
}

@media (max-width:768px) {

    .hero.type-rounded .hero-wrapper {
        gap: 0;
    }

    .hero.type-rounded .image-wrapper,
    .hero.type-rounded .text-wrapper {
        width: 100%;
    }

    .hero.type-rounded .text-wrapper {
        margin-top: 0;
        padding: 20px 0;
        position: relative;
    }

    .hero.type-rounded .text-wrapper::before,
    .hero.type-rounded .text-wrapper::after {
        display: none;
    }

    .hero.type-rounded .text-wrapper h1 {
        margin-top: -60px;
        background-color: #0080C9;
        border-top-right-radius: 12px;
        max-width: 75%;
        position: relative;
        z-index: 9;
    }

    .hero.type-rounded .text-wrapper h1::before {
        content: "";
        position: absolute;
        background-color: transparent;
        top: -25px;
        left: 0;
        height: 25px;
        width: 50px;
        border-bottom-left-radius: 12px;
        box-shadow: -12px 0px 0 0 #0080C9;
    }

    .hero.type-rounded .text-wrapper h1::after {
        content: "";
        position: absolute;
        background-color: transparent;
        top: 15px;
        right: -50px;
        height: 25px;
        width: 50px;
        border-bottom-left-radius: 12px;
        box-shadow: -12px 0px 0 0 #0080C9;
        z-index: -1;
    }

    .hero.type-rounded .video-wrapper {
        margin-top: 5px;
    }

    .hero.type-rounded .video-wrapper video {
        border-radius: 12px;
        aspect-ratio: 342 / 210;
        object-fit: cover;
    }

    .hero.type-rounded .text-wrapper h1 {
        font-size: 30px;
        padding: 12px 0 0 15px;
    }
	.hero p{
		font-size: 18px;
	}
    .hero.type-rounded .text-wrapper p {
        padding: 0 0 0 15px;

    }
	.hero.type-rounded .image-wrapper {
		height: auto;
	}
}

@media (min-width:991px) {
    .hero.type-rounded .text-wrapper {
        bottom: -120px;
    }

    .hero.type-rounded .image-wrapper {
        overflow: hidden;
        position: relative;
    }

    .hero.type-rounded .container {
        overflow: inherit;
    }

    .hero.type-rounded .text-wrapper::after {
        bottom: 0;
    }
}

@media (min-width:1199px) {
    .hero.type-rounded .text-wrapper::after {
        bottom: 120px;
    }
}