@font-face {
    font-family: "GTSuperDisplayBold";
    src: url("../webfonts/GTSuperDisplayBold.woff2")format("woff2");
}

@font-face {
    font-family: "Amina";
    src: url("../webfonts/Amina.woff2")format("woff2");
}

html {
    height: 100%;
}

body {
    height: 100%;
    font-family: "Amina", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

:root {
    --primary-color: #335376;
    --secondary-color: #ff5867;
    --terciary-color: #4e6b87;
}

.container {
    max-width: 1740px;
}

@media (max-width: 1400px) {
    .container {
        max-width: 100% !important;
    }
}

.btn-primary {
    background-color: #335376;
    color: #FFF;
    border-radius: 0px;
    /*display: block;*/
    text-transform: uppercase;
    border: 1px solid transparent;
    font-weight: 400;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--primary-color) !important;
    color: #FFF !important;
    border: 1px solid var(--primary-color) !important;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--terciary-color);
    border-radius: 7px;
    display: inline-block;
    width: 340px;
    border: 1px solid transparent;
    font-weight: 400;
    margin-right: 6px;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    background-color: var(--terciary-color) !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}

.btn-secondary:hover .fab,
.btn-secondary:active  .fab,
.btn-secondary:focus  .fab {
    color: var(--secondary-color) !important;
}

.btn-lg {
    font-size: 18px;
    line-height: 18px;
    padding: 18px 36px;
    max-width: 200px;
}

.btn-lg2 {
    font-size: 22px;
    line-height: 18px;
    padding: 6px 30px;
}

::-moz-selection {
    background: var(--primary-color); /* Gecko Browsers */
    color: #FFF;
    opacity: 1;
}

::selection {
    background: var(--primary-color); /* WebKit/Blink Browsers */
    color: var(--terciary-color);
    opacity: 1;
}

.btn:focus {
    box-shadow: none !important;
}

/*@media (min-width: 992px) {*/
    *:focus {
        outline: none !important;
    }
/*}*/

.w-90 {
    width: 90%;
}

p {
    font-size: 15px;
    line-height: 24px;
    color: #555;
}

ul li {
    font-size: 15px;
    line-height: 24px;
    color: #555;
}

a,
.a {
    color: var(--secondary-color);
}

a:hover,
.a:hover,
a:focus,
.a:focus,
a:active,
.a:active {
    color: #444;
    text-decoration: none;
}

.h1, h1 {
    font-weight: 600;
    font-size: 48px;
    color: var(--secondary-color);
}

.h2, h2 {
    font-size: 20px;
    color: #4d4d4d;
    font-weight: 600;
}

.notransition {
    transition: none !important;
}

main {
    flex-grow: 1;
}

/* home */
.page-home {
    display: flex;
    flex-direction: column;
}

.page-home main {

}


.intro {
    overflow: hidden;
}

.intro > .container {
    background-image: url(../img/photo-2.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 100% 100%;
    height: 800px;
}

.intro .intro-content {
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro .logo {
    position: absolute;
    top: 50px;
    left: 70px;
    z-index: 1;
    filter: brightness(100);
}

.intro .intro-content .title {
    z-index: 1;
    font-family: "GTSuperDisplayBold";
    font-size: 71px;
    color: #FFF;
    margin-left: 50px;
}

@media (max-width: 1400px) {
    .intro .intro-content .title {
        z-index: 1;
        font-family: "GTSuperDisplayBold";
        font-size: 51px;
        color: #FFF;
        margin-left: 50px;
    }   
}

@media (max-width: 991px) {
    .intro .intro-content .title {
        z-index: 1;
        font-family: "GTSuperDisplayBold";
        font-size: 40px;
        color: #FFF;
        margin-left: 50px;
    }   
}

.intro .intro-content .title span {
    display: block;
}

.intro .intro-content p {
    z-index: 1;
    font-family: "Amina", sans-serif;
    font-size: 38px;
    line-height: 48px;
    font-weight: 400;
    margin-left: 50px;
    color: #FFF;
    max-width: 500px;
}

@media (max-width: 1400px) {
    .intro .intro-content p {
        z-index: 1;
        font-family: "Amina", sans-serif;
        font-size: 28px;
        line-height: 38px;
        font-weight: 400;
        margin-left: 50px;
        color: #FFF;
        max-width: 350px;
    }
}

.intro .content-img {
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    clip-path: polygon(0 0, 65% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.intro .intro-picture {
    overflow: hidden;
}



.text-box-1 > .container {
    background-color: var(--secondary-color);
    padding: 100px 100px 250px;
}

@media (max-width: 991px) {
    .text-box-1 > .container {
        background-color: var(--secondary-color);
        padding: 0px 30px 150px;
    }
}

.text-box-1 .tb-title .title {
    font-family: "GTSuperDisplayBold";
    font-size: 83px;
    color: #FFF;
    max-width: 300px;
}

@media (max-width: 1400px) {
    .text-box-1 .tb-title .title {
        font-family: "GTSuperDisplayBold";
        font-size: 63px;
        color: #FFF;
        max-width: 300px;
    }
}

.text-box-1 .tb-text p {
    font-family: "Amina", sans-serif;
    font-size: 24px;
    color: #FFF;
    margin-top: 30px;
    display: block;
}



.text-box-2 {
    overflow: hidden;
    margin-top: -100px;
}

.text-box-2 > .container {
    height: 700px;
}

.text-box-2 .tb-picture {
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-box-2 .tb-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-box-2 .tb-text p {
    z-index: 1;
    font-family: "Amina", sans-serif;
    font-size: 33px;
    line-height: 48px;
    font-weight: 400;
    color: #0d192c;
    max-width: 400px;
}

.text-box-2 .tb-img {
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    clip-path: polygon(0 0, 65% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

@media (max-width: 991px) {
    .text-box-2 .tb-img {
        object-position: center;
    }
}


.text-box-3 {
    margin-top: -100px;
}

.text-box-3 > .container {
    max-width: 1150px;
}

.text-box-3 .item .item-container {
    background-color: #e9eef5;
    padding: 50px;
    width: 100%;
    height: 550px;
}

@media (max-width: 1100px) {
    .text-box-3 .item .item-container {
        background-color: #e9eef5;
        padding: 50px;
        width: 100%;
        height: 650px;
    }
}

@media (max-width: 991px) {
    .text-box-3 .item .item-container {
        height: auto;
    }
}

.text-box-3 .item .title {
    font-family: "GTSuperDisplayBold";
    font-size: 32px;
    line-height: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.text-box-3 .item p {
    font-family: "Amina", sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #0d192c;
}



.video-box {
    margin-top: 100px;
}

.video-box > .container {
    max-width: 1150px;
}

.video-box video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    cursor: pointer;
}

@media (max-width: 991px) {
    .video-box video {
        width: 100%;
        height: 200px;
        object-fit: cover;
        cursor: pointer;
    }
}

.text-box-4 {
    margin-top: -160px;
}

.text-box-4 > .container {
    background-color: var(--secondary-color);
    padding-top: 250px;
    padding-bottom: 120px;
}

.text-box-4 .title {
    font-family: "GTSuperDisplayBold";
    font-size: 83px;
    color: #FFF;
}

@media (max-width: 991px) {
    .text-box-4 .title {
        font-family: "GTSuperDisplayBold";
        font-size: 53px;
        color: #FFF;
    }
}

.text-box-4 p {
    font-family: "Amina", sans-serif;
    font-size: 24px;
    line-height: 30px;
    color: #FFF;
    display: block;
    max-width: 780px;
    margin: 30px auto 0;
}



.text-box-5 {
    overflow: hidden;
    margin: 50px 0;
}

.text-box-5 > .container {
    /*background-image: url(../img/photo-6.jpg);*/
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    /*height: 800px;*/
    position: relative;
}

.text-box-5 > .container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #rgba(13,25,44, .78);
}

.text-box-5 .tb-picture {
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-box-5 .tb-img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /*clip-path: polygon(0% 0%, 100% 0%, 65% 100%, 0% 100%);*/
    clip-path: polygon(0 0, 65% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.text-box-5 .tb-text {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 200px;
    max-width: 900px;
}

@media (max-width: 1700px) {
    .text-box-5 .tb-img {
        width: 100%;
    }
    .text-box-5 .tb-text {
        padding-left: 0;
        max-width: 700px;
    }
}

@media (max-width: 991px) {
    .text-box-5 .tb-text {
        padding-left: 0px;
        margin-top: 20px;
    }
}

.text-box-5 .tb-text .title {
    font-family: "GTSuperDisplayBold";
    font-size: 40px;
    color: var(--secondary-color);
    margin-left: 50px;
}

.text-box-5 .tb-text p {
    font-family: "Amina", sans-serif;
    font-size: 20px;
    color: var(--primary-color);
    margin-left: 50px;
    margin-top: 20px;
}

.text-box-5 .tb-text ul {
    list-style: none;
    max-width: 600px;
}

.text-box-5 .tb-text ul li {
    /*padding: 40px;*/
    margin-left: 20px;
    margin-top: 20px;
    border-radius: 11px;
    /*background: linear-gradient(135deg, rgba(66,82,109,1) 0%, rgba(66,82,109,0) 75%);*/
    font-family: "Amina", sans-serif;
    font-size: 20px;
    /*line-height: 28px;*/
    color: var(--secondary-color);
    max-width: 550px;
}




.text-box-6 {
    overflow: hidden;
    margin: 50px 0;
}

.text-box-6 > .container {
    /*background-image: url(../img/photo-8.jpg);*/
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    /*height: 800px;*/
    position: relative;
}

.text-box-6 > .container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(13,25,44, .78);*/
    background-color: rgba(255,255,255, .78);
}

@media (max-width: 991px) {
    .text-box-6 > .container > .row {
        flex-direction: column-reverse;
    }
}

.text-box-6 .tb-picture {
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-box-6 .tb-img {
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
    position: absolute;
    top: 0;
    left: 0%;
    overflow: hidden;
    z-index: 0;
}

@media (max-width: 991px) {
    .text-box-6 .tb-img {
        top: 0;
        left: -30%;
    }    
}

.text-box-6 .tb-text {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 200px;
}

@media (max-width: 991px) {
    .text-box-6 .tb-text {
        padding-left: 0px;
        margin-top: 20px;
    }
}

.text-box-6 .tb-text .title {
    font-family: "GTSuperDisplayBold";
    font-size: 40px;
    color: var(--secondary-color);
    margin-left: 50px;
}

.text-box-6 .tb-text p {
    font-family: "Amina", sans-serif;
    font-size: 20px;
    color: var(--primary-color);
    margin-left: 50px;
    margin-top: 20px;
}

.text-box-6 .tb-text ul {
    list-style: none;
    max-width: 600px;
}

.text-box-6 .tb-text ul li {
    padding: 40px;
    background-color: red;
    margin-top: 20px;
    border-radius: 11px;
    /*background: linear-gradient(135deg, rgba(66,82,109,1) 0%, rgba(66,82,109,0) 75%);*/
    background-color: #FFF;
    font-family: "Amina", sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #0e1b2d;
    max-width: 550px;
}




.text-box-7 {
    overflow: hidden;
}

.text-box-7 > .container {
    background-image: url(../img/photo-10.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    height: 1000px;
    position: relative;
}

.text-box-7 > .container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13,25,44, .78);
}

.text-box-7 .tb-picture {
    height: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-box-7 .tb-img {
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    /*clip-path: polygon(0% 0%, 100% 0%, 65% 100%, 0% 100%);*/
    clip-path: polygon(0 0, 65% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.text-box-7 .tb-text {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 200px;
}

.text-box-7 .tb-text .title {
    font-family: "GTSuperDisplayBold";
    font-size: 80px;
    color: var(--secondary-color);
    margin-left: 50px;
}

.text-box-7 .tb-text ul {
    list-style: none;
    max-width: 600px;
}

.text-box-7 .tb-text ul li {
    padding: 40px;
    background-color: red;
    margin-top: 20px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(66,82,109,1) 0%, rgba(66,82,109,0) 75%);
    font-family: "Amina", sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #FFF;
    max-width: 550px;
}




.gallery-box-1 > .container {
    background-color: #F7F7F7;
    padding-top: 80px;
    padding-bottom: 80px;
}

.gallery-box-1 > .container .container {
    max-width: 1150px;
}

.gallery-box-1 .title {
    font-family: "GTSuperDisplayBold";
    font-size: 80px;
    line-height: 80px;
    color: var(--primary-color);
    max-width: 1150px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

@media (max-width: 991px) {
    .gallery-box-1 .title {
        font-family: "GTSuperDisplayBold";
        font-size: 40px;
        line-height: 40px;
        color: var(--primary-color);
        max-width: 1150px;
        margin: 0 auto 50px;
        padding: 0 20px;
    }
}

.gallery-box-1 .title span {
    color: var(--secondary-color);
}

.gallery-box-1 .item {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-box-1 .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-box-1 .item .caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "GTSuperDisplayBold";
    font-size: 34px;
    line-height: 42px;
    color: #FFF;
}





.gallery-box-2 > .container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.gallery-box-2 > .container .container {
    max-width: 1150px;
}

.gallery-box-2 .title {
    font-family: "GTSuperDisplayBold";
    font-size: 80px;
    line-height: 80px;
    color: var(--primary-color);
    max-width: 1150px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

@media (max-width: 991px) {
    .gallery-box-2 .title {
        font-family: "GTSuperDisplayBold";
        font-size: 40px;
        line-height: 40px;
        color: var(--primary-color);
        max-width: 1150px;
        margin: 0 auto 20px;
        padding: 0 20px;
    }
}

.gallery-box-2 p {
    font-family: "Amina", sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #0d192c;
    margin-bottom: 60px;
}

.gallery-box-2 .item {
    margin-bottom: 30px;
}

.gallery-box-2 .item .gb-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-box-2 .item > div {
    padding: 0 !important;
}

.gallery-box-2 .item .gb-text {
    padding: 45px !important;
}

.gallery-box-2 .item:nth-child(1) .gb-text {
    background-color: #ff6d29;
}

    .gallery-box-2 .item:nth-child(1) .gb-text .caption-label {
        font-family: "GTSuperDisplayBold";
        font-size: 24px;
        line-height: 28px;
        color: #0d192c;
        margin-bottom: 0px;
    }

    .gallery-box-2 .item:nth-child(1) .gb-text .caption {
        font-family: "Amina", sans-serif;
        font-size: 24px;
        line-height: 28px;
        color: #FFF;
        margin-bottom: 20px;
    }

.gallery-box-2 .item:nth-child(2) .gb-text {
    background-color: #6a5bd3;
}

    .gallery-box-2 .item:nth-child(2) .gb-text .caption-label {
        font-family: "GTSuperDisplayBold";
        font-size: 24px;
        line-height: 28px;
        color: #ffe99d;
        margin-bottom: 0px;
    }

    .gallery-box-2 .item:nth-child(2) .gb-text .caption {
        font-family: "Amina", sans-serif;
        font-size: 24px;
        line-height: 28px;
        color: #FFF;
        margin-bottom: 20px;
    }

.gallery-box-2 .item:nth-child(3) .gb-text {
    background-color: #005154;
}

    .gallery-box-2 .item:nth-child(3) .gb-text .caption-label {
        font-family: "GTSuperDisplayBold";
        font-size: 24px;
        line-height: 28px;
        color: #ff6d29;
        margin-bottom: 0px;
    }

    .gallery-box-2 .item:nth-child(3) .gb-text .caption {
        font-family: "Amina", sans-serif;
        font-size: 24px;
        line-height: 28px;
        color: #FFF;
        margin-bottom: 20px;
    }






.form-box-1 > .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.form-box-1 > .container .container {
    max-width: 1150px;
}

.form-box-1 .title {
    font-family: "GTSuperDisplayBold";
    font-size: 48px;
    line-height: 48px;
    color: var(--primary-color);
    max-width: 1150px;
    margin-top: 40px;
}

.form-box-1 p {
    font-family: "Amina", sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #0d192c;
    margin-bottom: 60px;
}

.form-box-1 .checkbox label input {
    margin-right: 10px;
}


.text-box-8 {
    margin: 20px 0 150px;
}

.text-box-8 > .container {
    /* background-color: var(--secondary-color); */
    /*background-image: url(https://cdn2.hubspot.net/hubfs/4569410/mouthfeel-br/img/photo-2.jpg);*/
}

.text-box-8 .container-title {
    padding: 100px 0 100px 0;
	background-image: url(https://cdn2.hubspot.net/hubfs/4569410/mouthfeel-br/img/photo-2.jpg);
}

.text-box-8 .title {
    font-family: "GTSuperDisplayBold";
    font-size: 83px;
    color: #FFF;
    width: 1100px;
    max-width: 95%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .text-box-8 .title {
        font-family: "GTSuperDisplayBold";
        font-size: 33px;
        color: #FFF;
    }
}

.text-box-8 .subtitle {
    font-family: "Amina", sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 600;
    width: 980px;
    max-width: 95%;
    margin: 50px auto 0;
    text-align: left;
}

@media (max-width: 991px) {
    .text-box-8 .subtitle {
        font-family: "Amina", sans-serif;
        font-size: 18px;
    }
}

.text-box-8 p {
    font-family: "Amina", sans-serif;
    font-size: 24px;
    line-height: 30px;
    color: var(--primary-color);
    display: block;
    width: 980px;
    max-width: 95%;
    margin: 10px auto 0;
    text-align: left;
}

@media (max-width: 991px) {
    .text-box-8 p {
        font-size: 18px;
    }
}

#footer {
    background-color: var(--terciary-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

#footer .title {
    font-family: "Amina", sans-serif;
    font-size: 42px;
    line-height: 48px;
    color: #FFF;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    #footer .title {
        font-family: "Amina", sans-serif;
        font-size: 24px;
        line-height: 30px;
        color: #FFF;
        margin-bottom: 20px;
    }
}

#footer p {
    font-family: "Amina", sans-serif;
    font-size: 24px;
    line-height: 30px;
    color: #FFF;
    max-width: 900px;
    margin: 0 auto;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    margin: 0 5px;
}

.social-icons a .fab {
    font-size: 25px;
    color: #FFF;
}

.social-icons a:hover .fab {
    color: var(--primary-color);
    transition: color .2s ease;
}




.list-1 > .container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.list-1 > .container .container {
    max-width: 1150px;
}

.list-1 .item {
    padding: 0px;
}

.list-1 .title {
    font-family: "GTSuperDisplayBold";
    font-size: 34px;
    line-height: 34px;
    color: #FFF;
    max-width: 1150px;
    margin: 0 auto 20px;
    padding: 0 20px;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
    padding: 6px 30px 6px 40px;
}

.list-1 .item:nth-child(1) .title {
    background-color: #ec6e33;
}

.list-1 .item:nth-child(2) .title {
    background-color: #5959a3;
}

.list-1 .item:nth-child(3) .title {
    background-color: #085255;
}

.list-1 ul {
    list-style: none;
}

.list-1 ul li {
    font-family: "Amina", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4D6987;
    margin-bottom: 10px;
}



.list-2 > .container {
    padding-top: 0px;
    padding-bottom: 80px;
}

.list-2 > .container .container {
    max-width: 1150px;
}

.list-2 .item {
    padding: 0px;
}

.list-2 .title {
    font-family: "GTSuperDisplayBold";
    font-size: 34px;
    line-height: 34px;
    color: #FFF;
    max-width: 1150px;
    margin: 0 auto 20px;
    padding: 0 20px;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
    padding: 6px 30px 6px 40px;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.list-2 .subtitle {
    font-family: "Amina", sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: var(--primary-color);
    font-weight: 600;
    max-width: 1150px;
    margin: 0 auto 20px;
    padding: 0 20px;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
    padding: 6px 30px 6px 40px;
}

.list-2 .item:nth-child(1) .title {
    background-color: #ff5867;
}

.list-2 .item:nth-child(2) .title {
    background-color: #005154;
}

.list-2 .item:nth-child(3) .title {
    background-color: #085255;
}

.list-2 ul {
    list-style: none;
}

.list-2 ul li {
    font-family: "Amina", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4D6987;
    margin-bottom: 10px;
}