.firstSection {
    padding: 100px 200px 50px 200px;
}

.firstSection .containContent {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 50px;
}

.firstSection .containContent .textContain {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.firstSection .containContent .textContain h2 {
    font-size: 35px;
    color: #012c50;
}

.firstSection .containContent .imageContain {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.firstSection .imageContain img {
    border-radius: 20px;
    box-shadow: 0px 10px 15px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.firstSection .circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background: #1b91e2;
    top: 0;
    right: 0;
    transform: translateY(-50px);
}

.secondSection {
    padding: 50px 200px;
}

.secondSection .containContent {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 50px;
}

.secondSection .containContent .textContain {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secondSection .containContent .textContain h2 {
    font-size: 35px;
    color: #012c50;
}

.secondSection .containContent .imageContain {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.secondSection .imageContain img {
    border-radius: 20px;
    box-shadow: 0px 10px 15px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.secondSection .circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background: #1b91e2;
    top: 0;
    left: 0;
    transform: translateY(-50px);
}

.thirdSection {
    padding: 20px 200px 100px 200px;
}

.thirdSection .containContent .textContain {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thirdSection .containContent .textContain h2 {
    font-size: 35px;
    color: #012c50;
}

.thirdSection .containContent .imageContain {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thirdSection .imageContain img {
    border-radius: 20px;
    box-shadow: 0px 10px 15px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.thirdSection .circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background: #1b91e2;
    top: 0;
    right: 0;
    transform: translateY(-50px);
}

.areasSection {
    padding: 200px;
    background: url("../images/areas_background_ui_medical_marketing.jpg");
    background-size: cover;
    background-position: top;
}

.areasSection .containContent {
    display: grid;
    grid-template-columns: 50% 50%;
    color: white;
}

.areasSection .containContent .pharagraphContain {
    display: flex;
    align-items: center;
    font-size: 22px;
}

.areasSection .containContent .titleContain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.areasSection .titleContain h2 {
    font-size: 40px;
    line-height: 1;
}

.areasSection .titleContain .title02 {
    font-size: 200px;
    line-height: 1;
}

.areasSection .titleContain .title03 {
    font-size: 100px;
    line-height: 1;
}

.coreSection {
    padding: 100px 0;
}

.coreSection .textContain {
    font-size: 50px;
    color: #012c50;
    text-align: center;
    position: relative;
}

.coreSection .textContain:before {
    content: "";
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 5px;
    border-radius: 10px;
    background: #012c50;
}

.coreSection .containContent .firstRow {
    display: grid;
    grid-template-columns: 12.5% 25% 25% 25% 12.5%;
    margin-top: 50px;
}

.coreSection .containContent .secondRow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 50px;
}

.coreSection .containContent .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
}

.coreSection img {
    padding: 20px;
    transition: .25s;
    cursor: pointer;
}

.coreSection img:hover {
    transform: translateY(-10px) scale(1.05);
}

.coreSection .service h4 {
    font-size: 25px;
    text-align: center;
    color: #012c50;
}

.servicesSection {
    padding: 100px 0;
}

.servicesSection .textContain h2 {
    font-size: 40px;
    color: #012c50;
    text-align: center;
    position: relative;
}

.servicesSection .textContain h2:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 3px;
    border-radius: 10px;
    background: #012c50;
}

.servicesSection .containContent .firstRow {
    display: flex;
    justify-content: center;
}

.servicesSection .containContent .secondRow {
    display: flex;
    justify-content: center;
}

.servicesSection .containContent .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px
}

.servicesSection img {
    width: 50%;
    transition: .25s;
    cursor: pointer;
}

.servicesSection img:hover {
    transform: translateY(-10px) scale(1.025);
}

.servicesSection .service p {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    color: #012c50;
}

@media (max-width: 996px) {
    .bannerSection {
        height: 40vh;
    }
    .bannerSection .containContent h2 {
        font-size: 50px;
    }
    .firstSection {
        padding: 30px 20px;
    }
    .firstSection .containContent {
        grid-template-columns: 1fr;
    }
    .firstSection .textContain h2 {
        text-align: center;
    }
    .firstSection .textContain p {
        font-size: 14px;
        text-align: center;
    }
    .firstSection .imageContain img {
        width: 80%;
    }
    .firstSection .circle {
        width: 200px;
        height: 200px;
        transform: translateY(-30px);
    }
    .secondSection {
        padding: 20px;
    }
    .secondSection .containContent {
        grid-template-columns: 1fr;
    }
    .secondSection .containContent .textContain h2 {
        text-align: center;
    }
    .secondSection .containContent .textContain p {
        font-size: 14px;
        text-align: center;
    }
    .secondSection .containContent .imageContain {
        order: 2;
    }
    .secondSection .imageContain img {
        width: 80%;
    }
    .secondSection .circle {
        width: 200px;
        height: 200px;
        transform: translateY(-30px);
    }
    .thirdSection {
        padding: 20px 20px 50px 20px;
    }
    .thirdSection .containContent {
        grid-template-columns: 1fr;
    }
    .thirdSection .containContent .textContain p {
        font-size: 14px;
        text-align: center;
    }
    .thirdSection .imageContain img {
        width: 80%;
    }
    .thirdSection .circle {
        width: 200px;
        height: 200px;
        transform: translateY(-30px);
    }
    .areasSection {
        padding: 50px 20px;
        background-position: center;
    }
    .areasSection .containContent {
        grid-template-columns: 1fr;
    }
    .areasSection .containContent .pharagraphContain {
        font-size: 18px;
        text-align: center;
        order: 2;
    }
    .areasSection .containContent .titleContain {
        padding: 30px 0;
    }
    .areasSection .titleContain h2 {
        font-size: 30px;
    }
    .areasSection .titleContain .title02 {
        font-size: 100px;
    }
    .areasSection .titleContain .title03 {
        font-size: 70px;
    }
    .coreSection {
        padding: 50px 0;
    }
    .coreSection .textContain {
        font-size: 25px;
    }
    .coreSection .textContain:before {
        width: 50%;
    }
    .coreSection .containContent .firstRow {
        grid-template-columns: 1fr;
    }
    .coreSection .containContent .secondRow {
        grid-template-columns: 1fr;
    }
    .coreSection .containContent .service {
        padding: 20px 50px;
    }
    .coreSection .service h4 {
        font-size: 22px;
    }
    .servicesSection .containContent .firstRow {
        display: block;
    }
    .servicesSection {
        padding: 50px 0;
    }
    .servicesSection .containContent .secondRow {
        display: block;
    }
}