/*------------------------ 1. Global Section CSS ------------------------*/

:root {
    --PrimaryColor: rgb(25, 25, 25);
    --SecondaryColor: rgb(30, 50, 80);
}

@font-face {
    font-family: 'YekanBakh-Light';
    src: url('fonts/YekanBakh-Light.woff');
}

@font-face {
    font-family: 'YekanBakh-Medium';
    src: url('fonts/YekanBakh-Medium.woff');
}

@font-face {
    font-family: 'YekanBakh-Bold';
    src: url('fonts/YekanBakh-Bold.woff');
}

@font-face {
    font-family: 'YekanBakh-Black';
    src: url('fonts/YekanBakh-Black.woff');
}

body {
    direction: rtl;
    font-family: 'YekanBakh-Medium', 'Poppins';
    font-size: 1rem;
    line-height: 2;
    background: rgb(255, 255, 255);
    color: var(--PrimaryColor);
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-family: 'YekanBakh-Bold', 'Poppins';
    font-weight: normal;
}

a {
    color: var(--PrimaryColor);
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

a:hover {
    color: var(--SecondaryColor);
}

img {
    max-width: 100%;
}

ul,
ol {
    margin: 0;
    padding: 0
}

a {
    text-decoration: none
}

.a-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    padding: 5px 30px;
    background: var(--PrimaryColor);
    color: rgb(255, 255, 255);
    border: 0;
    outline: 2px solid var(--PrimaryColor);
    outline-offset: 5px;
    border-radius: 300px;
}

.a-more:hover {
    opacity: .85;
}

.a-more:focus,
.a-more:active {
    outline: 2px solid var(--PrimaryColor);
    outline-offset: 5px;
}

.a-section {
    width: 100%;
    display: inline-block;
    margin: 0 0 15px;
    position: relative;
    z-index: 1
}

.a-section h2 {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 5px;
    font-family: 'YekanBakh-Black';
    font-size: 1.5rem;
}

.a-section i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    margin: 0 0 0 5px;
    font-size: 1.5rem;
    background: rgb(235, 235, 235);
    color: rgb(100, 100, 100);
    text-align: center;
    border-radius: 50%;
}

.a-section span {
    display: block;
}

.a-section p {
    margin: 0;
    font-family: 'YekanBakh-Bold';
    font-size: 1.15rem;
    color: rgb(135, 135, 135)
}

.a-section strong {
    font-family: 'YekanBakh-Black';
    font-size: 2rem;
}

.a-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.a-title h2 {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 5px;
    font-family: 'YekanBakh-Black';
    font-size: 1.85rem;
}

.a-title h2 span {
    display: block;
    line-height: 1;
}

.a-title .link {
    font-size: 1rem;
}

.a-title .link a {
    display: inline-block;
    padding: 5px 30px;
    line-height: 2;
    background: rgb(45, 95, 255);
    color: rgb(255, 255, 255);
    border-radius: 300px;
    box-shadow: 5px 5px 30px 0 rgb(0 0 0 / 5%);
}

.a-title .link a:hover {
    opacity: .85
}

.a-tooltip {
    position: relative;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.a-tooltip:before {
    transform: scale(0);
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
}

.a-tooltip:hover:before {
    content: attr(data-title);
    width: 115px;
    height: 35px;
    display: block;
    margin: 0 auto;
    position: absolute;
    right: 35px;
    bottom: 0;
    font-size: .90rem;
    line-height: 2.5;
    background: var(--PrimaryColor);
    color: rgb(255, 255, 255);
    border-radius: 300px;
    transform: scale(1);
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    z-index: 1;
}

@media screen and (max-width: 576px) {
    .a-section h2 {
        flex-direction: column;
        text-align: center;
    }

    .a-title .a-link {
        display: none;
    }
}


/*------------------------ 2.  Offcanvas Section CSS ------------------------*/

.a-offcanvas-section {
    width: 100%;
    border: 0;
}

.a-offcanvas-section .offcanvas {
    width: 100%
}

.a-offcanvas-section button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    left: 15px;
    background: transparent;
    border: 0;
    background: var(--PrimaryColor);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    opacity: .85
}

.a-offcanvas-section img {
    max-width: 90px;
    margin: 0 0 30px;
}

.a-offcanvas-section nav ul li {
    width: 100%;
    display: inline-block;
    position: relative;
}

.a-offcanvas-section nav ul li a {
    display: block;
    padding: 5px;
    position: relative;
    border-radius: 5px;
}

.a-offcanvas-section nav ul li ul {
    display: none;
    padding: 0 15px 0 0;
    position: relative;
    font-size: .95rem;
}

.a-offcanvas-section nav ul li.menu-item-has-children>a:before {
    content: '\f078';
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'Font Awesome 5 Pro';
    font-size: 1rem;
}

.a-offcanvas-section nav ul li a:hover {
    color: var(--SecondaryColor);
}

.a-offcanvas-section nav ul li ul li {
    width: 100%;
    padding: 0;
}

.a-offcanvas-section nav ul li ul li a {
    color: rgb(85, 85, 85);
    border-bottom: 1px solid rgba(230, 230, 230, .5);
}

.a-offcanvas-section nav ul li ul li:last-child a {
    border-bottom: 0;
}

/*------------------------ 3.  Header Section CSS ------------------------*/

.a-header-section {
    width: 100%;
    display: inline-block;
    padding: 15px 0 0;
    position: relative;
    background: rgb(255, 255, 255);
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
    z-index: 10
}

.a-header-section .a-search form {
    max-width: 450px;
    position: relative;
}

.a-header-section .a-search form input {
    width: 100%;
    height: 50px;
    padding: 0 15px 0 0;
    background: rgb(235, 235, 235);
    border: 1px solid transparent;
    border-radius: 10px;
}

.a-header-section .a-search form input:focus {
    background: rgb(255, 255, 255);
    border-color: rgb(235, 235, 235);
    box-shadow: none;
    outline: 0;
}

.a-header-section .a-search form button {
    position: absolute;
    top: 15px;
    left: 10px;
    font-size: 1.35rem;
    line-height: 0;
    background: transparent;
    color: var(--PrimaryColor);
    border: 0;
}

.a-header-section .a-actions ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.a-header-section .a-actions ul li {
    display: inline-block;
    position: relative;
    line-height: 0;
}

.a-header-section .a-actions ul li.a-responsive {
    display: none;
}

.a-header-section .a-actions ul li.a-profile a {
    display: inline-block;
    padding: 5px 15px;
    font-size: .95rem;
    line-height: 1.5;
    background: var(--SecondaryColor);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%)
}

.a-header-section .a-actions ul li.a-profile a:hover {
    opacity: .85
}

.a-header-section .a-actions ul li a {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.a-header-section .a-actions ul li i {
    font-size: 1.5rem;
}

.a-header-section .a-actions ul li span {
    width: 20px;
    height: 20px;
    position: absolute;
    top: -5px;
    left: -5px;
    font-size: .90rem;
    line-height: 1.5;
    background: var(--SecondaryColor);
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 50%;
}

.a-header-section .a-menu-section {
    width: 100%;
    display: inline-block;
    padding: 15px 0 0;
}

.a-header-section .a-menu-section ul {
    position: relative;
}

.a-header-section .a-menu-section ul li {
    display: inline-block;
    line-height: 1.85;
    position: static;
}

.a-header-section .a-menu-section ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 7.5px;
    position: relative;
    color: rgb(0, 0, 0);
}

.a-header-section .a-menu-section ul li a i {
    margin: -5px 0 0;
}

.a-header-section .a-menu-section ul li a:hover {
    color: var(--SecondaryColor)
}

.a-header-section .a-menu-section ul li ul {
    width: 100%;
    display: none;
    position: absolute;
    padding: 15px;
    top: 100%;
    right: 0;
    background-color: rgb(255, 255, 255);
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
    animation-name: WpmmFadeInUp;
    z-index: -1;
}

.a-header-section .a-menu-section ul li:hover>ul {
    display: flex;
    margin: -5px 0 0;
    opacity: 1;
    visibility: visible;
    animation-duration: 300ms;
    z-index: 1080
}

.a-header-section .a-menu-section ul li ul li ul {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    background: transparent;
    top: 0;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
}

.a-header-section .a-menu-section ul li ul li:hover ul {
    display: block;
    margin: 0;
}

.a-header-section .a-menu-section ul li ul li {
    width: initial;
    display: block;
    padding: 0 0 0 30px;
    position: relative;
}

.a-header-section .a-menu-section ul li ul li a {
    padding: 0;
    position: relative;
}

.a-header-section .a-menu-section ul li ul li i {
    padding: 0 5px 0 0;
    font-size: .80rem;
    vertical-align: middle;
}

.a-header-section .a-menu-section ul li ul li ul li a {
    font-family: 'YekanBakh-Light';
    font-size: .95rem;
}

@keyframes WpmmFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 991px) {

    .a-header-section .a-actions ul {
        gap: 0;
    }

    .a-header-section .a-actions ul li {
        padding: 0 15px 0 0;
    }

    .a-header-section .a-search {
        margin: 15px 0;
    }

    .a-header-section .a-search form {
        max-width: 100%;
    }

    .a-header-section .a-actions ul li.a-responsive {
        display: block;
    }

    .a-header-section .a-menu-section,
    .a-header-section .a-actions ul li.a-profile {
        display: none;
    }

    .a-header-section .order {
        order: 1
    }
}

@media (max-width: 575px) {

    .a-header-section img {
        max-width: 100%;
    }
}

/*------------------------ 10. Footer Section CSS ------------------------*/

.a-footer-section {
    width: 100%;
    display: inline-block;
    margin: 60px 0 0;
    padding: 0 0 30px;
    background: rgb(255, 255, 255);
    border-top: 1px solid rgb(235, 235, 235)
}

.a-footer-section .a-up {
    width: 130px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    border: 1px solid rgb(235, 235, 235);
    border-radius: 300px;
    transition: all .15s ease;
    cursor: pointer
}

.a-footer-section .a-up span {
    display: block;
    position: relative;
    top: 1.5px;
    line-height: 1
}

.a-footer-section .a-up i {
    margin: 0 0 0 5px;
    font-size: .80rem;
}

.a-footer-section .a-up:hover {
    background: rgb(250, 250, 250);
}

.a-footer-section .a-services-section {
    padding: 0 0 60px;
    border: 0;
}

.a-footer-section .a-services-section strong {
    display: block;
    margin: 5px 0 0;
    line-height: 1.5;
    color: rgb(35, 35, 35)
}

.a-footer-section .a-menu strong {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 15px;
    position: relative;
    line-height: 1;
}

.a-footer-section .a-menu {
    width: 100%;
    display: inline-block;
    margin: 0 0 15px;
}

.a-footer-section .a-menu ul {
    display: flex;
    flex-wrap: wrap;
}

.a-footer-section .a-menu ul li {
    width: 100%;
    display: block;
    position: relative;
}

.a-footer-section .a-menu ul li a {
    display: block;
    font-size: .95rem;
    line-height: 2;
    color: rgb(90, 90, 90)
}

.a-footer-section .a-menu ul li a:hover {
    color: var(--SecondaryColor)
}

.a-footer-section .a-newsletter form {
    margin: 0 0 30px;
    position: relative;
}

.a-footer-section .a-newsletter form p {
    margin: 0;
}

.a-footer-section .a-newsletter form input[type='text'] {
    width: 100%;
    height: 45px;
    margin: 0 0 5px;
    padding: 0 15px 0 0;
    font-size: .95rem;
    background: rgb(245, 245, 245);
    text-align: right;
    border: 1px solid var(--SecondaryColor);
    border-radius: 5px;
}

.a-footer-section .a-newsletter form input[type='text']:focus {
    border-color: var(--SecondaryColor);
    box-shadow: none;
    outline: 0;
}

.a-footer-section .a-newsletter form button,
.a-footer-section .a-newsletter form .button {
    width: 100px;
    height: 45px;
    padding: 0 5px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: .95rem;
    background: var(--SecondaryColor);
    color: rgb(255, 255, 255);
    border: 0;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.a-footer-section .a-newsletter form button div,
.a-footer-section .a-newsletter form .button div {
    width: 15px;
    height: 15px;
    margin: 0 auto;
    border-width: 1px;
}

.a-footer-section .a-newsletter form button:hover,
.a-footer-section .a-newsletter form .button:hover {
    opacity: .85
}

.a-footer-section .a-newsletter form ul li {
    width: 100%;
    display: inline-block;
}

.a-footer-section .a-phone {
    width: 100%;
    display: inline-block;
    margin: 0 0 15px;
    padding: 0 0 15px;
    color: rgb(95, 95, 95);
}

.a-footer-section .a-phone ul li {
    display: inline-block;
    position: relative;
    line-height: 1.5;
}

.a-footer-section .a-phone ul li a {
    padding: 0 15px 0 0;
    color: rgb(90, 90, 90);
}

.a-footer-section .a-phone ul li a:hover {
    color: var(--SecondaryColor);
}

.a-footer-section .a-phone ul li:last-child a {
    padding: 0 5px 0 0;
}

.a-footer-section .a-phone ul li i {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1.25;
    color: var(--SecondaryColor);
}

.a-footer-section .a-social {
    width: 100%;
    display: inline-block;
    margin: 5px 0;
}

.a-footer-section .a-social strong {
    margin: 0 0 10px;
}

.a-footer-section .a-social ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 15px;
    gap: 5px;
}

.a-footer-section .a-social ul li {
    display: inline-block;
    margin: 5px;
    position: relative;
}

.a-footer-section .a-social ul li a {
    display: block;
    color: rgb(90, 90, 90);
    font-size: 1.75rem;
    line-height: 0
}

.a-footer-section .a-social ul li a:hover {
    color: var(--SecondaryColor);
}

.a-footer-section .a-cert ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.a-footer-section .a-cert ul li {
    display: inline-block;
}

.a-footer-section .a-cert ul li img {
    width: 100px;
}

.a-footer-section .a-application {
    width: 100%;
    display: inline-block;
    padding: 30px 0;
}

.a-footer-section .a-application ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.a-footer-section .a-application ul li {
    display: inline-block;
    margin: 0 0 5px 5px;
}

.a-footer-section .a-application ul li .a-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.a-footer-section .a-application ul li a {
    width: 150px;
    display: inline-block;
    padding: 10px 15px;
    line-height: 1.5;
    background: rgb(45 50 65);
    border-radius: 5px;
}

.a-footer-section .a-application ul li a:hover {
    opacity: .95
}

.a-footer-section .a-application ul li i {
    margin: 0 25px 0 0;
    font-size: 1.5rem;
    color: #fff;
}

.a-footer-section .a-application ul li span {
    display: block;
    color: #fff;
}

.a-footer-section .a-application ul li .a-sub {
    display: block;
    margin: 0 0 -5px;
    font-family: 'YekanBakh-Light';
    font-size: .90rem;
    color: rgba(255, 255, 255, 0.6);
}

.a-footer-section .a-extra {
    width: 100%;
    display: inline-block;
}

.a-footer-section .a-extra img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
}

.a-footer-section .a-copyright {
    font-size: .95rem;
    text-align: center;
}

.a-footer-section .a-copyright p {
    margin: 0;
    color: rgb(95, 95, 95);
}

@media (max-width: 991px) {

    .a-footer-section .a-services-section {
        padding: 0 0 30px;
    }

    .a-footer-section .a-services-section strong {
        margin: 10px 0;
    }

    .a-footer-section .a-cert ul {
        margin: 0 0 15px;
    }

    .a-footer-section .a-menu,
    .a-footer-section .a-extra,
    .a-footer-section .a-copyright p,
    .a-footer-section .a-application ul li {
        text-align: center;
    }

    .a-footer-section strong,
    .a-footer-section .a-social ul,
    .a-footer-section .a-cert ul,
    .a-footer-section .a-application ul {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .a-footer-section .a-application ul li {
        width: 100%;
        margin: 0 0 5px;
    }

    .a-footer-section .a-application ul li a {
        width: 100%;
    }

    .a-footer-section .a-newsletter input[type='button'] {
        width: 100%;
        height: 45px;
        margin: 5px 0 0;
        position: relative;
        border-radius: 5px;
    }

    .a-footer-section .a-phone {
        text-align: center;
    }

    .a-footer-section .a-extra img {
        margin: 15px 0;
    }
}