@font-face {
    font-family: "iransansx";
    src: url("../font/IRANSansXFaNum-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "iransansx";
    src: url("../font/IRANSansXFaNum-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "iransansx";
    src: url("../font/IRANSansXFaNum-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "iransansx";
    src: url("../font/IRANSansXFaNum-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --iransansx: "iransansx";
    --primary-color: #0d55c5;
    /* --secondery-color: #1c49da; */
    --title-color: #283353;
    --body-color: #777D90;
    --yellow: #FFC700;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

ul {
    padding-inline: 0;
}

body {
    font-family: var(--iransansx);
    background-color: #ffffff;
    overflow: hidden;
}

*,
*::after,
*::after {
    outline: none;
    border: none;
    text-decoration: none;
    margin-block: 0;
    margin-inline: 0;
    list-style: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* header */
header {
    z-index: 999;
    background-color: #ffffff;
    box-shadow: 0 2px 33px 0 #0000001f;
    /* backdrop-filter: blur(6px); */
}

.header-menu .nav-item .nav-link {
    color: var(--body-color);
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
}

.header-menu .nav-item {
    transition: all .3s;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.header-menu .nav-item:hover {
    background-color: #DBE7FF;

}

/*.header-menu .nav-item:hover .nav-link {*/
/*    color: var(--title-color);*/
/*}*/

.header-menu .nav-item path {
    transition: all .3s;
}
.header-logo{
    height:80px;
}
.header-menu .nav-item:hover path {
    stroke: var(--title-color);
}


.callus-header .callus-text {
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 20px;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 24px;
    transition: all .3s;
    position: relative;
    overflow: hidden !important;
    display: flex;
    gap: 8px;
}

.callus-header .callus-text span,
.callus-header .callus-text svg {
    z-index: 2;
    position: relative;
}

.callus-header .callus-text::before {
    content: "";
    position: absolute;
    background-color: var(--yellow);
    border-radius: 50%;
    right: -100%;
    width: 150%;
    height: 300%;
    top: 50%;
    z-index: 1;
    transform: translate(35%, -50%);
    transition: all 0.5s;
}

.callus-header .callus-text:hover:before {
    transform: translate(-50%, -50%);

}

.callus-header .callus-text:hover {
    color: var(--primary-color);
}

.callus-header .callus-text:hover svg path {
    stroke: var(--primary-color);
}

.sub-nav-cnt {
    position: absolute;
    opacity: 0;
    top: 38px;
    background-color: transparent;
    /* width: 100%; */
    right: 0;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 24px;
    visibility: hidden;
}

.nav-item:hover .sub-nav-cnt {
    opacity: 1;
    visibility: visible;
}

.sub-nav-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28%;
    height: 73%;

}

.sub-nav-bg img {
    height: 100%;
    width: 100%;
}

.sub-nav {
    width: 240px;
    background-color: #dbe7ff;
    margin-top: 13px;
    padding: 15px;
    height: 100%;
    z-index: 2;
    position: relative;
    border-radius: 24px;
}

.sub-nav-list {
    line-height: 45px;
}

.sub-nav .sub-nav-item.nav-link {
    color: var(--primary-color);
    font-size: 14px;
    transition: all .3s;
}

.sub-nav .sub-nav-item.nav-link:hover {
    margin-right: 10px;
}

.menu-btn-1 {
    height: 32px;
    width: 36px;
    cursor: pointer;
}

.menu-btn-1 span,
.menu-btn-1 span::before,
.menu-btn-1 span::after {
    background: var(--primary-color);
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    margin-top: 13px;

    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.menu-btn-1 span::before {
    margin-top: -10px;
}

.menu-btn-1 span::after {
    margin-top: 10px;
}

.menu-btn-1.active span {
    background: transparent;
}

.menu-btn-1.active span::before {
    margin-top: 0;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-btn-1.active span::after {
    margin-top: 0;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* mobile menu */


.mobile-menu {
    position: absolute;
    overflow: hidden;
    height: 0;
    transition: all 0.3s;
    top: 101px;
    width: 100%;
    right: 0;
    background-color: #f4f2ff;
    z-index: 20;
    /* overflow-y: scroll; */
}

.mobile-menu-bg {
    height: 40%;
    width: 60%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
}

.mobile-menu-bg img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    margin-top: auto;
}

.mobile-menu-content {
    position: relative;
    z-index: 16;
}

.mobile-menu .mobile-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 16px;
}

.mobile-menu .mobile-list .mobile-list-li .chevron {
    transition: all 0.3s;
}

.mobile-menu .mobile-list .mobile-list-li.open .chevron {
    rotate: 180deg;
}

.mobile-menu .mobile-list .mobile-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu .mobile-list .mobile-list-item a {
    color: var(--title-color);
    font-weight: 700;
}

.mobile-menu .mobile-list .mobile-list-item svg {
    fill: var(--title-color);
}

.mobile-sub-nav {
    height: fit-content;
    max-height: 0;
    transition: all 0.3s;
    overflow: hidden;
}

.mobile-list-li.open .mobile-sub-nav {
    max-height: 300px;

}

.mobile-sub-nav .mobile-sub-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 16px;
}


.collapsible.collapsible--expanded .mobile-menu {
    height: calc(100dvh - 101px);
}

.contact-btn {
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 20px;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 24px;
}

.sub-nav-bg svg {
    mix-blend-mode: overlay;
}

.mobile-menu-bg svg path,
.sub-nav-bg svg path {
    fill: #dfd9ff;
}


/* main */
main {
    margin-top: 112px;
}

.hero-section-slider .slick-prev.slick-arrow {
    position: absolute;
    left: 0;
    z-index: 3;
    top: 50%;
    transform: translate(5px, -50%);
    /* background-color: rgb(255, 255, 255); */
    width: 40px;
    height: 40px;
    /* border: 1px solid #e3e6f0; */
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
}

.hero-section-slider .slick-prev.slick-arrow:hover,
.hero-section-slider .slick-next.slick-arrow:hover {
    /* background-color: var(--primary-color);
    border-color: var(--primary-color); */
}

.hero-section-slider .slick-prev.slick-arrow:hover svg path,
.hero-section-slider .slick-next.slick-arrow:hover svg path {
    fill: #fff;
}

.hero-section-slider .slick-next.slick-arrow {
    position: absolute;
    right: 0;
    z-index: 2;
    top: 50%;
    transform: translate(-5px, -50%);
    /* background-color: rgb(255, 255, 255); */
    width: 35px;
    height: 35px;
    /* border: 1px solid #e3e6f0; */
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
}

.hero-section-slider .slick-prev.slick-arrow svg,
.hero-section-slider .slick-next.slick-arrow svg {
    width: 25px;
    height: 25px;

}

.hero-section-slider .slick-prev.slick-arrow svg path,
.hero-section-slider .slick-next.slick-arrow svg path {
    fill: #0d55c5;
    transition: all .3s;
}

.hero-section-slider .slick-prev.slick-arrow:hover svg path,
.hero-section-slider .slick-next.slick-arrow:hover svg path {
    fill: #4e93ff;
}

.hero-section-slider .slick-next.slick-arrow svg {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 4;
    transform: translate(14px, -25px);
}

.hero-section-slider .slick-prev.slick-arrow svg {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 4;
    transform: translate(-14px, -25px);
}

.hero-section-boxes {
    transform: translateY(-76px);
}

.hero-section-boxes .hero-box {
    background-color: #ffffff;
    border-radius: 16px;
    background-image: url("../img/hero-box-pattern.svg");
    background-repeat: no-repeat;
    height: 142px;
    position: relative;
    background-position: right 7px center;
    box-shadow: 0 1px 23px 0px rgba(0, 0, 0, .1);
    padding-right: 16px;
    padding-left: 16px;
    transition: all .3s;
}

.hero-section-boxes .hero-box .hero-box-img {
    /* height: 110%; */
    position: relative;
}

.hero-box .hero-box-img img {
    position: absolute;
    bottom: 0;
    /* padding-right: 16px; */
    width: 100%;
}

.hero-box .hero-box-text h2 {
    font-size: 16px;
    font-weight: 900;
    line-height: 22px;
}

.hero-box .btn-cnt {
    color: var(--primary-color);
    background-color: #F4F2FF;
    padding: 8px;
    width: fit-content;
    border-radius: 8px;

}

.hero-box .btn-cnt span {
    font-size: 12px;
    font-weight: 400;
}

.hero-box .btn-cnt .arrow-left {
    z-index: -1;
    display: flex;
    margin-right: -16px;
    transition: all .3s;
}

.hero-section-boxes a.nav-link:hover .btn-cnt .arrow-left {
    z-index: 0;
    margin-right: 2px;
    padding-left: 8px;
}

.hero-section-boxes a.nav-link:hover .hero-box {
    box-shadow: 0 1px 23px 0px rgb(0 0 0 / 30%);
}

/* about section */

.about-section .about-right {
    background-image: url("../img/about-pattern.svg");
    background-position: center;
    background-size: contain;
    height: 711px;
    width: 711px;
    margin-top: -85px;
    display: flex;
    margin-left: -78px;
}

.about-section .about-right .d-flex {
    margin-top: 16px;
    /* margin: auto; */
    align-items: center;
    margin-right: 79px;
    position: relative;
}

.about-section .about-right .big-img {
    width: 413px;
    height: 413px;
}

.about-section .about-right .big-img img {
    border-radius: 64px;

}

.about-section .about-right .small-img1 {
    width: 94px;
    height: 94px;
    border-radius: 24px;
    position: absolute;
    left: -44px;
    top: 204px;
}

.about-section .about-right .small-img1 img {
    border-radius: 24px;
    border: 8px solid #F4F2FF;
}

.about-section .about-right .small-img2 {
    width: 136px;
    height: 136px;
    border-radius: 44px;
    position: absolute;
    bottom: 98px;
    right: -33px;
}

.about-section .about-right .small-img2 img {
    border-radius: 44px;
    border: 8px solid #F4F2FF;

}

.about-left .about-title .about-title-line {
    height: 27px;
    width: 4px;
    border-radius: 4px;
    background-color: var(--yellow);
}

.about-left h4 {
    font-size: 26px;
    font-weight: 900;
}

.about-left span.about-body {
    font-weight: 400;
    font-size: 16px;
    color: var(--body-color);
    text-align: justify;
}

.about-left a.about-btn {
    background-color: var(--yellow);
    color: var(--title-color);
    border-radius: 20px;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 24px;
    transition: all .3s;
    position: relative;
    overflow: hidden !important;
}

.about-left a.about-btn span {
    z-index: 2;
    position: relative;
}

.about-btn::before {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    right: -100%;
    width: 150%;
    height: 300%;
    top: 50%;
    z-index: 1;
    transform: translate(35%, -50%);
    transition: all 0.5s;
}

.about-btn:hover:before {
    transform: translate(-50%, -50%);

}

.about-btn:hover span {
    color: var(--yellow) !important;
}


/* services section */
.services-section {
    background-color: var(--primary-color);
    border-radius: 40px;
    /* padding-bottom: 70px; */
    position: relative;
    /* overflow-y: hidden; */
    padding-bottom: 159px;
}

/* .bg-shadow{
    position: absolute;
    top: 0;
    height: 48%;
}
.bg-shadow img{
    position: absolute;
    right: 50%;
    transform: translate(50%, 38%);
    top: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    filter: blur(58px);
    bottom: 0;
    opacity: .7;
} */
.bg-shadow img {
    overflow: hidden;
    position: absolute;
    /* right: 0; */
    bottom: 0;
    height: 100%;
    overflow: hidden;
    /* border-radius: 40px; */
    width: 628px;
    filter: blur(61px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(40%);
    /* min-width: 1200px;*/
}

.bg-shadow {

    opacity: 1;
    height: 100%;
    /* float: right; */
    /* margin-right: 168px; */
    /* margin-top: 124px; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* filter: blur(94px); */
    /* transform: translateY(50%); */
    position: absolute;
    bottom: 0;
    /* right: 67%; */
    overflow: hidden;

}

.services-section .top-pattern {
    position: absolute;
    right: 0;
    top: 0;
    height: 48%;
    overflow: hidden;
    border-radius: 40px;
}

.services-section .top-pattern img {
    mix-blend-mode: overlay;
    opacity: 0.4;
    height: 100%;
    float: right;
    margin-right: -112px;
    margin-top: -40px;
}

.services-section .services-title h4 {
    font-weight: 900;
    font-size: 32px;
    color: #fff;
}

.services-title-line {
    width: 68px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 4px;
}

.services-section .services-slider {
    padding-top: 25px;
    /* padding-right: 50px;
    padding-left: 50px; */
}

/* .services-section .services-slider .services-item{
    width: 102% !important;
} */
.services-slider .slick-track .slick-slide {
    width: fit-content !important;
    margin-right: 24px;
    margin-left: 25px;
}

.services-slider .slick-list {
    /* margin-right: 62px;
      margin-left: 62px; */

}

/* .services-slider .slick-list .slick-track .slick-slide{
    width: 160px!important;
} */
.services-section .services-title-description {
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.services-item {
    gap: 10px;
}

.service-img-cnt {
    width: 140px;
    height: 140px;
    transition: all .3s
}


.services-item:hover .service-item-img {
    width: 128px;
    height: 128px;
    /* border: 12px solid var(--yellow); */
}
.testCat .col-6 .text-center{
    transition: all .3s;
}
.testCat .col-6 .text-center:hover{
    transform: translateY(-4px);
}
.service-item-img img {
    transition: all .3s;

}

.services-item:hover .service-item-img img {
    scale: 1.2;
}

.service-item-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--yellow);
    background-color: #fff;
    box-shadow: 0 0 32.7px 0 rgba(0, 0, 0, .06);
    transition: all .3s;
}

.services-section .services-item-title {
    color: #FFF;
    font-weight: 900;
    font-size: 16px;
}

.bottom-pattern {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50%;
    overflow: hidden;
    border-radius: 40px;
}

.services-section .bottom-pattern img {
    mix-blend-mode: overlay;
    opacity: 0.4;
    height: 100%;
    margin-left: -87px;
    margin-top: 132px;
}

.services-section .arrow-right-bg {
    width: fit-content;
    top: 50%;
    right: 0;
    position: absolute;
    transform: translate(17px, -50%);
}

.services-section .arrow-left-bg {
    width: fit-content;
    top: 50%;
    left: 0;
    position: absolute;
    transform: translate(-17px, -50%);
}

/* .services-slider .slick-slide {
    width: 145px !important;
} */
.services-slider .slick-next {
    display: flex !important;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(15px, -50%);
    z-index: 30;
    width: 33px;
    height: 33px;
    background-color: #ffffff;
    border-radius: 50%;
    justify-content: center;
    border: 1px solid #e3e6f0;
    cursor: pointer;
}

.services-slider .slick-prev {
    display: flex !important;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-15px, -50%);
    z-index: 30;
    width: 33px;
    height: 33px;
    background-color: #ffffff;
    border-radius: 50%;
    justify-content: center;
    border: 1px solid #e3e6f0;
    cursor: pointer;
}

/* .services-slider .slick-initialized .slick-slide {
    margin-right: 23px !important;
    margin-left: -42px !important;
} */


/* QA section */
.QA-section,
.blog-section,
.insurance-section,
.services-section .services-title h4 {
    padding-top: 76px;
}

.QA-section .QA-tittle {
    padding-bottom: 59px;
}

.QA-section h4,
.insurance-section .insurance-title h4,
.blog-section .blog-title h4 {
    font-weight: 900;
    font-size: 32px;
    color: var(--title-color);
}

.QA-section .QA-title-description,
.insurance-section .insurance-title-description,
.blog-section .blog-title .blog-title-description,
.QA-section .QA-tittle a.more-tilte span,
.insurance-section .insurance-title a.more-tilte span,
.blog-section .blog-title a.more-tilte span {
    font-weight: 400;
    font-size: 14px;
    color: var(--primary-color);
    text-align: center;

}

.services-section .services-title a.more-tilte span {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.QA-section .accordion {
    gap: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.more-tilte img {
    transition: all .3s;
}

a.more-tilte:hover .more-title-arrow {
    transform: translateX(-8px);
}

.faq {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-item {
    background-color: #fff;
    border-radius: 16px;
    /* border: 2px solid var(--yellow); */
    padding: 28px 24px;
    height: fit-content;
    transition: all 0.3s;
    background-color: #dbe7ff;
}

.faq-item.open {
    background-color: var(--primary-color);
    /* border: 2px solid var(--primary-color); */
}

.faq-item.open .faq-top h6 {
    color: #fff;
}

.faq-item .faq-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item .faq-top h6 {
    color: var(--title-color);
    font-weight: 900;
    font-size: 16px;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis; */
}

.faq-item .faq-top .faq-btn {
    border-radius: 12px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dbe7ff;
    margin-right: 8px;
}

.faq-item.open .faq-top .faq-btn {
    background-color: #dbe7ff;
}


.faq-item .faq-top .faq-btn .faq-neg {
    opacity: 0;
    width: 0;
}

.faq-item .faq-answer {
    height: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    margin-left: 30px;
}

.faq-item.open .faq-item .faq-top h6 {
    color: #fff;
}

.faq-item.open .faq-top .faq-btn .faq-neg {
    opacity: 1;
    width: 12px;
}

.faq-item.open .faq-top .faq-btn .faq-plus {
    opacity: 0;
    width: 0;
}

.faq-item.open .faq-answer {
    overflow: visible;
    max-height: 60px;
    margin-top: 6px;

}

.faq-item .faq-answer .body-text {
    margin-left: 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
}

.faq-img {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    margin-top: -100px;
}

.faq-img img {
    width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

/* counter section */
.counter-section {
    padding-top: 67px;
}

.counter-section .counter .container {
    background-color: var(--primary-color);
    padding-top: 56px;
    padding-bottom: 56px;
    border-radius: 24px;
}

.record-line {
    border-radius: 3px;
    background-color: var(--yellow);
    height: 22px;
    width: 3px;
    margin-right: 80px;
    margin-left: 80px;
}

.counter-section .honors_num {
    color: #fff;
}

.counter-section .records-item span {
    font-weight: 400;
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.counter-section .honors_num h3,
.counter-section .honors_num p {
    font-weight: 900;
    font-size: 36px;
}


/* insurance section */
.insurance-section {
    padding-bottom: 136px;
}

.insurance-title {
    padding-bottom: 81px;
}

.insu-item {
    filter: grayscale(100%);
    transition: all .3s;
    width: 80% !important;
}

.insu-item img {
    opacity: 0.3;
    transition: all .3s;
    width: 100%;
    height: 100%;
}

.insu-item:hover {
    filter: grayscale(0);
}

.insu-item:hover img {
    opacity: 1;
}


/* time section */
.time-section .container>.d-flex {
    background-color: var(--primary-color);
    transition: all .3s;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.get-time {
    padding-top: 70px;
    padding-bottom: 70px;
    color: #fff;
    font-weight: 900;
    font-size: 24px;
}

.get-time-btn {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    height: fit-content;
    z-index: 10;
    transition: all .3s;
    position: relative;
    overflow: hidden !important;
}

.get-time-bg {
    position: absolute;
    left: 0;
}

.get-time-btn::before {
    content: "";
    position: absolute;
    background-color: #d9d9d9;
    border-radius: 50%;
    right: -100%;
    width: 150%;
    height: 300%;
    top: 50%;
    z-index: 1;
    transform: translate(35%, -50%);
    transition: all 0.5s;
}

.get-time-btn span {
    z-index: 2;
    position: relative;
}

a.time-section:hover .get-time-btn::before {
    transform: translate(-50%, -50%);
}

.get-time-bg img {
    mix-blend-mode: overlay;
    opacity: 0.4;
}

/* blog section */
.blog-box {
    padding-top: 68px;
    padding-bottom: 76px;
}

.blog-box .card {
    border-radius: 24px;
    border: none;
    box-shadow: 0 0 33px 0 rgba(0, 0, 0, .1);
    transition: all .3s;
}

.blog-box .card:hover {
    transform: translateY(-10px);
}

.blog-box .card:hover .blog-img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.blog-box .card .blog-img {
    overflow: hidden;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    height:300px;
  
}
.blog-box .card .blog-img.single-page-blog{
    width: 421px;
    height: 215px;
}
.blog-box .card .blog-img img {
    transition: all .3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-box .card:hover .blog-img img {
    scale: 1.1;

}

.blog-box .card-img-top {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.blog-box .card-body h5 {
    font-weight: 900;
    font-size: 16px;
    color: var(--title-color);
}

.blog-box .card-body .card-text {
    font-size: 12px;
    font-weight: 400;
    color: var(--body-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-box .card-body .calender span {
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);
}

.blog-box .card-body .read-more-btn {
    background-color: #F4F2FF;
    border-radius: 8px;
    padding: 4px 8px;
    width: fit-content;
}

.blog-box .card-body .read-more-btn span {
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);

}

.blog-box .card-body .read-more-btn img {
    display: flex;
    z-index: -1;
    margin-right: -16px;
    transition: all .3s;
}

.blog-section .blog-box a.card:hover .read-more-btn img {
    margin-right: 4px;
    z-index: 1;
}

/* fooeter */
footer {
    background-color: var(--primary-color);
    position: relative;
    border-radius: 24px;
}

footer .container {
    padding-top: 66px;
    padding-bottom: 66px;
    padding-right: 54px;
}

.footer-logo {
    margin-bottom: 24px;
    width:150px;
}

.footer-right {
    padding-left: 38px;
}

.footer-right .footer-description {
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    line-height: 25px;
}

/* footer .footer-right .information {
    padding-top: 62px;
} */

.information {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
}

.footer-line {
    max-width: 408px;
    height: 1px;
    background-color: #0180FF;
    margin-top:20px;
}

.socialmedia {
    padding-top: 19px;
    gap: 18px;
}

.socialmedia a img {
    transition: all .3s;
}

.socialmedia a:hover img {
    transform: translateY(-6px);
}

footer .footer-left h5.footer-menu-tittle {
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    padding-bottom: 12px;

}

footer .row .footer-left li a {
    font-weight: 400;
    font-size: 14px;
    color: #fff !important;
    padding-bottom: 12px;
    transition: all .3s;
}

footer .row .footer-left li a:hover {
    margin-right: 10px;
}

footer hr {
    color: #0180FF;
    opacity: 1;
    margin: unset;
}

.goUp {
    width: 93px;
    display: flex;
    height: 42px;
    top: 0;
    position: absolute;
    right: 50%;
    transform: translate(50%, 0px);
}

.goUp .go-up-bg {
    top: 0;
    position: absolute;
    right: 50%;
    transform: translate(50%, -17px);
}

.goUp .go-up-arrow {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 33px;
    height: 33px;
    top: 0;
    position: absolute;
    right: 50%;
    transform: translate(50%, -17px);
    transition: all .3s;
}

.goUp .go-up-arrow svg {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
}

.goUp .go-up-arrow:hover {
    background-color: #cbcbcb;
}

.goUp .go-up-arrow:hover svg path {
    fill: var(--primary-color);
}

footer .footer-pattern {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 43%;
    width: fit-content;
}

footer .footer-pattern img {
    mix-blend-mode: overlay;
    opacity: 0.4;
    float: left;
    height: 100%;
}

.copy-right {
    padding-top: 32px;
    padding-bottom: 32px;
}

.copy-right .copy-right-text {
    font-weight: 700;
    font-size: 12px;
    color: var(--body-color);
}

.copy-right .adrian-logo {
    gap: 12px;
}

.copy-right .adrian-logo .adrian-text {
    color: var(--body-color);
    font-weight: 700;
    font-size: 12px;
}

.copy-right .adrian-logo .adrian-text .adrian {
    font-weight: 600;
}





/* contact us page */
.breadcrumb {
    background-image: url("../img/brd-img.jpg");
    background-color: #f5f5f5;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.breadcrumb::before {
    position: absolute;
    content: '';
    background: #142941;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    opacity: 0.8;
}

.breadcrumb-name-page h5 {
    font-size: 24px;
    font-weight: 900;
    line-height: 33px;
    z-index: 3;
    color: #fff;
}

.breadcrumb-address a,
.breadcrumb-address .slash {
    font-weight: 400;
    font-size: 12px;
    color: #A9C0C1;
    z-index: 3;
}

.breadcrumb-address .breadcrumb-page {
    font-weight: 400;
    font-size: 12px;
    /* color: #0194FF; */
    color: #A9C0C1;
    z-index: 3;

}

.breadcrumb-address a:hover {
    color: #fff;
}

.contactus-page {
    padding-top: 48px;
    padding-bottom: 58px;
    gap: 48px;
    width: 75%;
    margin: 0 auto;
}

.map {
    height: 579px;
}

.map iframe {
    border-radius: 24px;
}

.information-box {
    background-color: #f7f8fa;
    border: 1px solid #ededed;
    border-radius: 24px;
    gap: 32px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.information-box-title span {
    font-size: 16px;
    font-weight: 900;
    color: var(--primary-color);
}

.information-box-content {
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
}

.information-box-content a img {
    transition: all .3s;
}

.information-box-content a:hover img {
    transform: translateY(-7px);
}

.contact-form {
    background-color: #f7f8fa;
    border: 1px solid #ededed;
    border-radius: 24px;
    padding: 40px 36px;
}

h5.contact-form-title {
    font-weight: 900;
    font-size: 24px;
    color: var(--title-color);
}

.contact-form span {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    padding-bottom: 36px;
    text-align: center;
}

form input,
form textarea {
    background-color: #ffff;
    border: 1px solid #ededed;
    padding: 16px;
    border-radius: 12px;
    width: 100%;
    display: flex;
    text-align: right;

}

form input::placeholder,
form textarea::placeholder {
    font-size: 12px;
    color: #cbcbcb;
    font-weight: 300;
}

form textarea {
    resize: none;
}

form .send-massege-btn {
    background-color: var(--primary-color);
    padding: 5px 24px;
    border-radius: 24px;
    width: fit-content;
    transition: all .3s;
    cursor: pointer;
}

form .send-massege-btn:hover {
    background-color: var(--yellow);
}

form .send-massege-btn span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

form .send-massege-btn:hover span {
    color: black;

}

/* all services page */
.all-services {
    padding-top: 60px;
    padding-bottom: 60px;
}

.all-services-item {
    box-shadow: 0px 0px 12px 0px #9493934d;
    padding: 20px 0px 35px 0;
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
}

span.services-item-title {
    font-weight: 900;
    font-size: 16px;
    transition: all .3s;
}

.all-services-item:hover span.services-item-title {
    color: var(--primary-color);
}



/* all QA page */
.all-QA {
    padding-top: 50px;
    padding-bottom: 40px;
}

.all-QA .faq-item .faq-answer .body-text {
    color: #fff;
    font-size: 14px;
}


/* all blog page */
.all-blog.blog-section {
    padding-top: 0;
}

.all-blog .blog-box {
    padding-top: 50px;
    padding-bottom: 64px;
}

.pag {
    padding-bottom: 30px;
}

.pag li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;

}

.pag li a.active,
.pag li a:hover {
    background-color: #f4f2ff;
}



/* about us page */
.about-pragraph {
    padding-top: 67px;
    padding-bottom: 60px;
    line-height: 22px;
}


/* single blog page */
.single-blog {
    padding-top: 60px;
    padding-bottom: 60px;
}

.single-blog-img {
    padding-bottom: 60px;
}

.single-blog-img img {
    border-radius: 24px;
}

.single-bolg-pragraph p,
.single-service-pragraph p,
.about-pragraph p {
    line-height: 26px;
    font-weight: 400;
    font-size: 16px;
    color: var(--body-color);
    text-align: justify;
}


/* single service page */
.single-service-pragraph {
    padding-top: 60px;
    padding-bottom: 60px;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#forget_overlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #FFF;
    opacity: 0.9;
    z-index: 99999999;
}

.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

.myloader,
.myloader:after {
    border-radius: 50%;
    width: 8em;
    height: 8em;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -4.05em;
}

.myloader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: 0.8em solid var(--primary-color);
    border-left: 0.8em solid rgba(204, 204, 204, 1);
    animation: spin 1.1s infinite linear;
}

.text-center {
    direction: rtl;
    display: flex;
    justify-content: center;
}

.border-red {
    border: 1px solid red !important;
}

.testTitle {
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.testDesc {
    background-color: #e7e7e7;
    color: #000;
    display: flex;
    padding: 16px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.alphabet-nav .nav-item .nav-link {
    color: #808080cc;
    border: 1px solid #80808057;
    text-decoration: none;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all .3;
}

.alphabet-nav .nav-item .nav-link:hover {
    background: #dbe7ff;
}

.error-code {
    font-size: 100px;
    font-weight: 600;
}
.footer-map{
    width: 25px;
    height: 25px;
    transition: all .3s;
}
.footer-map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-map:hover{
    transform: translateY(-4px);
}
.searchbtn {
    left: 5%;
    color: #fff !important;
    font-size: 13px;
    background-color: var(--primary-color) !important;
    padding: 4px;
    border-radius: 10px;
}


.nav-tabs .nav-link.active {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--color-secondary) !important;
    color: white !important;
}

#myTabContent .col-6 a.text-white {
    transition: all .3s;
}

#myTabContent .col-6 a.text-white:hover {
    transform: translateY(-6px);
}

.list-search input {
    width: 280px !important;
    margin-left: 10px;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #d7d7d7 !important;
    border-radius: 20px;
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
}

.alphabet-nav .nav-item {
    margin: 2px;
    height: 50px;
}

.decoration-none {
    text-decoration: none;
}

.send-btn button {
    padding: 8px 24px;
    border-radius: 24px;
    background-color: var(--primary-color);
    color: white;
    transition: all .3s;
}

.form-control {
    border-radius: 12px !important;
}

.send-btn button:hover {
    background-color: var(--yellow);
    color: black;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

label.contact-form-input {
    font-size: 14px;
}

input.form-control::placeholder,
.form-group select {
    font-size: 12px;
}


.quick-menu-vector svg {
    height: 100%;
    object-fit: contain;
    margin-right: 24px;
    margin-left: auto;
}

.faq-item.open .faq-answer {
    transition: all 0.4s;
    direction: ltr;
    overflow-y: scroll;
    transition: height 0.3s;
    overflow-y: scroll;
}

.faq-item.open .faq-answer::-webkit-scrollbar-track {
    background: #00000000;
}

.faq-item .faq-answer .body-text p {
    padding-right: 5px;
    margin-top: -30px;
}

.faq-item.open .faq-answer::-webkit-scrollbar {
    width: 4px;
}

.faq-item.open .faq-answer::-webkit-scrollbar-track {
    background: #dbe7ff00;
    border-radius: 10px;
}

.faq-item.open .faq-answer::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 10px;
}

/* chat section */

.quick-menu {
    /* position: absolute; */
    padding: 24px;
    border-radius: 20px;
    background-color: #dbe7ff;
    width: 250px;
    padding-bottom: 44px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.quick-menu-vector {
    position: absolute;
    bottom: -20px;
    right: 0px;
    height: 26px;
    display: flex;
    width: 100%;
    padding-bottom: 5px;
}

.quick-menu-vector img {
    height: 100%;
    object-fit: contain;
    margin-right: 24px;
    margin-left: auto;
}

.quick-menu .quick-menu-item {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s;
}

.quick-menu .quick-menu-item:hover,
.quick-menu .quick-menu-item:not(.collapsible--expanded):hover>span {
    margin-right: 8px;
}

.quick-menu .quick-menu-item.collapsible--expanded>span,
.quick-menu .quick-menu-item:not(.collapsible--expanded) span {
    transition: all .3s;
}

.quick-menu .quick-menu-item.collapsible--expanded>span:hover {
    margin-right: 8px;
}

.quick-menu .quick-menu-item.collapsible--expanded:hover {
    margin-left: 0px;
}





.chat-cnt {
    position: fixed;
    bottom: 45px;
    right: 12px;
    display: flex;
    flex-direction: column-reverse;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.6s, z-index 1s;
}

.chat-cnt .chat-icon {
    display: flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border-radius: 16px;
    margin-left: auto;
    margin-right: 21px;
}

.chat-cnt .quick-menu-desc {
    position: absolute;
    transition: all 0.3s;
    opacity: 0;
    bottom: 90px;
    right: 0;
    visibility: hidden;
}

.chat-cnt .chat-icon span {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    margin-top: 8px;
}

.chat-cnt .quick-access-icon {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-cnt .quick-access-icon img {
    height: 100%;
    width: 100%;
}

.quick-menu-item.direction {
    position: absolute;
    overflow: hidden;
    height: 44px;
    transition: all 0.3s;
    width: 100%;
    bottom: 0;
    left: 0;
}

.quick-menu-item.direction span {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.quick-menu-item.direction span svg {
    stroke: var(--primary-color);
    transition: all 0.3s;

}

.quick-menu-item.direction:not(.collapsible--expanded) span svg {
    opacity: 0;
    visibility: hidden;
}


.quick-menu-item.direction.collapsible--expanded {
    height: 292px;
    background-color: #dbe7ff;
    width: 100%;
    left: 0;
    border-radius: 20px;
    padding: 20px;
}

.quick-menu-item.direction:not(.collapsible--expanded) {
    padding: 0 20px;
}

.quick-menu-item.direction .direc-icons-cnt {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    opacity: 0;
    transition: all 0.2s;
    /* padding: 0 20px; */
}

.quick-menu-item.direction.collapsible--expanded .direc-icons-cnt {
    opacity: 1;
    transition: all .3s;
}

.quick-menu-item.direction.collapsible--expanded .direc-icons-cnt a:hover {
    margin-right: 8px;
}

.quick-menu-item.direction .direc-icons-cnt a {
    /* width: 38px; */
    height: 38px;
    padding: 2px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-menu-item.direction .direc-icons-cnt a span {
    color: var(--secondary-color);
}

.quick-menu-item.direction .direc-icons-cnt a:hover {
    margin-left: 8px;
}

.quick-menu-item.direction .direc-icons-cnt a img {
    height: 100%;
    object-fit: contain;
}

.chat-cnt.hide {
    opacity: 0;
    z-index: -1;
}

.hero-section-slider-item {
    max-height: 634px;
    min-height: 300px;
}

.hero-section-slider .slick-slide>div {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
}

.hero-section-slider .slick-list {
    border-radius: 24px;
}

.bg-arrow-next {
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translate(46px, -50%);
    right: 0;
}

.bg-arrow-prev {
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translate(-46px, -50%);
    left: 0;
}

.bg-arrow-prev img {
    rotate: 180deg;
}



.gallery-cnt.gallery-pg {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 56px;
    justify-content: center;
    padding-top: 40px;
}

.gallery-cnt.gallery-pg .gallery-item {
    width: 23%;
    height: 200px;
    overflow: hidden;
    border-radius: 24px;
}

.gallery-cnt.gallery-pg .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.back-btn {
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 20px;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 24px;
    transition: all .3s;
    position: relative;
    overflow: hidden !important;
    display: flex;
    gap: 8px;
        margin-top: 36px;
}
.back-btn:hover{
     background-color:var(--yellow);
     
}
.list-search-items{
    transition:all .3s;
}
.list-search-items:hover{
        transform: translateY(-6px);
}

@media (min-width:910px) {
    .chat-cnt:hover .quick-menu-desc {
        opacity: 1;
        bottom: 115px;
        visibility: visible;
    }
}