:root {
    --dark-gray: #262631;
    --average-gray: #5F5F5F;
    --light-blue: #9794fc;
    --average-blue: #1668ac;
    --dark-white: #C8C8C8;
    --less-dark-white: #E8E8E8;
    --light-white: #F5F5F5;
}

@font-face {
    font-family: Sahel;
    src: url('../fonts/sahel/sahel.eot');
    src: url('../fonts/sahel/sahel.eot?#iefix') format('embedded-opentype'),
        url('../fonts/sahel/Sahel.woff2') format('woff2'),
        url('../fonts/sahel/sahel.woff') format('woff'),
        url('../fonts/sahel/sahel.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: Sahel;
    src: url('../fonts/sahel/Sahel-Bold.eot');
    src: url('../fonts/sahel/Sahel-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/sahel/Sahel-Bold.woff2') format('woff2'),
        url('../fonts/sahel/Sahel-Bold.woff') format('woff'),
        url('../fonts/sahel/Sahel-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: Sahel;
    src: url('../fonts/sahel/Sahel-Light.eot');
    src: url('../fonts/sahel/Sahel-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/sahel/Sahel-Light.woff2') format('woff2'),
        url('../fonts/sahel/Sahel-Light.woff') format('woff'),
        url('../fonts/sahel/Sahel-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: Sahel;
    src: url('../fonts/sahel/Sahel-SemiBold.eot');
    src: url('../fonts/sahel/Sahel-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/sahel/Sahel-SemiBold.woff2') format('woff2'),
        url('../fonts/sahel/Sahel-SemiBold.woff') format('woff'),
        url('../fonts/sahel/Sahel-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: Sahel;
    src: url('../fonts/sahel/Sahel-Black.eot');
    src: url('../fonts/sahel/Sahel-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/sahel/Sahel-Black.woff2') format('woff2'),
        url('../fonts/sahel/Sahel-Black.woff') format('woff'),
        url('../fonts/sahel/Sahel-Black.ttf') format('truetype');
    font-weight: 900;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-20%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(20%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInBottom {
    from {
        transform: translateY(20%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

body {
    font-family: Sahel, 'Roboto Slab', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    margin: 0px;
    background-color: var(--light-white);
}

.sticky-header {
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    height: 104px;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
    z-index: 99;
}

.sticky-header.scrolled {
    background-color: var(--dark-gray);
}

.navbar .navbar-nav .nav-link {
    color: var(--light-white);
}

.navbar-nav {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-evenly;
    flex-grow: 0;
}

.navbar-nav .nav-link {
    margin: 0 20px;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    margin-right: 10px;
}

.navbar-brand {
    margin-right: 20px;
}

@media (max-width: 991px) {
    .navbar-collapse .nav-item {
        background-color: var(--dark-gray);
    }
}

.title-area .single-title {
    position: relative;
    z-index: 0;
    height: 900px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay::before {
    position: absolute;
    content: "";
    background-color: var(--dark-gray);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .9;
}

.title-area .single-title h3 {
    color: var(--light-white);
    text-align: center;
    opacity: 0;
}

.title-area .single-title h3.animate {
    opacity: 1;
    animation: slideInLeft 1s ease-in-out;
}

.introduction-area {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--light-white);
    justify-content: center;
}

.introduction-area h2 {
    text-align: center;
    opacity: 0;
    transition: opacity 1.2s 0.2s;
    color: var(--dark-gray);
}

.fade-in {
    opacity: 1 !important;
}

.introduction-area .introduction-boxes {
    padding-top: 70px;
}

.single-introduction-box {
    text-align: center;
    border: 2px solid var(--less-dark-white);
    border-radius: 5px;
    padding: 50px 10px 35px 10px;
    height: 100%;
    opacity: 0;
}

.single-introduction-box:hover {
    border-color: var(--light-blue);
}

.single-introduction-box img {
    height: 50px;
    width: auto;
    filter: invert(36%) sepia(40%) saturate(3388%) hue-rotate(228deg) brightness(96%) contrast(108%);
}

.single-introduction-box h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-gray);
}

.single-introduction-box p {
    color: var(--average-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.introduction-boxes>div:nth-of-type(1)>.single-introduction-box.animate {
    animation: slideInLeft 1s ease-in-out;
    opacity: 1;
}

.introduction-boxes>div:nth-of-type(2)>.single-introduction-box.animate {
    animation: slideInBottom 1s ease-in-out;
    opacity: 1;
}

.introduction-boxes>div:nth-of-type(3)>.single-introduction-box.animate {
    animation: slideInRight 1s ease-in-out;
    opacity: 1;
}

.about-area {
    background: var(--dark-gray);
    position: relative;
}

.about-area::before {
    content: '';
    background-image: url(../img/RKfinal-1.jpg);
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 8;
    background-size: cover;
    position: absolute;
    background-position: center center;
}

@media (max-width: 991px) {
    .about-area::before {
        display: none;
    }
}

.about-area .about-info {
    padding: 160px 0;
}

.about-info {
    color: var(--light-white);
}

.about-info .animate {
    animation: slideInBottom 1s ease-in-out;
    opacity: 1;
}

.about-info span {
    position: relative;
    z-index: 3;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 19px;
    display: block;
    font-family: "Roboto", sans-serif;
    opacity: 0;
}

.about-info h3 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 400;
    position: relative;
    z-index: 0;
    padding-bottom: 15px;
    opacity: 0;
}

.about-info>div>p:first-of-type {
    color: var(--dark-white);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 28px;
    opacity: 0;
}

.about-info>div>p:first-of-type.animate {
    animation: slideInBottom 1s ease-in-out;
    opacity: 1;
}

.link-button {
    background: var(--average-blue);
    display: inline-block;
    padding: 12px 33px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 30px;
    text-align: center;
    color: var(--light-white);
    cursor: pointer;
    text-decoration: none;
}

.link-button:hover {
    border: 1px solid var(--average-blue);
    color: var(--average-blue) !important;
    background: transparent;
}

.about-info a {
    margin-top: 44px;
    opacity: 0;
}

.products-area {
    padding-top: 147px;
    padding-bottom: 130px;
    position: relative;
}

.products-area .products-area-title .animate {
    animation: slideInBottom 1s ease-in-out;
    opacity: 1;
}

.products-area-title {
    margin-bottom: 90px;
}

.products-area-title h3 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 400;
    color: var(--dark-gray);
    position: relative;
    z-index: 0;
    padding-bottom: 15px;
    opacity: 0;
}

.products-area-title p {
    font-size: 16px;
    color: var(--average-gray);
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0;
}

.single-product {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    opacity: 0;
}

.single-products-row div:nth-of-type(1) .single-product.animate {
    animation: slideInBottom 1s ease-in-out forwards;
}

.single-products-row div:nth-of-type(2) .single-product.animate {
    animation: slideInBottom 1s ease-in-out forwards;
    animation-delay: 0.2s;
}

.single-products-row div:nth-of-type(3) .single-product.animate {
    animation: slideInBottom 1s ease-in-out forwards;
}

.single-products-row div:nth-of-type(4) .single-product.animate {
    animation: slideInBottom 1s ease-in-out forwards;
    animation-delay: 0.2s;
}

.single-products-row div:nth-of-type(5) .single-product.animate {
    animation: slideInBottom 1s ease-in-out forwards;
    animation-delay: 0.4s;
}

.single-product .single-product-thumb {
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.single-product .single-product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product .single-product-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: var(--light-white);
    border: 0;
    transform: scale(0.9);
    transition: 0.5s;
    opacity: 0;
    overflow: hidden;
    border-radius: 5px;
}

.single-product:hover .single-product-content {
    transform: scale(1);
    opacity: 1;
}

.single-product-content div {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
}

.single-product-content h3 {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 700;
    margin-top: 11px;
    margin-bottom: 25px;
}

.environment-area {
    position: relative;
    margin-bottom: 130px;
}

.environment-area::before {
    position: absolute;
    content: '';
    width: 50%;
    right: 0;
    top: 0;
    height: 100%;
    background-image: url(../img/RKfinal-6.jpg);
    background-size: cover;
    background-position: center center;
    -webkit-border-radius: 20px 0 0 20px;
    -moz-border-radius: 20px 0 0 20px;
    border-radius: 20px 0 0 20px;
}

@media (max-width: 991px) {
    .environment-area::before {
        display: none;
    }
}

.environment-area .work-info {
    padding: 180px 0;
}

.environment-area-title h3 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 400;
    color: var(--dark-gray);
    position: relative;
    z-index: 0;
    padding-bottom: 15px;
    opacity: 0;
}

.environment-area-title h3.animate {
    animation: slideInLeft 1s ease-in-out;
    opacity: 1;
}

.environment-area-title p {
    font-size: 18px;
    font-family: "Muli", sans-serif;
    color: var(--average-gray);
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0;
}

.environment-area-title p.animate {
    animation: slideInRight 1s ease-in-out;
    opacity: 1;
}

.footer {
    background-repeat: no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--dark-gray);
}

.footer-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    text-align: center;
}

.footer-logo a img {
    height: 80px;
    width: auto;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer-links {
    text-align: center;
}

.footer-links ul li {
    display: inline-block;
    margin-right: 46px;
}

.footer-links ul li a {
    color: var(--light-white);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.footer-social-media {
    text-align: center;
}

.footer-social-media ul li {
    display: inline-block;
}

.footer-social-media ul li a {
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    background: transparent;
    border-radius: 50%;
    color: var(--light-white);
    line-height: 40px !important;
    border: 1px solid var(--light-white);
    font-size: 14px;
}

.footer-copy-right {
    padding-bottom: 25px;
}

.copy-right-border {
    padding-bottom: 25px;
    border-top: 1px solid var(--average-gray);
}

.footer-copy-right p {
    font-size: 15px;
    color: var(--dark-white);
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
}

.our-mission-area {
    padding-top: 150px;
    padding-bottom: 137px;
}

.our-mission-area .our-mission-title h4 {
    font-size: 24px;
    color: var(--average-blue);
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.our-mission-items div {
    margin-bottom: 15px;
}

.our-mission-items div p {
    color: var(--average-gray);
    font-size: 16px;
}

.history-area {
    background: var(--dark-gray);
    position: relative;
}

.history-area::before {
    content: '';
    background-image: url(../img/RKfinal-12.jpg);
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 8;
    background-size: cover;
    position: absolute;
    background-position: center center;
}

@media (max-width: 991px) {
    .history-area::before {
        display: none;
    }
}

.history-area .history-info {
    padding: 100px 0;
}

.history-info {
    color: var(--light-white);
}

.history-info .animate {
    animation: slideInBottom 1s ease-in-out;
    opacity: 1;
}

.history-info span {
    position: relative;
    z-index: 3;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 19px;
    display: block;
    font-family: "Roboto", sans-serif;
    opacity: 0;
}

.history-info>div>p {
    color: var(--dark-white);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 28px;
    opacity: 0;
    text-justify: inter-word;
    text-align: justify;
}

.history-info>div>p.animate {
    animation: slideInBottom 1s ease-in-out;
    opacity: 1;
}

.founders-area {
    padding-top: 127px;
    padding-bottom: 100px;
    position: relative;
}

.founders-area .founders-area-title .animate {
    animation: slideInBottom 1s ease-in-out;
    opacity: 1;
}

.founders-area-title {
    margin-bottom: 90px;
}

.founders-area-title h3 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 400;
    color: var(--dark-gray);
    position: relative;
    z-index: 0;
    padding-bottom: 15px;
    opacity: 0;
}

.founders-people>div>div {
    margin-bottom: 30px;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    opacity: 0;
}

.founders-people>div>div:nth-of-type(1).animate {
    animation: slideInBottom 1s ease-in-out forwards;
}

.founders-people>div>div:nth-of-type(2).animate {
    animation: slideInBottom 1s ease-in-out forwards;
    animation-delay: 0.2s;
}

.founders-people>div>div:nth-of-type(3).animate {
    animation: slideInBottom 1s ease-in-out forwards;
    animation-delay: 0.4s;
}

.founder-photo {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

.founder-photo img {
    width: 100%;
    border-radius: 0px;
}

.founder-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transform: translateY(10%);
    transition: 0.3s;
    opacity: 0;
}

.founder-hover>div {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 10px;
}

.founders-people>div>div:hover .founder-hover {
    transform: translateY(0px);
    opacity: 1;
}

.founder-hover>div ul li {
    display: inline-block;
    margin: 0 4px;
}

.founder-hover>div ul li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px !important;
    text-align: center;
    font-size: 20px;
    color: var(--light-white);
    display: inline-block;
    background: var(--average-blue);
}

.founder-title {
    padding-top: 28px;
}

.founder-title h3 {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    color: var(--dark-gray);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-title-area .single-contact-title {
    position: relative;
    z-index: 0;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: left;
    align-items: center;
}

.contact-title-area .single-contact-title h3 {
    font-size: 78px;
    color: var(--light-white);
    font-weight: 400;
    margin-bottom: 0;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
    opacity: 0;
}

.contact-title-area .single-contact-title h3.animate {
    opacity: 1;
    animation: slideInRight 1s ease-in-out;
}

.contact-info-area {
    padding: 130px 0 100px;
}

.contact-info-item {
    margin-bottom: 25px;
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.contact-info-item span {
    width: 40px;
    font-size: 35px;
    text-align: center;
    color: var(--average-blue);
}

.contact-info-item span a {
    color: var(--average-blue);
    text-decoration: none;
}

.contact-info-item .media-body {
    display: inline-block;
    padding-left: 30px;
}

.contact-info-item .media-body h3 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--dark-gray);
}

.contact-info-item .media-body p {
    color: var(--average-gray);
}

.services-area {
    position: relative;
    padding-top: 65px;
    ;
    padding-bottom: 65px;
    ;
}

.services-area .row {
    padding-top: 65px;
    padding-bottom: 65px;
}

.services-area .row:not(:last-child) {
    border-bottom: 2px solid var(--less-dark-white);
}

.services-area .row img {
    width: 90%;
    border-radius: 10px;
    opacity: 0;
}

.services-area .row.animate img {
    animation: slideInRight 1s ease-in-out;
    opacity: 1;
}

.services-area .row h3 {
    color: var(--dark-gray);
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    position: relative;
    z-index: 0;
    opacity: 0;
}

.services-area .row.animate h3 {
    animation: slideInRight 1s ease-in-out forwards;
    animation-delay: 0.2s;
}

.services-area .row p {
    color: var(--average-gray);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 28px;
    text-justify: inter-word;
    text-align: justify;
    opacity: 0;
}

.services-area .row.animate p {
    animation: slideInRight 1s ease-in-out forwards;
    animation-delay: 0.4s;
}

.farsi-body p,
.farsi-body span,
.farsi-body h2,
.farsi-body h3,
.farsi-body h4 {
    direction: rtl;
    font-family: Sahel !important;
}

.farsi-body .contact-info-area p,
.farsi-body .contact-info-area h3 {
    direction: ltr;
}

.farsi-body .our-mission-area {
    direction: rtl;
}

.farsi-body .services-area {
    direction: rtl;
}

.farsi-body .navbar {
    direction: rtl;
}