:root {
    --color1: #014086;
    --color2: #003671;
    --color3: #6cc697;
    --color4: #007e37;
    --color5: rgb(27 27 27 / 80%);
    --color6: #f2f2f2;
    --color7: #a5a6ab;
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 900;
    src: url('fonts/eot/IRANSansWeb(FaNum)_Black.eot');
    src: url('fonts/eot/IRANSansWeb(FaNum)_Black.eot?#iefix') format('embedded-opentype'),
    /* IE6-8 */
    url('fonts/woff2/IRANSansWeb(FaNum)_Black.woff2') format('woff2'),
    /* FF39+,Chrome36+, Opera24+*/
    url('fonts/woff/IRANSansWeb(FaNum)_Black.woff') format('woff'),
    /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('fonts/ttf/IRANSansWeb(FaNum)_Black.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: bold;
    src: url('fonts/eot/IRANSansWeb(FaNum)_Bold.eot');
    src: url('fonts/eot/IRANSansWeb(FaNum)_Bold.eot?#iefix') format('embedded-opentype'),
    /* IE6-8 */
    url('fonts/woff2/IRANSansWeb(FaNum)_Bold.woff2') format('woff2'),
    /* FF39+,Chrome36+, Opera24+*/
    url('fonts/woff/IRANSansWeb(FaNum)_Bold.woff') format('woff'),
    /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('fonts/ttf/IRANSansWeb(FaNum)_Bold.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 500;
    src: url('fonts/eot/IRANSansWeb(FaNum)_Medium.eot');
    src: url('fonts/eot/IRANSansWeb(FaNum)_Medium.eot?#iefix') format('embedded-opentype'),
    /* IE6-8 */
    url('fonts/woff2/IRANSansWeb(FaNum)_Medium.woff2') format('woff2'),
    /* FF39+,Chrome36+, Opera24+*/
    url('fonts/woff/IRANSansWeb(FaNum)_Medium.woff') format('woff'),
    /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('fonts/ttf/IRANSansWeb(FaNum)_Medium.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 300;
    src: url('fonts/eot/IRANSansWeb(FaNum)_Light.eot');
    src: url('fonts/eot/IRANSansWeb(FaNum)_Light.eot?#iefix') format('embedded-opentype'),
    /* IE6-8 */
    url('fonts/woff2/IRANSansWeb(FaNum)_Light.woff2') format('woff2'),
    /* FF39+,Chrome36+, Opera24+*/
    url('fonts/woff/IRANSansWeb(FaNum)_Light.woff') format('woff'),
    /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('fonts/ttf/IRANSansWeb(FaNum)_Light.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 200;
    src: url('fonts/eot/IRANSansWeb(FaNum)_UltraLight.eot');
    src: url('fonts/eot/IRANSansWeb(FaNum)_UltraLight.eot?#iefix') format('embedded-opentype'),
    /* IE6-8 */
    url('fonts/woff2/IRANSansWeb(FaNum)_UltraLight.woff2') format('woff2'),
    /* FF39+,Chrome36+, Opera24+*/
    url('fonts/woff/IRANSansWeb(FaNum)_UltraLight.woff') format('woff'),
    /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('fonts/ttf/IRANSansWeb(FaNum)_UltraLight.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url('fonts/eot/IRANSansWeb(FaNum).eot');
    src: url('fonts/eot/IRANSansWeb(FaNum).eot?#iefix') format('embedded-opentype'),
    /* IE6-8 */
    url('fonts/woff2/IRANSansWeb(FaNum).woff2') format('woff2'),
    /* FF39+,Chrome36+, Opera24+*/
    url('fonts/woff/IRANSansWeb(FaNum).woff') format('woff'),
    /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('fonts/ttf/IRANSansWeb(FaNum).ttf') format('truetype');
}

* {
    box-sizing: border-box;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

body {
    direction: rtl;
    background-color: #fff;
    font-family: IRANSans;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

header {
    width: 100%;
    height: 100px;
    border-bottom: 2px solid #00a651;
}

.mainHeader {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

    .mainHeader .logo img {
        width: 220px;
        height: 60px;
    }

    .mainHeader .nav-menu {
        flex: 1;
        display: flex;
        justify-content: center;
    }

        .mainHeader .nav-menu .menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }

            .mainHeader .nav-menu .menu li {
                height: 100px;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
            }

                .mainHeader .nav-menu .menu li::after {
                    height: 2px;
                    content: "";
                    width: 0;
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    background-color: #014086;
                    transition: all 0.5s;
                }

                .mainHeader .nav-menu .menu li:hover::after {
                    width: 100%;
                }

                .mainHeader .nav-menu .menu li a {
                    text-decoration: none;
                    color: #014086;
                    font-weight: 800;
                    font-size: 14px;
                    transition: all 0.5s ease;
                    white-space: nowrap;
                }

    .mainHeader span.phone-text {
        font-size: 16px;
        font-weight: 600;
        color: #00a04e;
    }

    .mainHeader .contact-info {
        display: flex;
        gap: 10px;
    }

    .mainHeader span.phone-number {
        font-size: 16px;
        font-weight: 600;
        color: #014389;
    }

.orgSlider1 {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sec1.orgSlider1 .container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.sec1.orgSlider1 .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.orgSlider1 h2.topTitleSlide {
    color: var(--color6);
    padding-right: 40px;
    font-size: 38px;
    position: relative;
}

    .orgSlider1 h2.topTitleSlide::after {
        content: "";
        width: 28px;
        height: 36px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        background-image: url(../img/nim-fav-icon.png);
        background-size: cover;
        background-repeat: no-repeat;
        margin: auto;
    }

.orgSlider1 .TitleSlide {
    color: var(--color7);
    font-size: 24px;
    line-height: 70px;
}

.orgSlider1 .swiper-button-prev,
.orgSlider1 .swiper-container-rtl .swiper-button-next {
    left: -100px;
}

.orgSlider1 .swiper-button-prev,
.orgSlider1 .swiper-container-rtl .swiper-button-prev {
    right: -100px;
}

.orgSlider1 .swiper-button-next,
.orgSlider1 .swiper-button-prev {
    color: var(--color6);
}

    .orgSlider1 .swiper-button-next:after,
    .orgSlider1 .swiper-button-prev:after {
        font-size: 32px;
    }

.orgSlider1 span.swiper-pagination-bullet {
    height: 6px;
    background: var(--color6);
    width: 20px;
    border-radius: 10px;
    margin: 0 2px;
    opacity: 1;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color4);
    width: 30px;
}

.orgSlider1 .swiper-wrapper, .swiper-slide {
    height: auto !important;
}

    .swiper-slide:has(.itemSlideHome) {
        overflow: hidden;
    }

.itemSlideHome {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto !important;
    max-height: 100%;
    overflow: hidden;
}

    .itemSlideHome:before {
        position: relative;
        width: 100%;
        display: block;
        content: '';
        padding-top: 40%;
    }

    .itemSlideHome .pic {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

        .itemSlideHome .pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .itemSlideHome .pic:after {
            position: absolute;
            bottom: 0;
            height: 40%;
            left: -30%;
            width: 50%;
            background: #0cae53;
            content: '';
            filter: blur(150px);
            border-radius: 100%;
            opacity: 1;
            transform: rotate(45deg);
        }

        .itemSlideHome .pic:before {
            position: absolute;
            top: -30%;
            height: 40%;
            right: -20%;
            width: 50%;
            background: var(--color2);
            content: '';
            filter: blur(150px);
            border-radius: 100%;
            opacity: 1;
            transform: rotate(-45deg);
        }

.sec5home {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-image: url(../img/bg-sec5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

    .sec5home .titleCenterSub .subtitle {
        font-size: 24px;
        font-weight: 400;
        color: var(--color1);
    }

.itemDoctor {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #fff;
}

    .itemDoctor figure.pic {
        position: relative;
        width: 100%;
        display: block;
        overflow: hidden;
        border-radius: 200px;
        border: 10px solid #ffffff00;
    }

    .itemDoctor:hover figure.pic {
        position: relative;
        width: 100%;
        display: block;
        overflow: hidden;
        border-radius: 200px;
        border: 10px solid #fff;
    }

    .itemDoctor figure.pic:before {
        position: relative;
        width: 100%;
        display: block;
        content: '';
        padding-top: 100%;
    }

    .itemDoctor figure.pic img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .itemDoctor figure.pic i.hover {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--color1);
        opacity: 0;
        transition: all 0.2s;
    }

    .itemDoctor:hover figure.pic i.hover {
        opacity: 0.7;
    }

    .itemDoctor figure.pic i.hover:before {
        position: absolute;
        width: 28px;
        height: 28px;
        background: url(../img/search-icon.png) no-repeat center / 100%;
        content: '';
        left: 0;
        right: 0;
        bottom: 30px;
        z-index: 100;
        display: block;
        margin: auto;
        transition: all 0.3s;
        transform: scale(4.5);
        opacity: 0;
    }

    .itemDoctor:hover figure.pic i.hover:before {
        opacity: 1;
        transform: scale(1);
    }

    .itemDoctor .titleDept {
        position: relative;
        font-size: 24px;
        font-weight: 500;
        text-align: center;
        color: var(--color6);
    }

    .itemDoctor .subtitleDept {
        position: relative;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: var(--color1);
    }

    .itemDoctor .titleDept:before {
        position: absolute;
        top: 0;
        right: 0;
        width: 25px;
        height: 28px;
        background: url(../img/titleSymbol.png) no-repeat center / 13px;
        content: '';
        margin: auto;
        bottom: 0;
    }











.sec6home {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--color6);
}

    .sec6home .titleCenterSub .subtitle {
        font-size: 24px;
        color: var(--color1);
    }

    .sec6home .titleCenterSub .title {
        position: relative;
        font-size: 36px;
        font-weight: 800;
        color: var(--color4);
    }



.itemNews {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f2f2f2;
}

    .itemNews figure.pic {
        position: relative;
        width: 100%;
        display: block;
        overflow: hidden;
        border-radius: 8px;
    }

        .itemNews figure.pic:before {
            position: relative;
            width: 100%;
            display: block;
            content: '';
            padding-top: 70%;
        }

        .itemNews figure.pic img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .itemNews figure.pic i.hover {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: var(--color4);
            opacity: 0;
            transition: all 0.2s;
        }

    .itemNews:hover figure.pic i.hover {
        opacity: 0.7;
    }

    .itemNews figure.pic:after {
        position: absolute;
        bottom: -20%;
        height: 40%;
        left: -50%;
        width: 140%;
        background: #0cae53;
        content: '';
        filter: blur(51px);
        border-radius: 100%;
        opacity: 0.9;
    }

    .itemNews figure.pic i.hover:before {
        position: absolute;
        width: 38px;
        height: 39px;
        background: url(../img/search-icon.png) no-repeat center / 100%;
        content: '';
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 100;
        display: block;
        margin: auto;
        transition: all 0.3s;
        transform: scale(4.5);
        opacity: 0;
    }

    .itemNews:hover figure.pic i.hover:before {
        opacity: 1;
        transform: scale(1);
    }


    .itemNews .titleDept {
        position: relative;
        padding: 0 20px;
        font-size: 18px;
        font-weight: 500;
        color: var(--color1);
    }

    .itemNews p.textDept {
        font-size: 14px;
        padding: 20px;
        text-align: justify;
        color: var(--color7);
    }

    .itemNews .iconDept {
        width: 16px;
        height: 16px;
        display: block;
        position: absolute;
        bottom: 10px;
        left: 20px;
    }

    .itemNews .titleDept:before {
        position: absolute;
        top: 0;
        right: 0;
        width: 25px;
        height: 28px;
        background: url(../img/titleSymbol.png) no-repeat center / 13px;
        content: '';
        margin: auto;
        bottom: 0;
    }


















.articleSec {
    background-color: #f2f2f2;
    padding: 80px 0 50px 0;
}

    .articleSec .articleSecContent {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .articleSec h4.articleSecText {
        font-size: 24px;
        color: var(--color1);
    }

    .articleSec h2.articleSecTitle {
        font-size: 36px;
        font-weight: 700;
        color: var(--color4);
        margin: 0px 0 80px 0;
    }

    .articleSec .allArticle {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 30px;
        grid-row-gap: 30px;
    }

        .articleSec .allArticle .cardArticle {
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

.allArticle .cardArticle img {
    width: 100%;
    height: 100%;
}

.articleSec .allArticle .cardArticle:nth-child(1) {
    grid-area: 1 / 1 / 3 / 3;
}

.articleSec .allArticle .cardArticle:nth-child(2) {
    grid-area: 1 / 3 / 2 / 4;
}

.articleSec .allArticle .cardArticle:nth-child(3) {
    grid-area: 2 / 3 / 3 / 4;
}

.allArticle .cardArticle .articleTitle {
    font-size: 16px;
    color: var(--color1);
    line-height: 40px
}

.allArticle .cardArticle .cardContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.articleSec .allArticle .cardArticle:nth-child(1) .imgBoxes {
    height: 115%;
}

.articleSec a.articleMore {
    font-size: 12px;
    text-decoration: none;
    color: var(--color7);
    font-weight: 600;
}

.guidFponSec {
    background-image: url(../img/bg-sec8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
}

    .guidFponSec .guidContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-area: 20px;
    }

    .guidFponSec h2.articleSecTitle {
        color: var(--color6);
        font-size: 36px;
    }

h4.articleSecText {
    color: #89dfff;
    font-size: 24px;
    line-height: 60px;
}

footer.foot {
    background-color: var(--color1);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.foot .titleColFoot {
    font-size: 24px;
    color: var(--color4);
    padding-right: 20px;
    margin: 20px 0;
    position: relative;
}

    .foot .titleColFoot::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        background-color: var(--color6);
        width: 3px;
        height: 30px;
    }

.foot .txtColfoot {
    color: var(--color6);
    font-size: 16px;
    padding-right: 20px;
    font-weight: 200;
    line-height: 32px;
    position: relative;
}

    .foot .txtColFoot::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        background-color: var(--color4);
        width: 8px;
        height: 8px;
        border-radius: 5px;
    }

.footerNamad .namads {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

    .footerNamad .namads img {
        height: 110px;
        margin: 15px;
        mix-blend-mode: lighten;
    }

.foot .footerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy {
    width: 100%;
    height: 60px;
    background-color: #002458;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyText {
    color: #1d6ec9;
    font-size: 20px;
    font-weight: 400;
}

.textHistory .titleBlue {
    font-size: 26px;
    line-height: 60px;
}

.articleSec a.btnCustom {
    margin: 20px auto;
}

.imgBoxes {
    position: relative;
    overflow: hidden;
}

    .imgBoxes:after {
        position: absolute;
        bottom: -30%;
        height: 50%;
        left: -40%;
        width: 120%;
        background: #0cae53;
        content: '';
        filter: blur(51px);
        border-radius: 100%;
        transform: rotate(5deg);
        opacity: 0.7;
    }


    .imgBoxes i.hover {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--color4);
        opacity: 0;
        transition: all 0.2s;
    }

.linksfooter {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.imgBoxes:hover i.hover {
    opacity: 0.7;
}


.imgBoxes i.hover:before {
    position: absolute;
    width: 38px;
    height: 39px;
    background: url(../img/search-icon.png) no-repeat center / 100%;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    display: block;
    margin: auto;
    transition: all 0.3s;
    transform: scale(4.5);
    opacity: 0;
}

.imgBoxes:hover i.hover:before {
    opacity: 1;
    transform: scale(1);
}

.sec2home {
    overflow: hidden;
}

.itemdepartments .pic:after {
    content: "";
    width: 200px;
    height: 100px;
    background: var(--color4);
    position: absolute;
    right: -30px;
    bottom: -50px;
    z-index: 1000000;
    display: block;
    filter: blur(20px);
    border-radius: 100%;
    opacity: 0.7;
}

.itemdepartments i.hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

    .itemdepartments i.hover:after {
        content: "";
        width: 200px;
        height: 200px;
        background: var(--color2);
        position: absolute;
        left: -60px;
        top: -120px;
        display: block;
        filter: blur(20px);
        border-radius: 100%;
        opacity: 0.7;
    }

    .itemdepartments i.hover:before {
        content: "";
        width: 40px;
        height: 40px;
        position: absolute;
        left: 10px;
        top: 10px;
        z-index: 2;
        display: block;
        border-radius: 100%;
        background: url(../img/search-icon.png) no-repeat center / 25px;
        transition: all 0.2s;
        transform: scale(2);
        opacity: 0;
    }

.itemdepartments:hover i.hover:before {
    transform: scale(1);
    opacity: 1;
}

.sec2home .swiper-slide {
    display: flex;
    justify-content: center;
    flex-direction: column;
}







:root {
    --color1: #014086;
    --color2: #003671;
    --color3: #86efac;
    --color4: #007e37;
    --color5: rgb(27 27 27 / 80%);
    --color6: #f2f2f2;
}

html,
body {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #000;
}

.row1col {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.row2col {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.row4col {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.row4col {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.row5col {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.col {
    position: relative;
    width: 100%;
}

    .col.middle {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.sliderSec2 {
    position: relative;
    min-width: calc(100% + ((100vw - 1320px) / 2));
    overflow: hidden;
    border-radius: 0px 10px 10px 0px;
}

    .sliderSec2 .itemSlideSec2 {
        position: relative;
        width: 100%;
        display: flex;
    }

        .sliderSec2 .itemSlideSec2 .pic {
            position: relative;
            width: 100%;
        }

            .sliderSec2 .itemSlideSec2 .pic:before {
                position: relative;
                width: 100%;
                display: block;
                content: '';
                padding-top: 46%;
            }

            .sliderSec2 .itemSlideSec2 .pic img {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

.rowbtn {
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.btnCustom {
    position: relative;
    height: 40px;
    padding: 28px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee;
    border-radius: 6px;
    box-shadow: 0px 0px 15px -10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    font-size: 13px;
}

    .btnCustom.btngreen {
        background-color: var(--color4);
        color: #fff;
    }

        .btnCustom.btngreen:hover {
            background-color: var(--color3);
            color: #fff;
        }

    .btnCustom.btnblue {
        background-color: var(--color2);
        color: #fff;
    }

        .btnCustom.btnblue:hover {
            background-color: var(--color1);
            color: #fff;
        }

    .btnCustom.btnwhite {
        background-color: #fff;
        color: var(--color2);
    }

        .btnCustom.btnwhite:hover {
            background-color: #333;
            color: #fff;
        }

.titleBlue {
    position: relative;
    padding-right: 25px;
    font-weight: 900;
    color: var(--color1);
    font-size: 20px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

    .titleBlue:before {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        content: '';
        width: 20px;
        height: 100%;
        background: url(../img/nim-fav-icon.png) no-repeat center / 18px;
    }

.textHistory .description {
    position: relative;
    width: 100%;
    text-align: justify;
    font-size: 16 px;
    line-height: 2;
    color: var(--color5);
}

.sec2home .row2col .col:first-child {
    position: relative;
    padding: 0 0 0 20px;
}

.btncsutomCarousel .swiper-button-prev,
.btncsutomCarousel .swiper-button-next {
    width: 35px;
    height: 50px;
    background: var(--color6);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .btncsutomCarousel .swiper-button-prev:after,
    .btncsutomCarousel .swiper-button-next:after {
        font-size: 20px;
    }

    .btncsutomCarousel .swiper-button-prev:after,
    .btncsutomCarousel .swiper-button-next:after {
        font-size: 29px;
        color: #787878;
    }

section.sec2home .NextPrevSlider .swiper-button-next {
    right: -15px;
}

ul.tikul {
    position: relative;
    list-style: none !important;
    padding: 0 !important;
    margin-top: 20px 0;
}

    ul.tikul li {
        position: relative;
        min-height: 25px;
        padding-right: 30px;
        margin-bottom: 5px;
        font-size: 16px;
    }

        ul.tikul li:before {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 25px;
            height: 25px;
            margin: auto;
            right: 0;
            content: '';
            background: url(../img/tik-icon.png) no-repeat center / 100%;
        }

.sec2home {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.sec3home {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: var(--color1);
    color: #fff;
}

    .sec3home i.bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-repeat: no-repeat;
        background-size: cover;
    }

.carouselsec3 {
    overflow: hidden;
}

.itemService {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

    .itemService figure.pic {
        position: relative;
        width: 100%;
        display: block;
        overflow: hidden;
    }

        .itemService figure.pic:before {
            position: relative;
            width: 100%;
            display: block;
            content: '';
            padding-top: 70%;
        }

        .itemService figure.pic img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .itemService figure.pic i.hover {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: var(--color4);
            opacity: 0;
            transition: all 0.2s;
        }

    .itemService:hover figure.pic i.hover {
        opacity: 0.7;
    }

    .itemService figure.pic:after {
        position: absolute;
        bottom: -70px;
        height: 40%;
        right: -160px;
        width: 120%;
        background: #0cae53;
        content: '';
        filter: blur(51px);
        border-radius: 100%;
    }

    .itemService figure.pic i.hover:before {
        position: absolute;
        width: 38px;
        height: 39px;
        background: url(../img/search-icon.png) no-repeat center / 100%;
        content: '';
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 100;
        display: block;
        margin: auto;
        transition: all 0.3s;
        transform: scale(4.5);
        opacity: 0;
    }

    .itemService:hover figure.pic i.hover:before {
        opacity: 1;
        transform: scale(1);
    }

.NextPrevSlider.arrowWhite .swiper-button-next {
    right: -60px;
    color: #544c4c !important
}

.NextPrevSlider.arrowWhite .swiper-button-prev {
    left: -60px;
    color: #544c4c !important
}

.itemService .titleDept {
    position: relative;
    padding-right: 25px;
    font-size: 20px;
    font-weight: 500;
}

    .itemService .titleDept:before {
        position: absolute;
        top: 0;
        right: 0;
        width: 25px;
        height: 28px;
        background: url(../img/nim-fav-icon.png) no-repeat center / 13px;
        content: '';
        margin: auto;
        bottom: 0;
    }

.titleCenterSub {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}

    .titleCenterSub .title {
        position: relative;
        font-size: 32px;
        font-weight: 900;
        color: #fff;
    }

    .titleCenterSub .subtitle {
        font-size: 20px;
        color: var(--color3);
    }

.sec4home {
    position: relative;
    width: 100%;
    padding: 60px 0 100px;
    overflow: hidden;
}


.titleRightSub {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 50px;
}

    .titleRightSub .title {
        position: relative;
        font-size: 28px;
        font-weight: 900;
        color: var(--color1);
    }

    .titleRightSub .subtitle {
        font-size: 28px;
        color: var(--color3);
        font-weight: 600;
    }


.sec4home .customCarousel .swiper-wrapper {
    padding-bottom: 40px;
}

.swiper-pagination-progressbar {
    position: absolute !important;
    right: 40px !important;
    height: 2px !important;
    width: calc(100% - 40px) !important;
    background-color: #28227a !important;
    width: calc((100% - 40px)) !important;
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        left: auto !important;
        right: 0 !important;
        transform-origin: right top !important;
        background-color: var(--color2) !important;
        height: 6px !important;
        top: -2px !important;
    }

.sec4home .customCarousel {
    position: relative;
    width: calc(100% + ((100vw - 1320px) / 2));
    max-width: calc(100% + ((100vw - 1320px) / 2));
    overflow: hidden;
}










.carouselsec4 {
    max-width: calc(100% + ((100vw - 1320px) / 2)) !important;
    overflow: hidden;
    width: calc(100% + ((100vw - 1320px) / 2));
    position: relative;
}

.sec4home .swiper-slide {
    width: calc(25% - 20px);
}

    .sec4home .swiper-slide.swiper-slide-active {
        width: calc(50% - 20px);
        min-width: 45%;
    }

.swiperHamid {
    direction: ltr;
    max-width: 100%;
    overflow: hidden;
}

.swiper-slide.swiper-slide-active .itemdepartments .pic:before {
    background: red;
    content: '';
    display: block;
    padding-top: 34.6%;
}

section {
    overflow: hidden;
}

.itemdepartments {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 360px;
}

    .itemdepartments .pic {
        position: relative;
        overflow: hidden;
    }

        .itemdepartments .pic:before {
            position: relative;
            display: block;
            content: '';
            padding-top: 71%;
        }

        .itemdepartments .pic img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


.carouselsec4 .swiper-wrapper {
    position: relative;
    padding: 0 0 50px;
}

.carouselsec4 .swiper-pagination-progressbar {
    position: absolute;
    bottom: 0 !important;
    top: auto !important;
    right: 0 !important;
    width: 100% !important;
    background: #e1e1e1 !important;
    height: 3px !important;
}

    .carouselsec4 .swiper-pagination-progressbar span.swiper-pagination-progressbar-fill {
        bottom: 0px !important;
        height: 3px !important;
        top: auto !important;
        margin: 0 !important;
    }
