/********** Template CSS **********/
:root {
    --body-color: #E4E9F7;
	--sidebar-color: #FFF;
    --pure-white: #FFF;
	--green: #7fdcc6;
	--red: #F3474D;
    --primary: #41b883;
    --primary-shadow: rgba(65, 184, 131,0.2);
    --primary-red: #FF033E;
    --primary-red-darker: #F3474D;
    --primary-color-light: #F6F5FF;
    --primary-green: #7CEAA7 !important;
    --bs-bc-green: #d4edda !important;
    --bs-text-green: #155724 !important;
    --bs-border-green: #003618 !important;
	--toggle-color: #DDD;
	--text-color:#707070;
    --text-color-body: #35495e;
    --animated-botton-bc: rgba(65, 184, 131,0.2);
    --animated-botton-tc: #1f387e;
    --animated-botton-box-shadow: rgba(65, 184, 131,0.4)  0px 15px 25px;
    --dark: #35495e;
    --article-link-color:#002d5b;
	--transition600 : 600ms ease;
	--transition300 : 300ms ease;
    --card-shadow: 0px 0px 9px 0px;
    --card-shadow-hover: 0px 25px 50px;
    --card-shadow-hover-soft:rgba(65, 184, 131,0.4)  0px 15px 25px ;
    --btn-shadow:  0px 0px 9px 0px;
    --box-shadow-soft: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    --gradient: linear-gradient( 0deg, var(--primary-shadow) 0%, var(--primary) 100%);
    --gradient-90: linear-gradient( 90deg, var(--primary-shadow) 0%, var(--primary) 100%);
    --transition-1000ms : 1000ms;
    --transition-500ms : 600ms;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
    background: rgba(0,0,0,0);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
html {
  scroll-behavior: smooth;
}
@media (hover: none) {
 .tooltip
 {
  display: none;
 }
}
.alert-c{
    position: absolute;
    top: 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem!important;
    border: 1px solid #d4edda;
    z-index: 10000;
    border-radius: 8px;
    padding: 20px 16px;
    margin: 20px auto;
    background-color: var(--bs-bc-green);
    box-shadow: var(--btn-shadow) var(--bs-bc-green);
    color: var(--bs-text-green)!important;
    max-width: fit-content;
}
.alert-s-style{
    background-color: #e8f6e9!important;
    color: #195527!important;
    box-shadow: var(--box-shadow-soft);
}
.alert-d-style{
    background-color: #fef2f2;
    box-shadow: var(--box-shadow-soft);
    color: #d53343!important;
}
.progress-bar-alert{
    display: block;
    margin-top: 10px;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition-duration:1000ms;
}
.btn-close{
    color: var(--bs-text-green) !important;
    opacity: 0.8!important;
    transition: var(--transition600);
    margin:15px auto 0 auto;
    width: 100%;
    display: none;
    }
@media (max-width: 960px) {
    .alert-c{
        font-size: 1rem;
        max-width: 80%;
    }
}
.text-primary{
    color: var(--primary) !important;
}
.text-shadow{
    text-shadow: 2px 0px 10px var(--primary);
}
.shadow-c{
     box-shadow: 0px 8px 24px var(--primary-shadow);
}
.orange{
    color: #FF6922;
}
.blue{
    color: rgba(157, 177, 255, 1);
}
.custom-tooltip {
  --bs-tooltip-bg: var(--bs-bc-green) !important;
  --bs-tooltip-color:  var(--bs-text-green) !important;
}
.animated-button {
position: relative;
display: flex;
align-items: center;
/*gap: 4px;*/
padding: 10px 40px;
max-width: fit-content;
min-width: fit-content;
border: 4px solid transparent;
font-size: 16px;
background-color: rgba(65, 184, 131,0.2);
border-radius: 15px;
font-weight: 600;
color: #1f387e;
box-shadow: rgba(65, 184, 131,0.4)  0px 15px 25px;
cursor: pointer;
overflow: hidden;
transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button svg {
position: absolute;
width: 24px;
fill: #1f387e;
z-index: 9;
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button .arr-1 {
right: 16px;
}
.animated-button .arr-2 {
left: -25%;
}
.animated-button .circle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 20px;
height: 20px;
background-color: #c5e5e4;
border-radius: 50%;
opacity: 0;
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button .text {
position: relative;
z-index: 1;
transform: translateX(-12px);
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button:hover {
box-shadow: var(--btn-shadow) var(--primary);
color: #212121;
border-radius: 50px;
}
.animated-button:hover .arr-1 {
right: -25%;
}
.animated-button:hover .arr-2 {
left: 16px;
}
.animated-button:hover .text {
transform: translateX(12px);
}
.animated-button:hover svg {
fill: #1f387e;
}
.animated-button:active {
scale: 0.95;
box-shadow: 0 0 0 4px greenyellow;
}
.animated-button:hover .circle {
width: 220px;
height: 220px;
opacity: 1;
}
.animated-button-red {
position: relative;
display: flex;
align-items: center;
gap: 4px;
padding: 10px 40px;
width: fit-content;
min-width: 150px;
border: 4px solid transparent;
font-size: 16px;
background-color:  #f32f47;
border-radius: 15px;
font-weight: 600;
color: #FFFFFF;
box-shadow: #f32f47  0px 15px 25px;
cursor: pointer;
overflow: hidden;
transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button-red svg {
position: absolute;
width: 24px;
fill: #FFFFFF;
z-index: 9;
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button-red .arr-1 {
right: 16px;
}
.animated-button-red .arr-2 {
left: -25%;
}
.animated-button-red .circle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 20px;
height: 20px;
background-color: rgba(229,44,102,0.28);
border-radius: 50%;
opacity: 0;
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button-red .text {
position: relative;
z-index: 1;
transform: translateX(-12px);
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
color: #FFFFFF;
}
.animated-button-red:hover {
box-shadow: 2px 2px 10px #f32f47;
color: #FFFFFF;
border-radius: 50px;
}
.animated-button-red:hover .arr-1 {
right: -25%;
}
.animated-button-red:hover .arr-2 {
left: 16px;
}
.animated-button-red:hover .text {
transform: translateX(12px);
}
.animated-button-red:hover svg {
fill: white;
}
.animated-button-red:active {
scale: 0.95;
box-shadow: 0 0 0 4px palevioletred;
}
.animated-button-red:hover .circle {
width: 220px;
height: 220px;
opacity: 1;
}
 .btn-grad {
    background-image: linear-gradient(to right, var(--primary) 0%, var(--primary)  51%, #E0EAFC  100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: var(--transition-500ms);
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    box-shadow: var(--btn-shadow) var(--primary);
     direction: rtl;
  }
 .btn-grad.left {
    background-image: linear-gradient(to left, var(--primary) 0%, var(--primary)  51%, #E0EAFC  100%);
    margin: 10px;
    padding: 15px 45px;
    width: 220px;
    text-align: center;
    text-transform: uppercase;
    transition: var(--transition-500ms);
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    box-shadow: var(--btn-shadow) var(--primary);
    direction: rtl;
  }
 .btn-grad.right {
    background-image: linear-gradient(to right, var(--primary) 0%, var(--primary)  51%, #E0EAFC  100%);
    margin: 10px;
    padding: 15px 45px;
    width: 220px;
    text-align: center;
    text-transform: uppercase;
    transition: var(--transition-500ms);
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    cursor: pointer;
    box-shadow: var(--btn-shadow) var(--primary);
    direction: rtl;
    background-position: right center;
  }
  .btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
  .btn-grad.right:hover {
    background-position: left center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
  .btn-grad.left:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
@font-face {
    font-family: IRs;
    src: url("/static/font/IRANSansWeb.71617be58eae.ttf");
    font-display: swap;
}
@font-face {
    font-family: IRy;
    src: url("/static/font/iranyekanwebregularfanum.55f541a7c0ea.woff");
    font-display: swap;
}
@font-face {
    font-family: Dana;
    src: url("/static/font/DanaFaNum-Regular.87b716a3024b.woff");
    font-display: swap;
}
*{
    padding: 0;
    margin: 0;
    font-family: IRy, "Segoe UI", serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    outline: none !important;
    -webkit-appearance: none;
    text-align: right;
    color: var(--dark);
}
h1,h2,h3,h4,h5,h6{
    font-family: Dana, "Segoe UI", serif;;
}
.rtl{
    direction: rtl;
}
a{
    text-decoration: none!important;
}
.rounded-20{
    border-radius: 8px!important;
}
body {
    overflow-x: hidden;
    background-size: auto;
    background: var(--body-color) url("/static/img/header-bg.d0eb315738c1.svg") no-repeat center;
    background-size: cover;
}
.modal#keysSuccessModal .modal-content svg {
	width: 120px;
	display: block;
	margin: 0 auto;
}
@keyframes pulse-black {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 var(--primary);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 var(--primary);
	}
}
@keyframes shockwave {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    box-shadow: 0 0 2px var(--primary), inset 0 0 1px var(--primary);
  }
  95% {
    box-shadow: 0 0 50px transparent, inset 0 0 30px transparent;
  }
  100% {
    -webkit-transform: scale(2.25);
            transform: scale(2.25);
  }
}
.side-social a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  -webkit-animation: shockwave 3s 1.65s ease-out infinite;
          animation: shockwave 3s 1.65s ease-out infinite;
}
.side-social a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  -webkit-animation: shockwave 3s 1.5s ease-out infinite;
          animation: shockwave 3s 1.5s ease-out infinite;
}
.side-social{
    position: fixed;
    top: 40%;
    right: 0px;
    z-index: 1000;
}
.side-social a {
     transition-duration: var(--transition-500ms);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    margin-bottom: 30px;
}
.side-social a i{
    background: none;
    width: 30px;
    height: 30px;
    line-height: 60px;
    text-align: center;
    color: var(--primary);
    font-size: 25px;
    border-radius: 100%;
    cursor: pointer;
    transition-duration: var(--transition-500ms);
    display: flex;
    justify-content: center;
    align-items: center;
    filter:drop-shadow( 0 0 7px rgba(255,255,255,1)) !important;
}
.side-social > a:hover{
    transform: translateX(-15px);
}
.back-to-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 7vh;
    right:1vw;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    box-shadow: var(--btn-shadow) var(--primary);
    z-index: 10000;!important;
    transition-duration: var(--transition-500ms);
    background-color: var(--primary);
    opacity: 0;
    transform: translateX(100%);
    cursor: pointer;
}
 .back-to-top.active{
    opacity: 1;
    transform: translateX(0);
}
.back-to-top i{
    color: var(--pure-white);
    font-size: 1.5rem;
}
.back-to-top:hover i{
    color: var(--primary);
}
.back-to-top:hover{
   background-color: var(--pure-white);
   box-shadow: var(--btn-shadow) var(--primary-shadow);
}
/*** Navbar ***/
.site-header__rgb-color,.site-header__rgb-color-o {
    padding: 0px 0 45px 0;
    position: relative;
    width: 99%;
    margin-top: 3px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    transition-duration: var(--transition-500ms);
}
.nav-bar {
    position: relative;
    top: 45px;
    padding: 0 3rem;
    transition: var(--transition-500ms);
    z-index: 9998;
}
.rounded-20-nav{
    border-radius: 8px 8px 0 0;
}
.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9998;
    top: 0;
}
.navbar {
    transition: var(--transition-500ms);
    padding: 5px 75px;
    box-shadow: var(--box-shadow-soft);
}
@media (max-width: 1500px) {
    .navbar{
    padding: 5px 10px;
    }
}
.dropdown-item {
    direction: rtl;
    text-align: right;
    transition-duration: var(--transition-500ms);
    padding: 15px 10px;

}
.dropdown-item:hover{
    background-color: var(--primary);
    color: white;
    opacity: 1;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
    position: relative;
    min-width: fit-content;
}
.navbar-light .navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 4px;
    scale: 0 1;
    background: var(--primary);
    transition: scale  var(--transition-500ms);
}
.navbar-light .navbar-nav .nav-link:hover::after{
    scale: 1 1;
}
.navbar .dropdown-toggle::after,.sidebar-nav .dropdown-toggle::after {
    border: none!important;
    content: "\e906" !important;
    font-family: "icomoon" !important;
    font-weight: 900!important;
    vertical-align: middle!important;
    margin-right: 5px!important;
    transition: var(--transition-500ms) !important;
}
.navbar .dropdown-toggle{
    margin-right: 30px;
    padding: 25px 0;
    font-size: 16px;
    text-transform: uppercase;
    outline: none;
    position: relative;
    color: var(--dark);
    font-weight: 500;
    display: flex;
    align-items: center;
}
.navbar-collapse{
    border-radius: 0!important;
}
.navbar .dropdown-toggle:hover::after {
    transform: rotate(-180deg) !important;
}
.dropdown-menu{
    border-top: 3px solid var(--primary) !important;
    border-radius:0 0 5px 5px!important;
    box-shadow: var(--card-shadow-hover) rgba(0,0,0,0.11)!important;
    z-index: 10000!important;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,.navbar .dropdown-toggle:hover {
    color: var(--primary);
}
.custom-bg-img{
    padding: 3rem 0;
    background-image: url("/static/landingandfront/img/elements_bg.cbe2cd9063ab.webp"), url("/static/landingandfront/img/elements_bg2.297f894dff8c.webp");
    background-position: left top 20px, right bottom -200px;
    background-repeat: no-repeat;
}

/*slide from left side*/
.sidebar-nav{
    position: fixed;
    background-color: white;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition:transform 300ms linear;
    z-index: 9999;
    transform: translateX(+100%);
}
.sidebar-nav ul {
    margin-top: 20px;
    text-align: right;
    width: 90%;

}
.sidebar-nav li {
    margin: 11px 5px 5px 20px;
    font-size: 1.2rem;
    z-index: 100;
    transition-duration: 200ms;
}
.sidebar-nav li:hover {
    transform: translateX(-3px);
}

#toggle-icon , #toggle-icon-close {
    display: none;
}

@media (max-width: 1112px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }
    .navbar .dropdown-toggle{
        align-items: start;
        margin: 0;
        padding: 10px 0;
    }
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
    .navbar-collapse.collapse{
    padding-right: 10px;
    transition-duration: var(--transition-500ms);
}
    .nav-right .nav-item{
    display: none;
}
#toggle-icon {
    display: inline;
    cursor: pointer;
    z-index: 1000;
    margin-left: auto!important;
}
#toggle-icon i {

}
}
.navbar-light .navbar-brand {
    height: 75px;
}
.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-500ms);
   }
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: var(--transition-500ms);
        opacity: 1;
    }
}
.testimonial-carousel.swiper{
    width: 100%;
    max-width: 88%;
    height: 100%;
    margin-bottom: 50px;
}
/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -165px;
    }
}
.canvas-container{
    padding: 160px 50px;
    margin-top: 70px;
    height: 100%;
    /*background-color: var(--sidebar-color);*/
}
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 9999!important;
}
.header-carousel .owl-nav .owl-prev{
    z-index: 9999!important;
    position: relative;
}
.header-carousel .owl-nav .owl-prev i,
.header-carousel .owl-nav .owl-next i{
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px 0px 0px 10px;
    font-size: 20px;
    transition: var(--transition-500ms);
    border: none;
    z-index: 9999!important;
    box-shadow: var(--btn-shadow) var(--primary-shadow);
}
.header-carousel .owl-nav .owl-prev:hover i,
.header-carousel .owl-nav .owl-next:hover i{
    background: var(--dark);
}
@media (max-width: 768px) {
    .header-carousel .owl-nav {
        display: none;
    }
    .canvas-container {
        padding: 10px 5px;
    }
}
.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}
.card-c {
  width: 250px;
  height: 350px;
  border-radius: 30px;
  margin-bottom: 40px;
background-image: url("/static/img/logo.a651138e24f9.png");
background-size: contain;
background-repeat: no-repeat;
opacity: 1;
}
.card-s-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 75%;
}
.card-s {
    flex-grow: 1;
    height: 254px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 26px;
    box-shadow: var(--box-shadow-soft);
    margin-left: 10px;
    margin-bottom: 15px;
}
.card-s img{
    width: 85px;
    height: 85px;
}
.card-s a{
    width: 20px!important;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    border-radius: 5px;
}
.card-s:hover {
    transition:box-shadow var(--transition-500ms)!important;
    box-shadow: 35px 35px 68px 0px rgba(0, 0, 0, 0.2), inset -8px -8px 16px 0px rgba(0, 0, 0, 0.1), inset 0px 11px 28px 0px rgb(255, 255, 255);
}
.hero{
    min-height: 100vh;
}
@media (max-width: 1900px) {
    .hero{
        min-height: 100vh;
        max-height: 100vh;
    }
    .card-c {
        width: 200px;
        height: 254px;
        margin-bottom: 15px;
        margin-top: 10px;
    }
    .card-s-container{
    width: 100%;
}
    .card-s{
    flex-grow: 1;
    max-width: 180px;
    height: 240px;
}
}
.hero-left h1{
    font-size: 1.6rem;
    max-width: 80%;
    line-height: 60px;
    text-align: start;
    direction: rtl;
    text-shadow: 1px 0px 1px #CCCCCC,
    0px 1px 1px #EEEEEE,
    2px 1px 1px #CCCCCC,
    1px 2px 1px #EEEEEE,
    3px 2px 1px #CCCCCC,
    2px 3px 1px #EEEEEE,
    4px 3px 1px #CCCCCC,
    3px 4px 1px #EEEEEE,
    5px 4px 1px #CCCCCC,
    4px 5px 1px #EEEEEE,
    6px 5px 1px #CCCCCC,
    5px 6px 1px #EEEEEE,
    7px 6px 1px #CCCCCC;
}
.hero-left h2{
     direction: rtl;
    text-align: justify;
    max-width: 80%;
    line-height: 40px;
    font-size: 1.2rem;
}
@media (max-width: 1081px){
    .card-c{
    width: 200px;
    height: 254px;
    margin-bottom: 18px;
    margin-top: 10px;
    }
    .hero-left h1{
        font-size: 1.3rem;
        max-width: 95%;
        line-height: 40px;
    }
    .hero-left h2{
        font-size: 1rem;
    }
    .card-s{
        max-width: 140px;
        height: 200px;
        width: 95%;
    }
    .card-s-container{
        width: 98%;
    }
    .card-s img{
        width: 45px;
        height: 45px;
}
}
/*** Icon ***/
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
}
.active>.page-link{
    border-radius: 2px!important;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
    color: var(--sidebar-color) !important;
}
/*** home-sections ***/
.timeline {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(75rem, 98%);
  margin-inline: auto;
}
.timeline li .title{
    margin-bottom: 0!important;
    line-height: 2rem;
}
/* line */
.timeline::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}
/* row gaps */
.timeline li:not(:last-child) {
  margin-bottom: var(--row-gap);
}
/* card */
.timeline li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}
/* date */
.timeline li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);
  text-align: center;
  background-color: var(--accent-color);
  color: var(--sidebar-color);
  font-size: 1rem;
  display: grid;
  place-content: center;
  position: relative;
  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}
/* date flap */
.timeline li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}
/* circle */
.timeline li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--sidebar-color);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}
/* title descr */
.timeline li .title,
.timeline li .descr {
  background: var(--sidebar-color);
  position: relative;
  padding-inline: 1.5rem;
  font-size: 1rem!important;
}
.timeline li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 600;
  direction: rtl
}
.timeline li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
  direction: rtl;
  line-height: 2;
    text-align: justify;
}
/* shadows */
.timeline li .title::before,
.timeline li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}
.timeline li .title::before {
  bottom: calc(100% + 0.125rem);
}
.timeline li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}
@media (min-width: 40rem) {
  .timeline {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
  .timeline::before {
    grid-column: 2;
  }
  .timeline li:nth-child(even) {
    grid-column: 1;
  }
  .timeline li:nth-child(odd) {
    grid-column: 3;
  }
  /* start second card */
  .timeline li:nth-child(2) {
    grid-row: 2/4;
  }
  .timeline li:nth-child(even) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }
  .timeline li:nth-child(even) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
  .timeline li:nth-child(even) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}
.education{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:50px 5px;
}
.education .h-title{
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.3s;
    padding: 30px 20px!important;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.4rem;
    height: fit-content;
    width: fit-content;
}
.education .h-title i, .education .h-title img{
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.why-limoo,.how-to-use{
background-image: url("/static/landingandfront/img/limotx.ir-tech-support.a36027a8521f.webp");
background-size: cover;
background-position: left;
background-repeat: no-repeat;
height: 600px;
width: 100%;
z-index: 10;
    position: relative;
}
.how-to-use{
background-image: url("/static/landingandfront/img/hero1.f76e02eaad18.webp");
background-position: left;
}
.how-to-use-text{
    position: relative;
    right: -50px;
    z-index: 1000;
}
.why-limo-text {
    position: relative;
    left: -50px;
    z-index: 1000;
}
@media (max-width: 1196px) {
    .how-to-use-text {
        position: relative;
        right: 0px;
        z-index: 1000;
    }
    .why-limo-text {
        position: relative;
        right: 0px;
        z-index: 1000;
    }
}
/*** Testimonial ***/
#testimonial{
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#testimonial .education .h-title{
    background-color: rgba(255, 255, 255, 1);
}
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (max-width: 1400px) {
    .testimonial-carousel .swiper-wrapper .testimonial-item .bg-white {
        min-height: 240px;
    }
    .education .h-title{
        font-size: 14px;
        text-align: center;
    }
}
@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}
.divider {
  height: 18px;
  width: 100%;
}
.divider:nth-of-type(1) {
    opacity: .7;
  background-color: var(--primary);
  box-shadow: 0 0 12px 2px var(--primary); /* adds blur to smooth color transitions */
  margin-top: -2px; /* layers it on top of the previous <span> */
}
.divider:nth-of-type(2) {
  opacity: .6;
  background-color: var(--primary);
  box-shadow: 0 0 12px 2px var(--primary);
  margin-top: -2px;
}
.divider:nth-of-type(3) {
  opacity: .4;
  background-color: var(--primary);
  box-shadow: inset 0 0 12px 2px var(--primary);
  margin-top: -2px;
}
.divider:nth-of-type(4) {
  opacity: .2;
  background-color: var(--primary);
  box-shadow: inset 0 0 12px 2px var(--primary);
  margin-top: -2px;
}
.testimonial-carousel .testimonial-item {
    border: 1px dashed var(--primary) !important;
}
.testimonial-carousel .swiper-wrapper{
    padding: 40px 0px!important;
    overflow-x: visible;
}
.testimonial-carousel .testimonial-item{
    box-shadow: var(--box-shadow-soft);
}
.testimonial-carousel .testimonial-item div p {
    min-height: 100px;
}
/* questions ***/
.accordion-item{
    border:solid 2px var(--primary-shadow);
}
.accordion-button{
    text-align: right!important;
    direction: rtl;
}
.accordion-button::after{
    background-image: url("/static/landingandfront/img/plus-thin.37b15169c2d9.svg");
    margin-left: initial;
    margin-right: auto;
}
.accordion-button:not(.collapsed)::after {
     background-image: url("/static/landingandfront/img/minus-thin.e5749261e178.svg");
}
.accordion-button:hover{
    background-color: var(--primary-shadow);
    transition-duration: 100ms;
}
.accordion-button:focus{
    box-shadow: none;
    border-color: var(--primary);
    border-width: 3px;
}
.accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background-color: var(--primary);
    box-shadow: none;
}
/* articles ***/
#articles{
    position: relative;
}
#articles:before{
    background-image: url("/static/landingandfront/img/pattern_article.4b16ad63b9ca.svg");
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 100px;
    content: "";
    height: 295px;
    pointer-events: none;
    position: absolute;
    width: 360px;
    z-index: 10;
}
/*********** News-article CSS **********/
.news-card{
    max-width: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    background-color: #FFFFFF;
    border-radius: 15px;
    position: relative!important;
    box-shadow: var(--box-shadow-soft);
    overflow: hidden;
    margin-left: 20px;
    flex: 1 1 auto;
}
.news-card:hover{
    transition:box-shadow var(--transition-500ms)!important;
    box-shadow: 35px 35px 68px 0px rgba(0, 0, 0, 0.2), inset -8px -8px 16px 0px rgba(0, 0, 0, 0.1), inset 0px 11px 28px 0px rgb(255, 255, 255);
}
.new-card-img{
    height: 250px!important;
    width: 100%;
    border-radius: 4px 4px 0 0 !important;
    transition-duration: var(--transition-500ms);

}
.article-logo{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 70px;
    height: 70px;
    background-color: var(--sidebar-color);
    border-radius: 50%;
}
.news-card:hover a .new-card-img{
    transform: scale(1.04);
}
.news-title, .goto-page{
    font-size:1rem;
    direction: rtl;
    text-align: right;
    text-transform: capitalize;
    margin: 12px 10px 12px 0;
    height: fit-content;
    max-width: fit-content;
    width: fit-content;
    padding-left: 10px;
    border-radius: 7px;
    display: flex;
    align-items: center;
}
.news-abstract{
    font-size: 0.8rem;
    color: var(--text-color);
    direction: rtl;!important;
    padding: 0 14px;
    text-align: justify;
}
.news-abstract > *{
    direction: rtl!important;
    font-size: 50px;!important;
}
@media (max-width: 1400px) {
    .news-card{
        max-width: 98%;
        flex-direction: row;
        align-items: stretch;
    }
    .new-card-img{
        height: 100%!important;
        max-height: 100%;
        min-width: 100px;
    }
}
/*********** Package Detail-article CSS **********/
.article-header{
    background-image: url("/static/landingandfront/img/parabolic-pentagon.e7ecaada6168.svg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: fit-content;
    /*max-height: fit-content;*/
    background-position: right;
    background-attachment: fixed;
}
.article-sidebar a{
    padding:2px 5px;
}
.article-sidebar span{
    font-size: 0.8rem;
}
.article-sidebar:nth-child(even){
    background-color: whitesmoke;
    border-radius: 10px;
}
.article-sidebar img{
    border-radius: 7px;
    object-fit: cover;
}
.article-p{
    line-height: 1.8;
    text-align: justify;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    color: var(--text-color);
    word-spacing: 2px;
}
.pkg-desc{
    min-width: 300px;
}
.pkg-desc h1,.pkg-desc h2,.pkg-desc h3,.pkg-desc h4,.pkg-desc h5,.pkg-desc h6{
    /*background-color: var(--primary);*/
    color: var(--text-color-body);
    min-width: 0;
    display: inline-block;
    padding: 2px 0;
    text-align: start;
    margin-bottom: 8px;
    margin-top: 8px;
    font-size: 1.1rem!important;
    font-weight: bold;
    line-height: 2rem;
}
.pkg-desc h4,.pkg-desc h5,.pkg-desc h6{
    font-size: 16px!important;
    font-weight: initial;
}
.pkg-desc a,.pkg-desc span a,.pkg-desc div span a,.pkg-desc span span a,.pkg-desc div span span a ,article a
{
    color: var(--article-link-color)!important;
    transition: var(--transition600);
    font-weight: bold;
}
.pkg-desc h2 a:hover,.pkg-desc h2 span a:hover,.pkg-desc h2 div span a:hover,.pkg-desc h2 span span a:hover,.pkg-desc h2 div span span a:hover ,article h2 a:hover,
.pkg-desc h3 a:hover,.pkg-desc h3 span a:hover,.pkg-desc h3 div span a:hover,.pkg-desc h3 span span a:hover,.pkg-desc h3 div span span a:hover ,article h3 a:hover,
.pkg-desc h4 a:hover,.pkg-desc h4 span a:hover,.pkg-desc h4 div span a:hover,.pkg-desc h4 span span a:hover,.pkg-desc h4 div span span a:hover ,article h4 a:hover,
.pkg-desc a:hover,.pkg-desc span a:hover,.pkg-desc div span a:hover,.pkg-desc span span a:hover,.pkg-desc div span span a:hover ,article a:hover
{
    color: rgba(255,163,86,0.96)!important;
    transition: var(--transition600);
}
.pkg-desc p{
    padding-right: 0;
    text-align: justify!important;
    line-height: 2.3rem;
}
.pkg-desc img{
    min-width: 100%;
    max-width: 100% !important;
    height: auto!important;
}
.pkg-desc ul{
    padding-right: 15px;
    text-align: justify!important;
}
.pkg-desc ul li,.pkg-desc ol li{
    margin: 15px 5px;
    text-align: justify!important;
    position: relative;
}
.pkg-desc ul li:before,.pkg-desc ol li:before{
    /*content: '';*/
    /*display: block;*/
    /*width: 8px;*/
    /*height: 8px;*/
    /*border-radius: 50%;*/
    /*background-color: var(--primary);*/
    /*box-shadow: var(--box-shadow-soft);*/
    /*position: absolute;*/
    /*top: 8px;*/
    /*right: -12px;*/
}
.rotate-90{
    transform: rotate(-90deg);
    transition-duration: var(--transition-500ms);
}
/*category sidebar*/
.sidebar {
    position: fixed;
    opacity:1;
    width: 0;
    background-color: #ffffff;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 10000;
    transition: var(--transition-500ms) linear;
    overflow-y: scroll;
}
.article-list-card{
    border-radius: 10px;
    height: 450px;
    box-shadow: var(--box-shadow-soft);
    overflow: hidden!important;
    border:2px solid transparent;
    transition-duration: var(--transition-500ms);
    cursor: pointer;
    max-width: 30%;
    min-width: 300px;
    padding: 0 !important;
}
.article-list-card:hover  img{
    transform: scale(1.02);
}
.article-list-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50px;
    height: 15px;
    transition-duration: var(--transition-500ms);
    opacity: 0;
    scale: 0 1;
}
.article-list-card:hover {
    /*border: 1px solid var(--primary);*/
    box-shadow: var(--card-shadow-hover-soft);
}
.article-list-card:hover .article-list-btn{
    opacity: 1;
    scale: 1 1;
}
.article-list-card div h2{
    position: relative;
    color: var(--primary);
    font-size: 1rem!important;
}
.article-list-card div h2::after{
    content: '';
    background-color: var(--primary);
    color: var(--primary);
    scale: 0 1;
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    bottom: -8px;
    left: 0;
    transition-duration: var(--transition-500ms);
}
.article-list-card:hover div h2:after{
    scale: 1 1;
}
.article-list-card img{
    border-radius: 10px 10px 0 0;
    transition-duration: var(--transition-500ms);
}
.tab-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px ;
    cursor: pointer;
    opacity: 0.8;
    transition-duration: 300ms;
    width: 50%;
    border-left: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    box-shadow: var(--box-shadow-soft);
}
.tab-header:hover{
    opacity: 0.9;
}
.tab-header.active{
    opacity: 1;
    border-bottom: 4px solid var(--primary);
    border-top: 1px solid var(--primary);
    border-left: none;
    border-right: none;
    box-shadow: var(--card-shadow-hover-soft);
}
.tab-header i, .tab-header p{
    color: var(--primary) !important;
    font-weight: bolder;
    font-size: 1.5rem;
}
.tab-header.active i, .tab-header.active p{
    color: var(--primary-red) !important;
    font-weight: bolder;
    font-size: 1.5rem;
}
.tab-header p{
    margin-top: 10px;
    font-size: 1.3rem;
}
.content-tab{
    display: none;
}
.content-tab.active{
    display: initial;
}
@media (max-width: 992px) {
    .pkg-desc h3, .pkg-desc h4 {
        font-size: 19px;
    }
    .article-list-toggle-sm-show {
        display: initial;
    }
    .article-p {
        padding-right: 5px;
        padding-left: 5px;
    }
    .blue-title {
        border-radius: 7px;
    !important;
        max-width: 350px;
    }
    .article-list-card div h1 {
        font-size: 16px !important;
    }
    h1 {
        font-size: 16px !important;
    }
    .article-list-btn {
        opacity: 1;
        scale: 1 1;
    }
    .article-list-card {
        margin: 10px;
    }
    .article-header{

    }
}
footer{
    background-image: linear-gradient(180deg, rgba(157, 177, 255, 0.1) 0%, rgba(255 ,254,250,1) 100%);
    top: 50px;
    border-top-left-radius: 70px;
    font-size: 0.8rem;
    box-shadow: var(--box-shadow-soft);
    border-top: 5px solid var(--primary);
    padding-top: 50px;
}
@keyframes rotate {
  100% {
    transform: rotateY(360deg);
  }
}
.rotate{
    animation:rotate ease-in-out 8s infinite;
}
.footer{
    width: 65%;
}
@media (max-width: 1700px) and (min-width: 960px) {
    .footer{
        width: 85%;
    }
}
@media (max-width:960px) {
  .footer{
    width: 98%;
 }
}
.footer-holder {
    display: flex;
    direction: rtl;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 45px 0;
}
.about-span{
   font-size: 20px;
}
.footer-text{
    text-align: justify!important;
    position: relative;
    left: -50px;
}
.footer-text i{
    font-size: 1.2rem;
}
.footer-text{
    font-size: 1rem;
    line-height: 25px;
}
.footer-text span{
    font-size: 1rem;
    line-height: 25px;
}
.footer-links{
    position: relative;
    left: -160px;
}
.footer-link i{
    color: var(--primary);
}
.footer-header{
    height: 40px;
}
.footer-item{
    max-width: 450px;
}
.footer-item .img-fluid{
    max-width: 320px;
    max-height: 320px;
}
.footer-item div a span {
    transition-duration: var(--transition-500ms);
    font-size: 1rem;
}
.footer-item div a span:hover{
    color: var(--primary) !important;
}
.footer-design{
    display: flex;
    justify-content: start;
    align-items: center;
}
.footer-social .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 7px;
    font-size: 1.4rem!important;
    box-shadow: 35px 35px 68px 0px var(--primary-shadow);
    transition-duration: var(--transition-500ms);
}
.footer-social .social a:hover {
    box-shadow: 35px 35px 68px 0px rgba(157, 177, 255, 0.2), inset -8px -8px 16px 0px rgba(157, 177, 255, 0.6), inset 0px 11px 28px 0px rgb(255, 255, 255);

}
.footer-social .social .twitter {
    color: var(--body-color);
    background: var(--primary);
    margin-left: 15px;
}
.footer-social .social .facebook {
    color: var(--body-color);
    background: var(--primary);
    margin-left: 15px;
}
.footer-social .social .whatsapp {
    color: var(--body-color);
    background: var(--primary);
    margin-left: 15px;
}
.footer-social .social .instagram {
    color: var(--body-color);
    background: var(--primary);
    margin-left: 15px;
}
.footer-social .social .telegram {
    color: var(--body-color);
    background: var(--primary);
    margin-left: 15px;
}
.footer-social .social .telegram:hover,.footer-social .social .telegram:hover
,.footer-social .social .instagram:hover,.footer-social .social .whatsapp:hover
,.footer-social .social .facebook:hover,.footer-social .social .twitter:hover
{
    background: var(--body-color) !important;
    color: var(--primary) !important;
    transition: 500ms ease-out;
}
.footer-link{
    transition-duration: var(--transition-500ms);
}.footer-link:hover{
    transform: translateX(-10px);
}
.footer-row-one-item{
    margin-bottom: 35px;
    width: 30%;
}
@media (max-width: 992px) {
    .service, .section-header{
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .footer-holder{
        flex-direction: column;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .footer-header{
        height: 40px;
    }
    .footer-item{
        margin-bottom: 3rem;
        max-width: 600px;
    }
    .footer-design{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-row-one-item{
    margin-bottom: 35px;
    width: 100%;
}
}
.footer-text{
    text-align: justify!important;
    position: static;
    left: 0;
}
.footer-links{
    position: static;
    left: 0;
}
/*inputs*/
.auth{
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: initial;
}
.auth-wrapper{
    background-color: var(--sidebar-color);
    border-radius: 8px;
    max-width: 700px;
    margin: 30px auto;
    box-shadow: var(--box-shadow-soft);
}
.auth-wrapper div.ms-auto{
    padding-right: 2rem;
}
.auth-title{
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    padding: 50px 10px 10px 10px;
    max-width: 600px;
}
.auth-title span{
    text-align: center;
}
.auth-title.invoice-submit{
    max-width: 100%;
    color: var(--sidebar-color);
    background:var(--gradient-90)
}
.auth-body.invoice-submit{
    max-width: 95%;
}
@media (max-width:1300px ) {
  .auth-body.invoice-submit{
      width: 100%;
      min-width: initial;
}
}
.auth-title span{
    font-size: 2rem;
    font-weight: 100;
    margin-bottom: 50px;
    opacity: 0.75;
}
.auth-body{
    padding: 30px 35px;
    max-width: 750px;
    margin: auto;
}
.auth-body div{
    position: relative;
}
.auth-body h4{
 margin-right: 15px;
}
.auth-input{
    border: none;
    outline: none;
    box-shadow: rgba(138,142,44,0.15) 0px 0px 4px 0px;
    width: 100%;
    padding: 2px 20px;
    height: 39px;
    border-radius: 50px;
 }
.form-control-c, .btn-input,#id_birth_date{
    border: none;
    outline: none;
    box-shadow: rgba(138,142,44,0.15) 0px 0px 4px 0px;
    width: 99%;
    padding: 2px 25px;
    height: 48px;
    border-radius: 6px;
    /*background-color: #F6FBFF;*/
    background-color:#f7f7f7;
    margin-bottom: 5px;

 }
select.form-control-c{
    border: none;
    outline: none;
    box-shadow: rgba(138,142,44,0.15) 0px 0px 4px 0px;
    width: 99%;
    padding: 2px 25px;
    height: 48px;
    border-radius: 6px;
    margin-bottom: 5px;
    background-color:#f7f7f7;
 }
fieldset{
    display: flex;
    align-items: baseline;
    gap: 10px;
    transform: translateX(5px);
}
input[type="checkbox"].form-control-c{
    border: transparent!important;
    box-shadow: none!important;
}
.btn-input{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    min-width: 250px;
}
textarea{
    min-height: 130px;
}
select{
    cursor: pointer;
    min-width: 200px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}
input:focus-within{
    border: solid 2px var(--animated-botton-bc) ;
}
label {
    margin-bottom:6px;
    color:var(--text-color-body);
    font-size:14px;
    letter-spacing:0;
    word-spacing: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    text-align: right;
  }
@media only screen and (max-width: 600px) {
	label.active {font-size:12px;top:-25px;}
}
.login-register{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
}
.auth-icon{
    font-size: 100px!important;
    color: var(--primary);
    transform: translateX(-10px);
}
@media (max-width: 960px) {
    .auth-wrapper{
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
}

/********* Pricing CSS *********/
.price,.price-wrapper {
    position: relative;
    width: 100%;
    border-radius: 5px!important;
    background: var(--sidebar-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:var(--box-shadow-soft);
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition300);
    min-height: 400px;
}
.price .price-header{
    border-radius: 5px 5px 0 0!important;
}
.price .price-footer{
    border-radius:0 0 5px 5px!important;
}
.price .price-item {
    position: relative;
    margin-bottom: 30px;
}
.price-card-2{
    transform: translateY(-10px) translateZ(10px);
}
.price .price-header,
.price .price-body,
.price .price-footer {
    position: relative;
    width: 100%;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}
.price .price-header {
    padding: 30px;
    background: var(--animated-botton-bc);
    color: var(--animated-botton-tc);
    display: flex;
    align-items: center;
    justify-content: center;
}
.price .price-title h2 {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}
.price .price-prices h2 {
    font-size: 45px;
    font-weight: 700;
    margin-left: 10px;
}

.price .price-prices h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 400;
    margin-top: 9px;
    margin-left: -12px;
}

.price .price-prices h2 span {
    margin-left: 1px;
    font-size: 18px;
    font-weight: 400;
}
.price .price-body {
    padding: 25px 0 20px 0;
    border: 1px solid rgba(0, 0, 0, .07);
    border-bottom: none;
}
.price .price-description ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.price .price-description ul li {
    text-align: center;
    font-size: 16px;
    padding: 7px;
    border-bottom: 1px solid var(--animated-botton-bc) ;
}
.price .price-description ul li:last-child {
    border: none;
}
.price .price-action {
    border: none;
}
.price:hover,.price.active{
    box-shadow: var(--card-shadow-hover) var(--primary-shadow);
    transform: scale(1.05,1.05) translateY(-15px);
    background: var(--gradient);
}
.search-input, text{
    direction: rtl;
    outline: none;
    border: none;
    height: 40px;
    width: 100%;
    background-color: whitesmoke;
    padding: 2px 105px;
    border-radius: 0 0 8px 8px;
    border-top: 1px solid var(--green);
}
#search-results{
    position: absolute;
    width: 100% ;
    top: 45px;
    right: 0;
    background-color: white;
    opacity: 1;
    display: none;
    padding: 15px 25px;
    border-radius: 15px;
    z-index: 1000;
    max-height: 60vh;
    overflow-y: scroll;
}
.search-input:focus {
    box-shadow: 0 0 0 0 var(--primary-shadow);
}
.search-input-group{
    border-radius: 50px;
}
#searchForm{
    border-radius: 0 0 8px 8px;
}
@media (max-width: 992px) {
    .search-input, text{
    padding: 2px 20px;
}
}