:root,
[data-bs-theme=light] {
    --bs-primary: #61C7CB;
    --bs-primary-rgb: 97, 199, 203;
    --bs-primary-text-emphasis: #4a999d;
    --bs-primary-bg-subtle: #e8f8f9;
    --bs-primary-border-subtle: #c5ecee;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: #5cbbbf;
    --bs-btn-hover-bg: #52b3b7;
    --bs-btn-hover-border-color: #4e9a9e;
    --bs-btn-active-bg: #4e9a9e;
    --bs-btn-active-border-color: #458a8e;
    box-shadow: rgb(0 0 0 / 20%) 0px 8px 24px;
}
.btn-atieh:before{
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: #fff;
    background-image: url("../images/icons/arrow-btn.svg");
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 100%;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: rgb(0 0 0 / 20%) 0px 8px 24px;
}
.btn-atieh-secondry:before{
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: #61C7CB;
    background-image: url("../images/icons/arrow-btn-white.svg");
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 100%;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: rgb(0 0 0 / 20%) 0px 8px 24px;
}
.btn-atieh-secondry:hover{
    background-color: #61C7CB!important;
    color: #fff!important;
}
.link-primary:hover,
.link-primary:focus {
    color: rgba(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
    text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

body {
    font-family: KalamehWebFaNum;
    background-color: #FCFCFC;
}
img{
	display: block
}
a {
    text-decoration: none;
    color: #6c757d;
    transition: 0.3s;
}
h1,h2,h3,h4,h5,h6 {
    color: #333;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
li{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
}
.fs-13{
    font-size: 13px;
}
.fs-15{
    font-size: 15px;
}
.responsive img{
	width: 100%;
	height: auto
}
.text-justify{
    text-align: justify;
}
.transition{
    transition: 0.3s;
}
.slick-prev.slick-arrow:before{
    content: url("../images/arrow-right.svg")!important;
}
.slick-next.slick-arrow:before{
    content: url("../images/arrow-left.svg")!important;
}
/*------------------------------------------------------------------
[Table of contents for homepage]
1. Header
2. Intro
3. Services
4. 
5. 
-------------------------------------------------------------------*/
/* ==========================================================
! 01. Header
==============	=========================================== */
header{
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header-menu .menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.header-menu .menu > .menu-item{
    position: relative;
}
.header-menu .menu > .menu-item > a{
    font-size: 16px;
    font-weight: 600;
    color: #666;
    transition: 0.3s;
}
.header-menu .menu > .menu-item > a:hover,
.header-menu .menu > .menu-item.current-menu-item > a{
    color: var(--bs-primary);
}
.header-menu .menu > .menu-item.menu-item-has-children > a{
    padding-bottom: 12px;
}
.header-menu .sub-menu{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 170px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    z-index: 100;
}
.header-menu .menu-item-has-children:hover > .sub-menu,
.header-menu .menu-item-has-children:focus-within > .sub-menu{
    display: block;
}
.header-menu .sub-menu li a{
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #666;
}
.header-menu .sub-menu li a:hover{
    color: var(--bs-primary);
    background: #f8f9fa;
}
/* ==========================================================
! 02. Intro
==============	=========================================== */

/* ==========================================================
! 03. Services
==============	=========================================== */
.service-item{
    background-color: #fff;
    background-image: url('../images/service-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 48px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    padding: 32px;
    margin-bottom: 1.7rem;
    transition: 0.3s;
}
.service-item:hover{
    background-image: url('../images/service-bg-active.png');
}
/* ==========================================================
! 04. Customers
==============	=========================================== */

/* ==========================================================
! 05. contact
==============	=========================================== */
.contact-box{
    background-image: url('../images/contact.png');
    border-radius: 48px;
}
.contact-form input{
    min-height: 50px;
    outline: none;
}
/* ==========================================================
! 06. projects
==============	=========================================== */

/* ==========================================================
! 07. faq
==============	=========================================== */
.accordion-item{
    border: 1px solid #eee;
    border-radius: 48px!important;
    margin-bottom: 10px;
}
.accordion-button{
    background: var(--bs-primary)!important;
    border-radius: 36px!important;
    color: #fff!important;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #eee;
    outline: none!important;
    text-align: right;
    line-height: 1.6;
    font-size: 15px;
}
.accordion-button.collapsed{
    background: #fff!important;
    color: var(--bs-secondary)!important;
}
.accordion-body{
    font-size: 15px;
    color: #333;
    text-align: justify;
}
.accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}
/* ==========================================================
! 08. Blog
==============	=========================================== */

/* ==========================================================
! 09. footer
==============	=========================================== */
.footer-menu ul li{
    margin: 0.5rem 0;
}
.footer-menu ul li:hover a{
    color: var(--bs-primary)!important;
}
/*------------------------------------------------------------------
[Table of contents for Mobinidc]
1. Intro
2. Why
3.
4.
-------------------------------------------------------------------*/
/* ==========================================================
! 01. Intro
==============	=========================================== */
.mobin-intro-head:before{
    position: absolute;
    right: 0;
    top: 10%;
    content: url("../images/mobinidc/pattern-right.svg");
}
.mobin-intro-head:after{
    position: absolute;
    left: 0;
    top: 10%;
    content: url("../images/mobinidc/pattern-left.svg");
}
/* ==========================================================
! 02. Why
==============	=========================================== */
.why-card:hover{
    box-shadow: var(--bs-box-shadow) !important;
}
/* ==========================================================
! 03. Plan
==============	=========================================== */
.plan-card{
    filter: blur(5px);
    opacity: .5;
    transition: all .4s ease;
}
.plan-card.slick-current{
    filter: blur(0);
    opacity: 1;
}
.mobin-plan-slider .slick-prev.slick-arrow{
    right: 11%;
    z-index: 10;
}
.mobin-plan-slider .slick-next.slick-arrow{
    left: 13%;
    z-index: 10;
}
/*------------------------------------------------------------------
[Table of contents for About]
1. Story
2. Purpose
3. Services
4.
5.
-------------------------------------------------------------------*/
/* ==========================================================
! 02. Purpose
==============	=========================================== */
.purpose-card{
    transition: 0.5s ease-out;
}
.purpose-card:hover{
    transform: scale3d(1.1, 1.1, 1.1);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);;
}
/*------------------------------------------------------------------
[Table of contents for AI]
1. Story
2. Purpose
3. Studio
4.
5.
-------------------------------------------------------------------*/
/* ==========================================================
! 03. Studio
==============	=========================================== */
.studio-box{
    background-color: #316466;
}
.studio-step-number{
    width: 45px;
    height: 45px;
    background-color: #316466;
}