.homeContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #0A67A3;
    border-radius: 20px;
    /* overflow: hidden; */
}

.homeContent{
    flex: 1;
    color: #fff;
    padding: 0 30px;
}

.homeContent h1{
    font-size: 30px;
    text-transform: uppercase;
}

.homeContent p{
    font-size: 18px;
    margin-top: 10px;
}

.mainSearchContent{
    width: 650px;
}

.homeBg{
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
}

.homeRadial{
    position: absolute;
    background: radial-gradient(#0a66a37c 1%, #0A67A3 70%);
    width: 100%;
    height: 100%;
}

.homeBg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media(min-width: 320px) and (max-width: 550px){
    .homeContainer{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        padding: 40px 0;
        position: relative;
    }

    .homeContent{
        color: #fff;
        padding: 0 20px;
        z-index: 1;
        width: calc(100% - 40px);
    }

    .homeContent h1{
        font-size: 18px;
    }

    .homeContent p{
        font-size: 14px;
    }

    .mainSearchContent{
        width: 100%;
    }

    .homeBg{
        position: absolute;
        width: 100%;
        height: 100%;
    }
}

@media(min-width: 550px) and (max-width: 920px){
    .homeContainer{
        position: relative;
        padding: 40px 0;
    }

    .homeContent{
        color: #fff;
        padding: 0 20px;
        z-index: 1;
        width: calc(100% - 40px);
    }
    
    .homeContent h1{
        font-size: 26px;
    }

    .homeContent p{
        font-size: 16px;
    }

    .mainSearchContent{
        width: 100%;
    }

    .homeBg{
        position: absolute;
        width: 100%;
        height: 100%;
    }
}

/* ourAdvantagesContainer */

.ourAdvantagesContainer{
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 25px;
}

.ourAdvantageImg{
    flex: 0 0 480px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.ourAdvantageImg img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ourAdvantageContent{
    flex: 1 1 auto;
}

.ourAdvantageContent{
    display: flex;
    justify-content: space-between;
    /* align-items: self-start; */
    flex-wrap: wrap;
    gap: 20px;
}

.ourAdvantageItem{
    border-radius: 20px;
    padding: 20px;
    width: calc(50% - 50px);
}

.ourAdvantageItemHeader{
    display: flex;
    align-items: center;
    gap: 10px;
}

.ourAdvantageItemIcon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
}

.ourAdvantageItemIcon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ourAdvantageItem p{
    margin-top: 10px;
    font-size: 14px;
}

/* blue */

.ourAdvantageItem:nth-child(1), .ourAdvantageItem:nth-child(4) {
    background: #0A67A3;
}

.ourAdvantageItem:nth-child(1) .ourAdvantageItemHeader h3, .ourAdvantageItem:nth-child(4) .ourAdvantageItemHeader h3{
    color: #fff;
}

.ourAdvantageItem:nth-child(1) .ourAdvantageItemIcon, .ourAdvantageItem:nth-child(4) .ourAdvantageItemIcon{
    background: #095f99;
}

.ourAdvantageItem:nth-child(1) p, .ourAdvantageItem:nth-child(4) p{
    color: #fff;
}

/* white */

.ourAdvantageItem:nth-child(2), .ourAdvantageItem:nth-child(3) {
    background: #EBECFF;
}

.ourAdvantageItem:nth-child(2) .ourAdvantageItemIcon, .ourAdvantageItem:nth-child(3) .ourAdvantageItemIcon{
    background: #D8D9F2;
}

.ourAdvantageItem:nth-child(2) .ourAdvantageItemHeader h3, .ourAdvantageItem:nth-child(3) .ourAdvantageItemHeader h3{
    color: #0A67A3;
}

.ourAdvantageItem:nth-child(2) p, .ourAdvantageItem:nth-child(3) p{
    color: #575757;
}

@media (max-width: 728px) {
    .ourAdvantagesContainer {
        flex-direction: column;
    }

    .ourAdvantageImg {
        flex: 0 0 auto;
        width: 100%;
    }

    .ourAdvantageContent {
        flex-direction: column;
    }

    .ourAdvantageItem {
        width: calc(100% - 40px);
    }
}


@media(min-width: 729px) and (max-width: 920px){
 .ourAdvantagesContainer {
        flex-direction: column;
    }

    .ourAdvantageImg {
        flex: 0 0 auto;
        width: 50%;
    }

    .ourAdvantageContent {
        flex-direction: column;
    }

    .ourAdvantageItem {
        width: calc(100% - 40px);
    }
}

@media(min-width: 320px) and (max-width: 920px){
    /* blue */

    .ourAdvantageItem:nth-child(1), .ourAdvantageItem:nth-child(3) {
        background: #0A67A3;
    }

    .ourAdvantageItem:nth-child(1) .ourAdvantageItemHeader h3, .ourAdvantageItem:nth-child(3) .ourAdvantageItemHeader h3{
        color: #fff;
    }

    .ourAdvantageItem:nth-child(1) .ourAdvantageItemIcon, .ourAdvantageItem:nth-child(3) .ourAdvantageItemIcon{
        background: #095f99;
    }

    .ourAdvantageItem:nth-child(1) p, .ourAdvantageItem:nth-child(3) p{
        color: #fff;
    }

    /* white */

    .ourAdvantageItem:nth-child(2), .ourAdvantageItem:nth-child(4) {
        background: #EBECFF;
    }

    .ourAdvantageItem:nth-child(2) .ourAdvantageItemIcon, .ourAdvantageItem:nth-child(4) .ourAdvantageItemIcon{
        background: #D8D9F2;
    }

    .ourAdvantageItem:nth-child(2) .ourAdvantageItemHeader h3, .ourAdvantageItem:nth-child(4) .ourAdvantageItemHeader h3{
        color: #0A67A3;
    }

    .ourAdvantageItem:nth-child(2) p, .ourAdvantageItem:nth-child(4) p{
        color: #575757;
    }
}

@media (min-width: 920px) and (max-width: 1320px) {
    .ourAdvantageImg{
        flex: 0 0 40%;
    }
}

/* banner */

.bannerContent{
    position: relative;
    background: #FFBC00;
    overflow: hidden;
    border-radius: 20px;
}

.bannerText{
    padding: 40px;
    z-index: 1;
    position: relative;
    width: 770px;
}

.bannerText h2{
    color: #fff;
    font-size: 26px;
}

.mapAbsolute{
    position: absolute;
    right: -20px;
    top: 0;
    z-index: 0;
}

.bannerText .btn{
    margin-top: 15px;
}

@media(min-width: 320px) and (max-width: 780px){
    .bannerContent{
        position: relative;
        background: #FFBC00;
        overflow: hidden;
        border-radius: 20px;
        padding-top: 140px;
    }

    .bannerText{
        text-align: center;
        padding: 20px;
        z-index: 1;
        position: relative;
        width: calc(100% - 40px);
    }

    .bannerText h2{
        font-size: 20px;
    }

    .mapAbsolute{
        display: flex;
        justify-content: center;
        width: 100%;
        position: absolute;
        right: 0;
        top: 20px;
        /* bottom: 0; */
        z-index: 0;
    }

    .mapAbsolute img{
        height: 120px;
    }
}

@media(min-width: 780px) and (max-width: 920px){
    .bannerText{
        padding: 20px;
        width: 420px;
    }

    .bannerText h2{
        font-size: 20px;
    }

    .mapAbsolute img{
        height: 180px;
    }
}

@media(min-width: 920px) and (max-width: 1320px){
    .bannerText{
        width: 460px;
    }
}

/* about */

.aboutContainer{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 25px;
}

.aboutContent{
    width: calc(100% - 440px);
}

.aboutContentTwo{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.aboutItem{
    padding: 20px;
    border-radius: 20px;
    background: #EBECFF;
}

.aboutItem h2, .aboutItem h3, .aboutItem h4, .aboutItem h5, .aboutItem h6{
    color: #095f99;
    font-size: 16px;
    margin-bottom: 5px;
}

.aboutItem p{
    margin-top: 10px;
    color: #575757;
    font-size: 14px;
}

.aboutContentOne{
    margin-top: 20px;
}

.aboutItemBlue{
    background: #095f99;
}

.aboutItemBlue h2, .aboutItemBlue h3, .aboutItemBlue h4, .aboutItemBlue h5, .aboutItemBlue h6, .aboutItemBlue p{
  color: #fff;
}

.aboutImg{
    position: relative;
    width: 440px;
    border-radius: 20px;
    overflow: hidden;
}

.aboutImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(min-width: 320px) and (max-width: 780px){
    .aboutContainer{
        justify-content: center;
        flex-wrap: wrap;
    }

    .aboutContent{
        width: 100%;
    }

    .aboutContentTwo{
        grid-template-columns: repeat(1, 1fr);
    }

    .aboutImg{
        width: 100%;
    }
}

@media(min-width: 780px) and (max-width: 980px){
    .aboutContent{
        width: calc(100% - 240px);
    }

    .aboutImg{
        width: 240px;
    }
}