@charset "UTF-8";
/*********************************************************************************************
** Table of Contents:                                                                       **
**********************************************************************************************

Project:    Nafie - HTML Portfolio Template
Version:    1.0
Created:    04/2021

1.  Animations
    ------------------------------
    1.  Zoom Effects
    2.  Fade Effects
    3.  Spinner Effects
    4.  Scale Effects
    5.  Rotate Effects
    6.  Slide Effects
    7.  Pulse Effects
    8.  LightSpeed Effects
    9.  Flash Effect
    10. Shine Effects
    11. Floating Effect
    ------------------------------

2.  Reset & Global elements
    ------------------------------

3.  UI Elements Styles
    ------------------------------
    1.  Forms
    2.  Toggle Switch Button
    3.  Custom Tooltip
    4.  Ultimate Tooltip
    ------------------------------

4.  Components Styles
    ------------------------------
    1.  Circle Cursor
    2.  Preloader
    3.  Header
    4.  Footer
    5.  Scroll to Top Button
    6.  Ajax Loading
    7.  Toast Notifications
    ------------------------------

5.  Pages Styles
    ------------------------------
    1.  Homepage
    ------------------------------

*********************************************************************************************/
/*-----------------------------------------------------------------------------------------*/
/* 1. Animations */
/*-----------------------------------------------------------------------------------------*/
/* 1. Zoom Effects */
/*-----------------*/
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3, 0.3);
        transform: scale(0.3, 0.3);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3, 0.3);
        transform: scale(0.3, 0.3);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

/* 2. Fade Effects */
/*-----------------*/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        margin-top: 20px;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        margin-top: 20px;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}

@-webkit-keyframes fadeInUpLeftTranslate {
    0% {
        opacity: 0;
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes fadeInUpLeftTranslate {
    0% {
        opacity: 0;
        -webkit-transform: translate(20px, 20px);
        transform: translate(20px, 20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@-webkit-keyframes fadeInUpRightTranslate {
    0% {
        opacity: 0;
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes fadeInUpRightTranslate {
    0% {
        opacity: 0;
        -webkit-transform: translate(-20px, 20px);
        transform: translate(-20px, 20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@-webkit-keyframes bigFadeInUp {
    0% {
        opacity: 0;
        margin-top: 40px;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}

@keyframes bigFadeInUp {
    0% {
        opacity: 0;
        margin-top: 40px;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        margin-top: -20px;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        margin-top: -20px;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        margin-right: -20px;
    }
    100% {
        opacity: 1;
        margin-right: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        margin-right: -20px;
    }
    100% {
        opacity: 1;
        margin-right: 0;
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        margin-left: -20px;
    }
    100% {
        opacity: 1;
        margin-left: 0;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        margin-left: -20px;
    }
    100% {
        opacity: 1;
        margin-left: 0;
    }
}

/* 3. Spinner Effects */
/*--------------------*/
@-webkit-keyframes spinner-left {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner-left {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner-right {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes spinner-right {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/* 4. scale Effects */
/*------------------*/
@-webkit-keyframes scaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes scaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/* 5. Rotate Effects */
/*-------------------*/
@-webkit-keyframes rotateInLeft {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}
@keyframes rotateInLeft {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@-webkit-keyframes rotateInRight {
    0% {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes rotateInRight {
    0% {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

/* 6. slide Effects */
/*------------------*/
@-webkit-keyframes slideInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes slideInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes slideDown {
    0% {
        max-height: 0;
        overflow: hidden;
    }
    100% {
        max-height: 100vh;
        overflow: unset;
    }
}

@keyframes slideDown {
    0% {
        max-height: 0;
        overflow: hidden;
    }
    100% {
        max-height: 100vh;
        overflow: unset;
    }
}

/* 7. Pulse Effect */
/*-----------------*/
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(227, 132, 67, 0.5);
        box-shadow: 0 0 0 0 rgba(227, 132, 67, 0.5);
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px transparent;
        box-shadow: 0 0 0 10px transparent;
    }
}
@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(227, 132, 67, 0.5);
        box-shadow: 0 0 0 0 rgba(227, 132, 67, 0.5);
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px transparent;
        box-shadow: 0 0 0 10px transparent;
    }
}

/* 8. LightSpeed Effects */
/*-----------------------*/
@-webkit-keyframes lightSpeedInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes lightSpeedInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@-webkit-keyframes lightSpeedInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes lightSpeedInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* 9. Flash Effect */
/*-----------------*/
@-webkit-keyframes flash {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}
@keyframes flash {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

/* 10. Shine Effects */
/*-------------------*/
@-webkit-keyframes leftShine {
    100% {
        left: 125%;
    }
}
@keyframes leftShine {
    100% {
        left: 125%;
    }
}

@-webkit-keyframes rightShine {
    100% {
        right: 125%;
    }
}

@keyframes rightShine {
    100% {
        right: 125%;
    }
}

/* 11. Floating Effect */
/*---------------------*/
@-webkit-keyframes floating {
    0% {
        -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
        transform: rotate(0deg) translate(-10px) rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
    }
}
@keyframes floating {
    0% {
        -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
        transform: rotate(0deg) translate(-10px) rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
    }
}

/*------------------------------------------------------------------------------------------*/
/* 2. Defaults & Reset & Global elements */
/*------------------------------------------------------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::-moz-selection {
    color: #fff;
}

::selection {
    color: #fff;
}

.light_theme ::-moz-selection {
    background-color: #e38443;
}

.light_theme ::selection {
    background-color: #e38443;
}

.dark_theme ::-moz-selection {
    background-color: #e38443;
}

.dark_theme ::selection {
    background-color: #e38443;
}

html {
    scroll-behavior: smooth;
}

html body {
    text-align: initial;
    overflow-x: hidden;
}

.hidden {
    display: none;
}

.clearfix {
    clear: both;
}

.ltr-dir {
    direction: ltr;
    display: inline-block;
}

hr {
    width: 100%;
    margin: 0;
}

ol,
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a,
button {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: 0 !important;
    cursor: pointer;
}

button {
    background: none;
    padding: 0;
    border: none;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

/* overrides bootstrap buttons */
.btn {
    text-transform: uppercase;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
}

.btn.disabled, .btn:disabled {
    cursor: not-allowed;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font-size: inherit;
    font-family: inherit !important;
}

input:invalid,
input:required,
textarea:invalid,
textarea:required {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
    outline: none;
}

.section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section .section-title .subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.section .section-title h2 {
    line-height: 2.6rem;
}

.section .section-title h2:last-child {
    margin: 0;
}

.section .section-title h2:not(:last-child) {
    margin-bottom: 20px;
}

.section .section-title p {
    margin: 0;
}

@media (min-width: 992px) {
    .section .text-box {
        position: relative;
    }
    html[dir="ltr"] .section .text-box {
        padding-left: 40px;
    }
    html[dir="rtl"] .section .text-box {
        padding-right: 40px;
    }
}

.section .text-box .subtitle {
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .section .text-box .subtitle {
        position: absolute;
        top: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    html[dir="ltr"] .section .text-box .subtitle {
        left: 0;
    }
    html[dir="rtl"] .section .text-box .subtitle {
        right: 0;
    }
    html[dir="ltr"] .section .text-box .subtitle {
        -webkit-transform: rotate(270deg) translateX(-100%);
        transform: rotate(270deg) translateX(-100%);
    }
    html[dir="rtl"] .section .text-box .subtitle {
        -webkit-transform: rotate(-270deg) translateX(100%);
        transform: rotate(-270deg) translateX(100%);
    }
    html[dir="ltr"] .section .text-box .subtitle {
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }
    html[dir="rtl"] .section .text-box .subtitle {
        -webkit-transform-origin: right top;
        transform-origin: right top;
    }
    .section .text-box .subtitle:before {
        content: "";
        display: inline-block;
        height: 2px;
        width: 60px;
    }
    html[dir="ltr"] .section .text-box .subtitle:before {
        margin-right: 20px;
    }
    html[dir="rtl"] .section .text-box .subtitle:before {
        margin-left: 20px;
    }
    .light_theme .section .text-box .subtitle:before {
        background-color: #5f5f5f;
    }
    .dark_theme .section .text-box .subtitle:before {
        background-color: #9f9f9f;
    }
}

@media (max-width: 991px) {
    .section .text-box .subtitle:after {
        content: "";
        display: block;
        height: 2px;
        width: 60px;
        margin-top: 5px;
        margin-bottom: 16px;
    }
    .light_theme .section .text-box .subtitle:after {
        background-color: #5f5f5f;
    }
    .dark_theme .section .text-box .subtitle:after {
        background-color: #9f9f9f;
    }
}

.section .text-box > *:not(.subtitle):not(:last-child) {
    margin-bottom: 30px;
}

.section .text-box p:last-child {
    margin-bottom: 0;
}

#app-inner {
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    padding-top: 70px;
    /* for changing the active mode */
    -webkit-transition: background 0.6s ease-in-out, padding-top 0.6s ease-in-out;
    transition: background 0.6s ease-in-out, padding-top 0.6s ease-in-out;
}

html[dir="ltr"] #app-inner {
    font-size: 1rem;
}

html[dir="rtl"] #app-inner {
    font-size: 1.1rem;
}

#app-inner.light_theme {
    background-color: #f7f7f7;
    color: #5f5f5f;
}

#app-inner.dark_theme {
    background-color: #1f1f1f;
    color: #9f9f9f;
}

html[dir="ltr"] #app-inner {
    font-family: "Roboto", sans-serif;
}

html[dir="rtl"] #app-inner {
    font-family: "Tajawal", sans-serif;
}

html[dir="rtl"] #app-inner {
    line-height: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
label {
    /* for changing the active mode */
    -webkit-transition: color 0.6s ease-in-out;
    transition: color 0.6s ease-in-out;
    font-weight: bold;
}

.light_theme h1, .light_theme
h2, .light_theme
h3, .light_theme
h4, .light_theme
h5, .light_theme
h6, .light_theme
strong, .light_theme
label {
    color: #1f1f1f;
}

.dark_theme h1, .dark_theme
h2, .dark_theme
h3, .dark_theme
h4, .dark_theme
h5, .dark_theme
h6, .dark_theme
strong, .dark_theme
label {
    color: #fff;
}

html[dir="ltr"] h1, html[dir="ltr"]
h2, html[dir="ltr"]
h3, html[dir="ltr"]
h4, html[dir="ltr"]
h5, html[dir="ltr"]
h6, html[dir="ltr"]
strong, html[dir="ltr"]
label {
    font-family: "Poppins", sans-serif;
}

html[dir="rtl"] h1, html[dir="rtl"]
h2, html[dir="rtl"]
h3, html[dir="rtl"]
h4, html[dir="rtl"]
h5, html[dir="rtl"]
h6, html[dir="rtl"]
strong, html[dir="rtl"]
label {
    font-family: "Tajawal", sans-serif;
}

html[dir="rtl"] h1, html[dir="rtl"]
h2, html[dir="rtl"]
h3, html[dir="rtl"]
h4, html[dir="rtl"]
h5, html[dir="rtl"]
h6 {
    line-height: 1.4;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

p {
    line-height: 1.8rem;
}

@media (max-width: 767px) {
    .btns-container > * {
        width: 100%;
    }
}

@media (min-width: 768px) {
    html[dir="ltr"] .btns-container > *:not(:last-of-type) {
        margin-right: 20px;
    }
    html[dir="rtl"] .btns-container > *:not(:last-of-type) {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .btns-container > *:not(:last-of-type) {
        margin-bottom: 12px;
    }
}

.light_theme .invert-in-light {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark_theme .invert-in-light {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.light_theme .invert-in-dark {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.dark_theme .invert-in-dark {
    -webkit-filter: invert(1);
    filter: invert(1);
}

/*------------------------------------------------------------------------------------------*/
/* 3. UI Elements Styles */
/*------------------------------------------------------------------------------------------*/
/* 1. Forms Styles */
/*-----------------*/
.form-styled .group:not(:last-child) {
    margin-bottom: 20px;
}

.form-styled .group label {
    font-size: 12px;
}

.light_theme .form-styled .group label {
    color: #1f1f1f;
}

.dark_theme .form-styled .group label {
    color: #fff;
}

.form-styled .group label.required-field:after {
    content: "*";
    color: #dc3545;
    font-family: monospace;
    font-size: 16px;
    line-height: 1;
}

html[dir="ltr"] .form-styled .group label.required-field:after {
    margin-left: 4px;
}

html[dir="rtl"] .form-styled .group label.required-field:after {
    margin-right: 4px;
}

.form-styled .group label .optional {
    font-style: italic;
    font-weight: normal;
}

html[dir="ltr"] .form-styled .group label .optional {
    font-family: "Roboto", sans-serif;
}

html[dir="rtl"] .form-styled .group label .optional {
    font-family: "Tajawal", sans-serif;
}

.light_theme .form-styled .group label .optional {
    color: #5f5f5f;
}

.dark_theme .form-styled .group label .optional {
    color: #9f9f9f;
}

.form-styled .group .control {
    position: relative;
}

html[dir="ltr"] .form-styled .group .control.has-prefix-icon input:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
    padding-left: 40px;
}

html[dir="rtl"] .form-styled .group .control.has-prefix-icon input:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
    padding-right: 40px;
}

.form-styled .group .control.has-prefix-icon textarea {
    text-indent: 26px;
}

.form-styled .group .control.has-prefix-icon .prefix-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    font-size: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

html[dir="ltr"] .form-styled .group .control.has-prefix-icon .prefix-icon {
    left: 0;
}

html[dir="rtl"] .form-styled .group .control.has-prefix-icon .prefix-icon {
    right: 0;
}

.form-styled .group .control.has-prefix-icon textarea + .prefix-icon {
    top: 11px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.form-styled .group .control textarea {
    display: block;
    width: 100%;
    height: 40px;
    padding-left: 14px;
    padding-right: 14px;
    border: 1px solid;
    outline: 0;
    border-radius: 0.63rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.light_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]), .light_theme
.form-styled .group .control textarea {
    background-color: #ededed;
}

.dark_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]), .dark_theme
.form-styled .group .control textarea {
    background-color: #292929;
}

.light_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not(:focus), .light_theme
.form-styled .group .control textarea:not(:focus) {
    border-color: #ededed;
}

.dark_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not(:focus), .dark_theme
.form-styled .group .control textarea:not(:focus) {
    border-color: #292929;
}

.form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus,
.form-styled .group .control textarea:focus {
    outline: none;
}

.light_theme.enable-focus-style .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus, .light_theme.enable-focus-style
.form-styled .group .control textarea:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus, .dark_theme.enable-focus-style
.form-styled .group .control textarea:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.light_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus, .light_theme
.form-styled .group .control textarea:focus {
    color: #e38443;
    border-color: #e38443;
}

.dark_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus, .dark_theme
.form-styled .group .control textarea:focus {
    color: #e38443;
    border-color: #e38443;
}

.light_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus ~ .fa, .light_theme
.form-styled .group .control textarea:focus ~ .fa {
    color: #e38443;
}

.dark_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus ~ .fa, .dark_theme
.form-styled .group .control textarea:focus ~ .fa {
    color: #e38443;
}

.form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):disabled,
.form-styled .group .control textarea:disabled {
    cursor: not-allowed;
}

.light_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):disabled, .light_theme
.form-styled .group .control textarea:disabled {
    background-color: #fff;
}

.dark_theme .form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):disabled, .dark_theme
.form-styled .group .control textarea:disabled {
    background-color: #313131;
}

.form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):disabled ~ .fa,
.form-styled .group .control textarea:disabled ~ .fa {
    cursor: not-allowed;
}

.form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]).invalid,
.form-styled .group .control textarea.invalid {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]).invalid ~ .fa,
.form-styled .group .control textarea.invalid ~ .fa {
    color: #dc3545 !important;
}

.form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]).valid,
.form-styled .group .control textarea.valid {
    color: #28a745 !important;
    border-color: #28a745 !important;
}

.form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]).valid ~ .fa,
.form-styled .group .control textarea.valid ~ .fa {
    color: #28a745 !important;
}

.form-styled .group .control input:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
    line-height: 1;
}

.form-styled .group .control input[type="tel"] {
    direction: ltr;
}

html[dir="rtl"] .form-styled .group .control input[type="tel"]::-webkit-input-placeholder {
    text-align: end;
}

html[dir="rtl"] .form-styled .group .control input[type="tel"]::-moz-placeholder {
    text-align: end;
}

html[dir="rtl"] .form-styled .group .control input[type="tel"]:-ms-input-placeholder {
    text-align: end;
}

html[dir="rtl"] .form-styled .group .control input[type="tel"]::-ms-input-placeholder {
    text-align: end;
}

html[dir="rtl"] .form-styled .group .control input[type="tel"]::placeholder {
    text-align: end;
}

.form-styled .group .control textarea {
    min-height: 120px;
    white-space: normal;
    padding-top: 10px;
    padding-bottom: 10px;
    resize: vertical;
}

.form-styled .group .control > .fa:not(.prefix-icon) {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
}

.form-styled .group .control > .fa:not(.prefix-icon).action-icon {
    cursor: pointer;
}

html[dir="ltr"] .form-styled .group .control > .fa:not(.prefix-icon).action-icon {
    right: 18px;
}

html[dir="rtl"] .form-styled .group .control > .fa:not(.prefix-icon).action-icon {
    left: 18px;
}

.form-styled .group .control .errors-msgs {
    display: none;
}

/* 3. Toggle Switch Button Styles */
/*--------------------------------*/
.toggle-switch-btn {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 46px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px;
    border: 1px solid;
    border-radius: 30px;
}

.light_theme .toggle-switch-btn {
    background-color: #fff;
    border-color: whitesmoke;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
}

.dark_theme .toggle-switch-btn {
    background-color: #313131;
    border-color: #292929;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
}

.toggle-switch-btn label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    height: 100%;
    font-weight: bold;
    white-space: nowrap;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.light_theme .toggle-switch-btn label {
    color: #1f1f1f;
}

.dark_theme .toggle-switch-btn label {
    color: #fff;
}

.toggle-switch-btn .switcher-toggle {
    position: absolute;
    z-index: 0;
    top: 4px;
    height: calc(46px - (4px * 2) - 2px);
    width: 50%;
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.light_theme .toggle-switch-btn .switcher-toggle {
    background-color: #e38443;
}

.dark_theme .toggle-switch-btn .switcher-toggle {
    background-color: #e38443;
}

.toggle-switch-btn input {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}

.toggle-switch-btn input:checked + label {
    color: #fff;
}

html[dir="ltr"] .toggle-switch-btn input:first-of-type:checked ~ .switcher-toggle {
    left: 4px;
}

html[dir="rtl"] .toggle-switch-btn input:first-of-type:checked ~ .switcher-toggle {
    right: 4px;
}

html[dir="ltr"] .toggle-switch-btn input:last-of-type:checked ~ .switcher-toggle {
    left: calc(50% - 4px);
}

html[dir="rtl"] .toggle-switch-btn input:last-of-type:checked ~ .switcher-toggle {
    right: calc(50% - 4px);
}

.toggle-switch-btn input:focus + label {
    outline: none;
}

.light_theme.enable-focus-style .toggle-switch-btn input:focus + label {
    -webkit-box-shadow: 0 0 0 3px rgba(31, 31, 31, 0.7);
    box-shadow: 0 0 0 3px rgba(31, 31, 31, 0.7);
}

.dark_theme.enable-focus-style .toggle-switch-btn input:focus + label {
    -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7);
}

/* 4. Custom Tooltip Styles */
/*--------------------------*/
.has-tooltip {
    position: relative;
}

.has-tooltip .custom-tooltip {
    position: absolute;
    z-index: 1;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.8rem 1rem;
    border-radius: 0.63rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.light_theme .has-tooltip .custom-tooltip {
    background-color: #e38443;
    -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.dark_theme .has-tooltip .custom-tooltip {
    background-color: #e38443;
    -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.has-tooltip .custom-tooltip:after {
    content: "";
    position: absolute;
}

.light_theme .has-tooltip .custom-tooltip:after {
    background-color: #e38443;
}

.dark_theme .has-tooltip .custom-tooltip:after {
    background-color: #e38443;
}

.has-tooltip .custom-tooltip.custom-tooltip-top {
    top: 0;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-top {
    left: 50%;
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-top {
    right: 50%;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-top {
    -webkit-transform: translate(-50%, -190%);
    transform: translate(-50%, -190%);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-top {
    -webkit-transform: translate(50%, -190%);
    transform: translate(50%, -190%);
}

.has-tooltip .custom-tooltip.custom-tooltip-top:after {
    bottom: 1px;
    height: 10px;
    width: 15px;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-top:after {
    left: 50%;
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-top:after {
    right: 50%;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-top:after {
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-top:after {
    -webkit-transform: translate(50%, 100%);
    transform: translate(50%, 100%);
}

.has-tooltip .custom-tooltip.custom-tooltip-bottom {
    bottom: 0;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-bottom {
    left: 50%;
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-bottom {
    right: 50%;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-bottom {
    -webkit-transform: translate(-50%, 190%);
    transform: translate(-50%, 190%);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-bottom {
    -webkit-transform: translate(50%, 190%);
    transform: translate(50%, 190%);
}

.has-tooltip .custom-tooltip.custom-tooltip-bottom:after {
    top: 1px;
    height: 10px;
    width: 15px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-bottom:after {
    left: 50%;
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-bottom:after {
    right: 50%;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-bottom:after {
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-bottom:after {
    -webkit-transform: translate(50%, -100%);
    transform: translate(50%, -100%);
}

.has-tooltip .custom-tooltip.custom-tooltip-left {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-left {
    right: calc(100% + 4rem);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-left {
    left: calc(100% + 4rem);
}

.has-tooltip .custom-tooltip.custom-tooltip-left:after {
    top: 50%;
    height: 15px;
    width: 10px;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-left:after {
    right: 1px;
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-left:after {
    left: 1px;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-left:after {
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-left:after {
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-left:after {
    -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-left:after {
    -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.has-tooltip .custom-tooltip.custom-tooltip-right {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-right {
    left: calc(100% + 4rem);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-right {
    right: calc(100% + 4rem);
}

.has-tooltip .custom-tooltip.custom-tooltip-right:after {
    top: 50%;
    height: 15px;
    width: 10px;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-right:after {
    left: 1px;
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-right:after {
    right: 1px;
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-right:after {
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-right:after {
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}

html[dir="ltr"] .has-tooltip .custom-tooltip.custom-tooltip-right:after {
    -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

html[dir="rtl"] .has-tooltip .custom-tooltip.custom-tooltip-right:after {
    -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.has-tooltip:hover,
.enable-focus-style .has-tooltip:focus {
    z-index: 1;
}

.has-tooltip:hover .custom-tooltip,
.enable-focus-style .has-tooltip:focus .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

html[dir="ltr"] .has-tooltip:hover .custom-tooltip-top, html[dir="ltr"]
.enable-focus-style .has-tooltip:focus .custom-tooltip-top {
    -webkit-transform: translate(-50%, -150%);
    transform: translate(-50%, -150%);
}

html[dir="rtl"] .has-tooltip:hover .custom-tooltip-top, html[dir="rtl"]
.enable-focus-style .has-tooltip:focus .custom-tooltip-top {
    -webkit-transform: translate(50%, -150%);
    transform: translate(50%, -150%);
}

html[dir="ltr"] .has-tooltip:hover .custom-tooltip-bottom, html[dir="ltr"]
.enable-focus-style .has-tooltip:focus .custom-tooltip-bottom {
    -webkit-transform: translate(-50%, 150%);
    transform: translate(-50%, 150%);
}

html[dir="rtl"] .has-tooltip:hover .custom-tooltip-bottom, html[dir="rtl"]
.enable-focus-style .has-tooltip:focus .custom-tooltip-bottom {
    -webkit-transform: translate(50%, 150%);
    transform: translate(50%, 150%);
}

html[dir="ltr"] .has-tooltip:hover .custom-tooltip-left, html[dir="ltr"]
.enable-focus-style .has-tooltip:focus .custom-tooltip-left {
    right: calc(100% + 2rem);
}

html[dir="rtl"] .has-tooltip:hover .custom-tooltip-left, html[dir="rtl"]
.enable-focus-style .has-tooltip:focus .custom-tooltip-left {
    left: calc(100% + 2rem);
}

html[dir="ltr"] .has-tooltip:hover .custom-tooltip-right, html[dir="ltr"]
.enable-focus-style .has-tooltip:focus .custom-tooltip-right {
    left: calc(100% + 2rem);
}

html[dir="rtl"] .has-tooltip:hover .custom-tooltip-right, html[dir="rtl"]
.enable-focus-style .has-tooltip:focus .custom-tooltip-right {
    right: calc(100% + 2rem);
}

/* 5. Ultimate Tooltip Styles */
/*----------------------------*/
.has-ultimate-tooltip .ultimate-tooltip {
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: 0.63rem;
}

.light_theme .has-ultimate-tooltip .ultimate-tooltip {
    background-color: #fff;
    -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.dark_theme .has-ultimate-tooltip .ultimate-tooltip {
    background-color: #313131;
    -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

@media (min-width: 577px) {
    .has-ultimate-tooltip .ultimate-tooltip {
        width: 300px;
    }
}

@media (max-width: 576px) {
    .has-ultimate-tooltip .ultimate-tooltip {
        width: 85vw;
    }
}

.has-ultimate-tooltip .ultimate-tooltip p {
    line-height: 1.7rem;
    font-size: 1.1rem;
}

.light_theme .has-ultimate-tooltip .ultimate-tooltip p {
    color: #5f5f5f;
}

.dark_theme .has-ultimate-tooltip .ultimate-tooltip p {
    color: #9f9f9f;
}

.has-ultimate-tooltip .ultimate-tooltip p:first-child {
    margin: 0 0 20px;
}

.has-ultimate-tooltip .ultimate-tooltip p:last-child {
    margin: 20px 0 0;
}

.has-ultimate-tooltip .ultimate-tooltip .ultimate-tooltip-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.light_theme .has-ultimate-tooltip .ultimate-tooltip .ultimate-tooltip-title {
    color: #e38443;
}

.dark_theme .has-ultimate-tooltip .ultimate-tooltip .ultimate-tooltip-title {
    color: #e38443;
}

.has-ultimate-tooltip .ultimate-tooltip .ultimate-tooltip-subtitle {
    font-size: 0.95rem;
    margin: 0;
}

.has-ultimate-tooltip .ultimate-tooltip[data-popper-placement="top"] + .ultimate-tooltip-arrow {
    top: -21px;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

html[dir="ltr"] .has-ultimate-tooltip .ultimate-tooltip[data-popper-placement="top"] + .ultimate-tooltip-arrow {
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
}

html[dir="rtl"] .has-ultimate-tooltip .ultimate-tooltip[data-popper-placement="top"] + .ultimate-tooltip-arrow {
    -webkit-transform: translate(50%, -100%);
    transform: translate(50%, -100%);
}

.has-ultimate-tooltip .ultimate-tooltip[data-popper-placement="bottom"] + .ultimate-tooltip-arrow {
    bottom: -21px;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

html[dir="ltr"] .has-ultimate-tooltip .ultimate-tooltip[data-popper-placement="bottom"] + .ultimate-tooltip-arrow {
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

html[dir="rtl"] .has-ultimate-tooltip .ultimate-tooltip[data-popper-placement="bottom"] + .ultimate-tooltip-arrow {
    -webkit-transform: translate(50%, 100%);
    transform: translate(50%, 100%);
}

.has-ultimate-tooltip .ultimate-tooltip-arrow {
    position: absolute;
    height: 10px;
    width: 15px;
}

html[dir="ltr"] .has-ultimate-tooltip .ultimate-tooltip-arrow {
    left: 50%;
}

html[dir="rtl"] .has-ultimate-tooltip .ultimate-tooltip-arrow {
    right: 50%;
}

.light_theme .has-ultimate-tooltip .ultimate-tooltip-arrow {
    background-color: #fff;
}

.dark_theme .has-ultimate-tooltip .ultimate-tooltip-arrow {
    background-color: #313131;
}

.has-ultimate-tooltip .ultimate-tooltip,
.has-ultimate-tooltip .ultimate-tooltip-arrow {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
}

.has-ultimate-tooltip:hover,
.enable-focus-style .has-ultimate-tooltip:focus {
    z-index: 1;
}

.has-ultimate-tooltip:hover .ultimate-tooltip,
.has-ultimate-tooltip:hover .ultimate-tooltip-arrow,
.enable-focus-style .has-ultimate-tooltip:focus .ultimate-tooltip,
.enable-focus-style .has-ultimate-tooltip:focus .ultimate-tooltip-arrow {
    visibility: visible;
    opacity: 1;
}

/*------------------------------------------------------------------------------------------*/
/* 4. Components Styles */
/*------------------------------------------------------------------------------------------*/
/* 1. Circle Cursor Styles */
/*-------------------------*/
.circle-cursor {
    position: fixed;
    z-index: 99999999;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    mix-blend-mode: difference;
    pointer-events: none;
    visibility: hidden;
}

.circle-cursor.circle-cursor-outer {
    height: 30px;
    width: 30px;
    border: 1px solid;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.light_theme .circle-cursor.circle-cursor-outer {
    border-color: #e38443;
}

.dark_theme .circle-cursor.circle-cursor-outer {
    border-color: #e38443;
}

.circle-cursor.circle-cursor-inner {
    height: 6px;
    width: 6px;
    -webkit-transition: top 0.02s ease-out, left 0.02s ease-out, height 0.2s ease-in-out,
        width 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition: top 0.02s ease-out, left 0.02s ease-out, height 0.2s ease-in-out,
        width 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.light_theme .circle-cursor.circle-cursor-inner {
    background-color: #e38443;
}

.dark_theme .circle-cursor.circle-cursor-inner {
    background-color: #e38443;
}

.circle-cursor.circle-cursor-inner.cursor-link-hover {
    height: 20px;
    width: 20px;
    opacity: 0.5;
}

.circle-cursor.circle-cursor-inner.cursor-click-effect {
    height: 13px;
    width: 13px;
}

/* 2. Preloader Styles */
/*---------------------*/
.preloader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 4000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.light_theme .preloader {
    background-color: #e6e6e6;
}

.dark_theme .preloader {
    background-color: #1f1f1f;
}

.preloader .circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: auto;
}

.preloader .circle .double-bounce1,
.preloader .circle .double-bounce2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    opacity: 0.6;
    -webkit-animation: bounce 2s infinite ease-in-out;
    animation: bounce 2s infinite ease-in-out;
}

.light_theme .preloader .circle .double-bounce1, .light_theme
.preloader .circle .double-bounce2 {
    background-color: #e38443;
}

.dark_theme .preloader .circle .double-bounce1, .dark_theme
.preloader .circle .double-bounce2 {
    background-color: #e38443;
}

.preloader .circle .double-bounce1.double-bounce2,
.preloader .circle .double-bounce2.double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.preloader-enter-active {
    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;
}

.preloader-leave-active {
    animation: fadeIn 0.3s ease-in-out reverse;
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

/* 3. Header Styles */
/*------------------*/
header {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header .logo {
    position: relative;
    z-index: 2;
}

header .logo h1 {
    font-size: 2rem;
    margin: 0;
}

html[dir="ltr"] header .logo h1 {
    font-family: "Saira Stencil One";
}

html[dir="rtl"] header .logo h1 {
    font-family: "Tajawal", sans-serif;
}

html[dir="ltr"] header .logo h1 {
    font-weight: normal;
}

.light_theme header .logo h1 {
    color: #1f1f1f;
}

.dark_theme header .logo h1 {
    color: #fff;
}

header .logo h1:after {
    content: "";
    display: inline-block;
    height: 0.17em;
    width: 0.2em;
}

html[dir="ltr"] header .logo h1:after {
    margin-left: 0.08em;
}

html[dir="rtl"] header .logo h1:after {
    margin-right: 0.08em;
}

.light_theme header .logo h1:after {
    background-color: #e38443;
}

.dark_theme header .logo h1:after {
    background-color: #e38443;
}

header .logo h1:focus-within {
    outline: none;
}

.light_theme.enable-focus-style header .logo h1:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style header .logo h1:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

@media (min-width: 992px) {
    header nav .nav-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 991px) {
    header nav .nav-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        text-align: center;
        padding: 100px 40px;
        overflow-y: auto;
    }
}

@media (min-width: 992px) {
    html[dir="ltr"] header nav .nav-links li:not(:last-of-type) {
        margin-right: 1.6rem;
    }
    html[dir="rtl"] header nav .nav-links li:not(:last-of-type) {
        margin-left: 1.6rem;
    }
}

@media (max-width: 991px) {
    header nav .nav-links li {
        width: 100%;
        overflow: hidden;
    }
    header nav .nav-links li:not(:last-of-type) {
        margin-bottom: 0.8rem;
    }
}

header nav .nav-links li a {
    font-weight: bold;
    padding: 0.4rem 0.2rem;
}

html[dir="ltr"] header nav .nav-links li a {
    font-family: "Poppins", sans-serif;
}

html[dir="rtl"] header nav .nav-links li a {
    font-family: "Tajawal", sans-serif;
}

header nav .nav-links li a {
    position: relative;
}

header nav .nav-links li a:before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 0.15rem;
    width: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

html[dir="ltr"] header nav .nav-links li a:before {
    left: 0;
}

html[dir="rtl"] header nav .nav-links li a:before {
    right: 0;
}

.light_theme header nav .nav-links li a:before {
    background-color: #e38443;
}

.dark_theme header nav .nav-links li a:before {
    background-color: #e38443;
}

header nav .nav-links li a:hover:before {
    width: 100%;
}

.light_theme header nav .nav-links li a {
    color: #1f1f1f;
}

.dark_theme header nav .nav-links li a {
    color: #fff;
}

@media (min-width: 992px) {
    header nav .nav-links li a {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    header nav .nav-links li a {
        display: inline-block;
        font-size: 2rem;
        -webkit-transition-duration: 0.6s;
        transition-duration: 0.6s;
        -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 2);
        transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 2);
    }
}

header nav .nav-links li a:after {
    content: "";
    display: inline-block;
    height: 0.2em;
    width: 0.2em;
    border-radius: 50%;
}

html[dir="ltr"] header nav .nav-links li a:after {
    margin-left: 0.1em;
}

html[dir="rtl"] header nav .nav-links li a:after {
    margin-right: 0.1em;
}

.light_theme header nav .nav-links li a:after {
    background-color: #1f1f1f;
}

.dark_theme header nav .nav-links li a:after {
    background-color: #fff;
}

header nav .nav-links li a:focus {
    outline: none;
}

.light_theme.enable-focus-style header nav .nav-links li a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style header nav .nav-links li a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

header nav:before {
    content: "";
    position: fixed;
    z-index: 1;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.light_theme header nav:before {
    background-color: #fff;
}

.dark_theme header nav:before {
    background-color: #313131;
}

header nav .desktop-menu-content {
    position: fixed;
    z-index: 2;
    left: 0;
    height: 100vh;
    width: 100vw;
    outline: none;
}

@media (max-width: 991px) {
    header nav .desktop-menu-content {
        display: none;
    }
}

header nav .desktop-menu-content .container {
    display: grid;
    place-items: center;
    height: 100vh;
    width: 100vw;
    padding-top: 80px;
}

header nav .desktop-menu-content .container > * {
    width: 100%;
}

html[dir="ltr"] header nav .desktop-menu-content .about-us p {
    font-size: 1rem;
}

html[dir="rtl"] header nav .desktop-menu-content .about-us p {
    font-size: 1.1rem;
}

.light_theme header nav .desktop-menu-content .about-us p {
    color: #1f1f1f;
}

.dark_theme header nav .desktop-menu-content .about-us p {
    color: #fff;
}

header nav .desktop-menu-content .about-us .block-title {
    font-size: 2.8rem;
    line-height: 4rem;
}

header nav .desktop-menu-content .contact-info li .block-title {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

header nav .desktop-menu-content .contact-info li .block-title:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.light_theme header nav .desktop-menu-content .contact-info li .block-title:after {
    background-color: #e38443;
}

.dark_theme header nav .desktop-menu-content .contact-info li .block-title:after {
    background-color: #e38443;
}

header nav .desktop-menu-content .contact-info a {
    position: relative;
}

header nav .desktop-menu-content .contact-info a:before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 0.1rem;
    width: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

html[dir="ltr"] header nav .desktop-menu-content .contact-info a:before {
    left: 0;
}

html[dir="rtl"] header nav .desktop-menu-content .contact-info a:before {
    right: 0;
}

.light_theme header nav .desktop-menu-content .contact-info a:before {
    background-color: #e38443;
}

.dark_theme header nav .desktop-menu-content .contact-info a:before {
    background-color: #e38443;
}

header nav .desktop-menu-content .contact-info a:hover:before {
    width: 100%;
}

header nav .desktop-menu-content .contact-info a:focus {
    outline: none;
}

.light_theme.enable-focus-style header nav .desktop-menu-content .contact-info a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style header nav .desktop-menu-content .contact-info a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

@media (min-width: 992px) {
    header nav:not(.menu-open):before,
    header nav:not(.menu-open) .desktop-menu-content {
        -webkit-transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99) 0.6s;
        transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99) 0.6s;
        top: 100vh;
    }
}

@media (max-width: 991px) {
    header nav:not(.menu-open):before,
    header nav:not(.menu-open) .desktop-menu-content,
    header nav:not(.menu-open) .nav-links {
        -webkit-transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99) 0.4s;
        transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99) 0.4s;
        top: 100vh;
    }
    header nav:not(.menu-open) .nav-links li a {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
}

header nav:not(.menu-open) .desktop-menu-content > * {
    visibility: hidden;
}

header nav:not(.menu-open) .desktop-menu-content .about-us p {
    -webkit-transition: all 0.2s ease-in-out 0.4s;
    transition: all 0.2s ease-in-out 0.4s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
}

header nav:not(.menu-open) .desktop-menu-content .about-us .block-title {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
}

header nav:not(.menu-open) .desktop-menu-content .contact-info .block-title {
    -webkit-transition: color 0s linear 0.2s;
    transition: color 0s linear 0.2s;
    color: transparent;
}

header nav:not(.menu-open) .desktop-menu-content .contact-info .block-title:after {
    -webkit-transition: 0.4s linear;
    transition: 0.4s linear;
}

html[dir="ltr"] header nav:not(.menu-open) .desktop-menu-content .contact-info .block-title:after {
    -webkit-transition-property: left;
    transition-property: left;
}

html[dir="rtl"] header nav:not(.menu-open) .desktop-menu-content .contact-info .block-title:after {
    -webkit-transition-property: right;
    transition-property: right;
}

html[dir="ltr"] header nav:not(.menu-open) .desktop-menu-content .contact-info .block-title:after {
    left: -100%;
}

html[dir="rtl"] header nav:not(.menu-open) .desktop-menu-content .contact-info .block-title:after {
    right: -100%;
}

header nav:not(.menu-open) .desktop-menu-content .contact-info ul {
    -webkit-transition: all 0.2s ease-in-out 0.4s;
    transition: all 0.2s ease-in-out 0.4s;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
}

header nav.menu-open:before,
header nav.menu-open .desktop-menu-content {
    -webkit-transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
    transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
    top: 0;
}

@media (min-width: 992px) {
    header nav.menu-open .nav-links {
        visibility: hidden;
    }
}

@media (max-width: 991px) {
    header nav.menu-open .nav-links {
        -webkit-transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
        transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
        top: 0;
    }
    header nav.menu-open .nav-links li a {
        -webkit-transition-delay: 0.8s;
        transition-delay: 0.8s;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

header nav.menu-open .desktop-menu-content > * {
    visibility: visible;
}

header nav.menu-open .desktop-menu-content .about-us p {
    -webkit-transition: all 0.2s ease-in-out 1s;
    transition: all 0.2s ease-in-out 1s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

header nav.menu-open .desktop-menu-content .about-us .block-title {
    -webkit-transition: all 0.4s ease-in-out 1.2s;
    transition: all 0.4s ease-in-out 1.2s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

header nav.menu-open .desktop-menu-content .contact-info .block-title {
    -webkit-transition: color 0s linear 1.2s;
    transition: color 0s linear 1.2s;
}

header nav.menu-open .desktop-menu-content .contact-info .block-title:after {
    -webkit-transition: 0.4s linear 1s;
    transition: 0.4s linear 1s;
}

html[dir="ltr"] header nav.menu-open .desktop-menu-content .contact-info .block-title:after {
    -webkit-transition-property: left;
    transition-property: left;
}

html[dir="rtl"] header nav.menu-open .desktop-menu-content .contact-info .block-title:after {
    -webkit-transition-property: right;
    transition-property: right;
}

html[dir="ltr"] header nav.menu-open .desktop-menu-content .contact-info .block-title:after {
    left: 100%;
}

html[dir="rtl"] header nav.menu-open .desktop-menu-content .contact-info .block-title:after {
    right: 100%;
}

header nav.menu-open .desktop-menu-content .contact-info ul {
    -webkit-transition: all 0.2s ease-in-out 1.4s;
    transition: all 0.2s ease-in-out 1.4s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

header .options-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

html[dir="ltr"] header .options-icons li:not(:last-of-type) {
    margin-right: 1rem;
}

html[dir="rtl"] header .options-icons li:not(:last-of-type) {
    margin-left: 1rem;
}

header .options-icons .lang-switcher img {
    height: 20px;
}

.light_theme header .options-icons .lang-switcher img {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.dark_theme header .options-icons .lang-switcher img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

header .options-icons .lang-switcher:focus-within {
    outline: none;
}

.light_theme.enable-focus-style header .options-icons .lang-switcher:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style header .options-icons .lang-switcher:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

header .options-icons .theme-switcher button {
    position: relative;
    height: 28px;
    width: 48px;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header .options-icons .theme-switcher button:after {
    content: "";
    position: absolute;
    top: 3px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

header .options-icons .theme-switcher button.light_theme:after {
    left: 23px;
    -webkit-box-shadow: 22px -20px #e38443  inset;
    box-shadow: 22px -20px #e38443 inset;
}

header .options-icons .theme-switcher button.dark_theme:after {
    left: 3px;
    -webkit-box-shadow: 9px -7px #fff inset;
    box-shadow: 9px -7px #fff inset;
}

header .options-icons .theme-switcher button:focus {
    outline: none;
}

.light_theme.enable-focus-style header .options-icons .theme-switcher button:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style header .options-icons .theme-switcher button:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

header .options-icons .hamburger-btn {
    position: relative;
    z-index: 2;
}

header .options-icons .hamburger-btn button {
    position: relative;
    height: 20px;
    width: 16px;
}

header .options-icons .hamburger-btn span {
    display: block;
    position: absolute;
    width: 2px;
    border-radius: 5px;
    -webkit-transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.light_theme header .options-icons .hamburger-btn span {
    background-color: #1f1f1f;
}

.dark_theme header .options-icons .hamburger-btn span {
    background-color: #fff;
}

header .options-icons .hamburger-btn span:nth-of-type(1) {
    bottom: 50%;
    height: 50%;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
}

html[dir="ltr"] header .options-icons .hamburger-btn span:nth-of-type(1) {
    left: 0;
}

html[dir="rtl"] header .options-icons .hamburger-btn span:nth-of-type(1) {
    right: 0;
}

header .options-icons .hamburger-btn span:nth-of-type(2) {
    top: 0;
    height: 100%;
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

html[dir="ltr"] header .options-icons .hamburger-btn span:nth-of-type(2) {
    left: 50%;
}

html[dir="rtl"] header .options-icons .hamburger-btn span:nth-of-type(2) {
    right: 50%;
}

html[dir="ltr"] header .options-icons .hamburger-btn span:nth-of-type(2) {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

html[dir="rtl"] header .options-icons .hamburger-btn span:nth-of-type(2) {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

header .options-icons .hamburger-btn span:nth-of-type(3) {
    top: 50%;
    height: 50%;
    -webkit-transform-origin: top center;
    transform-origin: top center;
}

html[dir="ltr"] header .options-icons .hamburger-btn span:nth-of-type(3) {
    right: 0;
}

html[dir="rtl"] header .options-icons .hamburger-btn span:nth-of-type(3) {
    left: 0;
}

html[dir="ltr"] header .options-icons .hamburger-btn:not(.open) button {
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

html[dir="rtl"] header .options-icons .hamburger-btn:not(.open) button {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
}

html[dir="ltr"] header .options-icons .hamburger-btn.open button {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

html[dir="rtl"] header .options-icons .hamburger-btn.open button {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

html[dir="ltr"] header .options-icons .hamburger-btn.open span:nth-of-type(1) {
    -webkit-transform: rotate(90deg) translateY(3px);
    transform: rotate(90deg) translateY(3px);
}

html[dir="rtl"] header .options-icons .hamburger-btn.open span:nth-of-type(1) {
    -webkit-transform: rotate(-90deg) translateY(3px);
    transform: rotate(-90deg) translateY(3px);
}

html[dir="ltr"] header .options-icons .hamburger-btn.open span:nth-of-type(3) {
    -webkit-transform: rotate(90deg) translateY(-3px);
    transform: rotate(90deg) translateY(-3px);
}

html[dir="rtl"] header .options-icons .hamburger-btn.open span:nth-of-type(3) {
    -webkit-transform: rotate(-90deg) translateY(-3px);
    transform: rotate(-90deg) translateY(-3px);
}

header .options-icons .hamburger-btn span {
    -webkit-transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
    transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
}

header .options-icons .hamburger-btn:focus-within {
    outline: none;
}

.light_theme.enable-focus-style header .options-icons .hamburger-btn:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style header .options-icons .hamburger-btn:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

@media (min-width: 992px) {
    .light_theme header.big-header .theme-switcher button {
        background-color: #fff;
    }
    .dark_theme header.big-header .theme-switcher button {
        background-color: #313131;
    }
    .light_theme header.small-header {
        background-color: #fff;
        -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
        box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    }
    .dark_theme header.small-header {
        background-color: #313131;
        -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
        box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    }
    header.small-header .container {
        height: 60px;
    }
    .light_theme header.small-header .theme-switcher button {
        background-color: #e6e6e6;
    }
    .dark_theme header.small-header .theme-switcher button {
        background-color: #1f1f1f;
    }
}

@media (max-width: 991px) {
    .light_theme header {
        background-color: #fff;
        -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
        box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    }
    .dark_theme header {
        background-color: #313131;
        -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
        box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    }
    header .container {
        height: 60px;
    }
    .light_theme header .theme-switcher button {
        background-color: #e6e6e6;
    }
    .dark_theme header .theme-switcher button {
        background-color: #1f1f1f;
    }
}

header:not(.header-hidden) {
    top: 0;
}

@media (min-width: 992px) {
    header.header-hidden.big-header {
        top: -100px;
    }
    header.header-hidden.small-header {
        top: -60px;
    }
}

@media (max-width: 991px) {
    header.header-hidden {
        top: -60px;
    }
}

/* 4. Footer */
/*-----------*/
footer {
    font-size: 0.95rem;
    line-height: 1.5rem;
    padding-top: 20px;
    padding-bottom: 20px;
}

.light_theme footer {
    background-color: #fff;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
}

.dark_theme footer {
    background-color: #313131;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
}

footer .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    footer .row {
        text-align: center;
    }
}

@media (max-width: 991px) {
    footer .row > div:first-of-type {
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    footer .row > div:last-of-type {
        text-align: end;
    }
}

.light_theme footer .row > div:last-of-type a {
    color: #e38443;
}

.dark_theme footer .row > div:last-of-type a {
    color: #e38443;
}

footer .row > div:last-of-type a:hover {
    text-decoration: underline;
}

footer .row > div:last-of-type a:focus {
    outline: none;
}

.light_theme.enable-focus-style footer .row > div:last-of-type a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style footer .row > div:last-of-type a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

footer .logo h1 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2rem;
    margin: 0;
}

html[dir="ltr"] footer .logo h1 {
    font-family: "Saira Stencil One";
}

html[dir="rtl"] footer .logo h1 {
    font-family: "Tajawal", sans-serif;
}

html[dir="ltr"] footer .logo h1 {
    font-weight: normal;
}

.light_theme footer .logo h1 {
    color: #1f1f1f;
}

.dark_theme footer .logo h1 {
    color: #fff;
}

@media (max-width: 991px) {
    footer .logo h1 {
        margin-left: auto;
        margin-right: auto;
    }
}

footer .logo h1:after {
    content: "";
    display: inline-block;
    height: 0.17em;
    width: 0.2em;
}

html[dir="ltr"] footer .logo h1:after {
    margin-left: 0.08em;
}

html[dir="rtl"] footer .logo h1:after {
    margin-right: 0.08em;
}

.light_theme footer .logo h1:after {
    background-color: #e38443;
}

.dark_theme footer .logo h1:after {
    background-color: #e38443;
}

footer .logo h1:focus-within {
    outline: none;
}

.light_theme.enable-focus-style footer .logo h1:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style footer .logo h1:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

/* 5. Scroll to Top Button Styles */
/*--------------------------------*/
.scroll-to-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    z-index: 2000;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: #e38443;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 0.63rem;
    cursor: pointer;
}

html[dir="ltr"] .scroll-to-top {
    right: calc(-40px - 10px);
}

html[dir="rtl"] .scroll-to-top {
    left: calc(-40px - 10px);
}

.light_theme .scroll-to-top {
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
}

.dark_theme .scroll-to-top {
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
}

html[dir="ltr"] .scroll-to-top.show-scrollTop {
    right: 25px;
}

html[dir="rtl"] .scroll-to-top.show-scrollTop {
    left: 25px;
}

.scroll-to-top:focus {
    opacity: 1;
}

.scroll-to-top:focus {
    outline: none;
}

.light_theme.enable-focus-style .scroll-to-top:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .scroll-to-top:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

/* 6. Ajax Loading Styles */
/*------------------------*/
.ajax-loading {
    position: fixed;
    z-index: 2000;
    bottom: 20px;
    padding: 3px;
    border-radius: 50%;
}

html[dir="ltr"] .ajax-loading {
    left: 20px;
}

html[dir="rtl"] .ajax-loading {
    right: 20px;
}

.light_theme .ajax-loading {
    background-color: #fff;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
}

.dark_theme .ajax-loading {
    background-color: #313131;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
}

.ajax-loading span {
    display: block;
    height: 29px;
    width: 29px;
    border-width: 3px;
    border-style: solid;
    border-radius: 50%;
}

html[dir="ltr"] .ajax-loading span {
    -webkit-animation: spinner-left 0.6s linear infinite;
    animation: spinner-left 0.6s linear infinite;
}

html[dir="rtl"] .ajax-loading span {
    -webkit-animation: spinner-right 0.6s linear infinite;
    animation: spinner-right 0.6s linear infinite;
}

.light_theme .ajax-loading span {
    border-color: transparent #e38443;
}

.dark_theme .ajax-loading span {
    border-color: transparent #e38443;
}

/* 7. Toast Notifications Styles */
/*-------------------------------*/
@-webkit-keyframes timer {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes timer {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.notifications-container {
    position: fixed;
    z-index: 3000;
    bottom: 25px;
}

html[dir="ltr"] .notifications-container {
    right: 80px;
}

html[dir="rtl"] .notifications-container {
    left: 80px;
}

@media (max-width: 576px) {
    .notifications-container {
        width: calc(100% - 30px);
        max-width: 250px;
    }
}

.notifications-container .notification {
    position: relative;
    line-height: 1.5;
    color: #fff;
}

html[dir="ltr"] .notifications-container .notification {
    padding: 10px 28px 10px 14px;
}

html[dir="rtl"] .notifications-container .notification {
    padding: 10px 14px 10px 28px;
}

@media (min-width: 577px) {
    .notifications-container .notification {
        width: 250px;
    }
}

@media (max-width: 767px) {
    .notifications-container .notification {
        width: 100%;
    }
}

.notifications-container .notification.timer .disappearing-time {
    display: block;
    position: absolute;
    bottom: -3px;
    height: 3px;
    background-color: inherit;
    opacity: 0.6;
    -webkit-animation-name: timer;
    animation-name: timer;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

html[dir="ltr"] .notifications-container .notification.timer .disappearing-time {
    left: 0;
}

html[dir="rtl"] .notifications-container .notification.timer .disappearing-time {
    right: 0;
}

.notifications-container .notification.success {
    background-color: #28a745;
}

.notifications-container .notification.danger {
    background-color: #dc3545;
}

.notifications-container .notification.warning {
    background-color: #ffc107;
}

.notifications-container .notification.info {
    background-color: #17a2b8;
}

.notifications-container .notification:not(:last-of-type) {
    margin-bottom: 10px;
}

.notifications-container .notification .fa {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

html[dir="ltr"] .notifications-container .notification .fa {
    right: 12px;
}

html[dir="rtl"] .notifications-container .notification .fa {
    left: 12px;
}

.notifications-container .notification .fa:hover {
    opacity: 1;
}

.notifications-container .notify-enter-active {
    -webkit-animation: 0.3s ease-in-out;
    animation: 0.3s ease-in-out;
}

html[dir="ltr"] .notifications-container .notify-enter-active {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

html[dir="rtl"] .notifications-container .notify-enter-active {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.notifications-container .notify-leave-active {
    animation: 0.3s ease-in-out reverse;
}

html[dir="ltr"] .notifications-container .notify-leave-active {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

html[dir="rtl"] .notifications-container .notify-leave-active {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.notifications-container .notify-move {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

/*------------------------------------------------------------------------------------------*/
/* 5. Pages Styles */
/*------------------------------------------------------------------------------------------*/
/* 1. Homepage Styles */
/*--------------------*/
/* 1. Hero Section Styles */
/*------------------------*/
@media (max-width: 991px) {
    .hero-section .hero-img {
        position: relative;
        height: 80vw;
        max-height: 400px;
        width: 80vw;
        max-width: 400px;
        margin: auto;
    }
}

.hero-section .hero-img .layer {
    position: absolute;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-section .hero-img .layer {
        top: 0;
        left: 0;
        -webkit-transition: -webkit-transform 1s ease;
        transition: -webkit-transform 1s ease;
        transition: transform 1s ease;
        transition: transform 1s ease, -webkit-transform 1s ease;
    }
}

@media (max-width: 991px) {
    html[dir="ltr"] .hero-section .hero-img .layer {
        left: 50%;
    }
    html[dir="rtl"] .hero-section .hero-img .layer {
        right: 50%;
    }
}

.hero-section .hero-img .layer:first-of-type {
    height: 100%;
    /*background-image: url("../assets/images/banner.png");*/
    background-repeat: no-repeat;
    background-position: center;
    -webkit-mask-image: url("../assets/images/splash.png");
    mask-image: url("../assets/images/splash.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.hero-section .hero-img .layer:first-of-type:before {
    content: "";
    position: absolute;
}

@media (min-width: 992px) {
    .hero-section .hero-img .layer:first-of-type:before {
        z-index: 1;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

    .light_theme .hero-section .hero-img .layer:first-of-type:before {
        /*        background: -webkit-gradient(linear, left top, right top, from(#e38443), to(#eb3505));
                background: linear-gradient(to right, #e38443 0%, #eb3505 100%);*/
        background-image: url("../assets/images/banner.png");
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .dark_theme .hero-section .hero-img .layer:first-of-type:before {
        /*        background: -webkit-gradient(linear, left top, right top, from(#e38443), to(#eb3505));
                background: linear-gradient(to right, #e38443 0%, #eb3505 100%);*/
        background-image: url("../assets/images/banner.png");
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 991px) {
    .hero-section .hero-img .layer:first-of-type {
        top: 50%;
    }
    html[dir="ltr"] .hero-section .hero-img .layer:first-of-type {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    html[dir="rtl"] .hero-section .hero-img .layer:first-of-type {
        -webkit-transform: translate(50%, -50%);
        transform: translate(50%, -50%);
    }
    .hero-section .hero-img .layer:first-of-type:before {
        bottom: 0;
        height: 80%;
        width: 80%;
        border-radius: 50%;
    }
    html[dir="ltr"] .hero-section .hero-img .layer:first-of-type:before {
        left: 50%;
    }
    html[dir="rtl"] .hero-section .hero-img .layer:first-of-type:before {
        right: 50%;
    }
    html[dir="ltr"] .hero-section .hero-img .layer:first-of-type:before {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    html[dir="rtl"] .hero-section .hero-img .layer:first-of-type:before {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
    
    .light_theme .hero-section .hero-img .layer:first-of-type:before {
        background-image: url("../assets/images/banner.png");
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .dark_theme .hero-section .hero-img .layer:first-of-type:before {
        background-image: url("../assets/images/banner.png");
        background-position: center;
        background-repeat: no-repeat;
    }
}

.hero-section .hero-img .layer:last-of-type {
    height: 50%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-section .hero-img .layer:last-of-type {
        top: 0;
    }
    html[dir="ltr"] .hero-section .hero-img .layer:last-of-type {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    html[dir="rtl"] .hero-section .hero-img .layer:last-of-type {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
    .hero-section .hero-img .layer:last-of-type img {
        height: 200%;
        width: 200%;
    }
    html[dir="ltr"] .hero-section .hero-img .layer:last-of-type img {
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
    html[dir="rtl"] .hero-section .hero-img .layer:last-of-type img {
        -webkit-transform: translateX(25%);
        transform: translateX(25%);
    }
}

.hero-section .hero-img .layer img {
    display: block;
    -webkit-filter: drop-shadow(2px 4px 6px black);
    filter: drop-shadow(2px 4px 6px black);
}

@media (min-width: 992px) {
    .hero-section .hero-img .layer img {
        position: relative;
        z-index: 2;
        height: calc(100vh - 70px);
        max-width: 100%;
        margin: auto;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

@media (max-width: 991px) {
    .hero-section .hero-img .layer img {
        height: 100%;
        width: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }
}

.hero-section .hero-text {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-section .hero-text {
        position: absolute;
        z-index: 3;
        top: 45%;
        width: 90%;
        text-shadow: 0px 0px 20px #1f1f1f;
    }
    html[dir="ltr"] .hero-section .hero-text {
        left: 50%;
    }
    html[dir="rtl"] .hero-section .hero-text {
        right: 50%;
    }
    html[dir="ltr"] .hero-section .hero-text {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    html[dir="rtl"] .hero-section .hero-text {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}

@media (max-width: 991px) {
    .hero-section .hero-text {
        width: 90vw;
    }
}

.hero-section .hero-text h2 {
    margin-bottom: 30px;
}

html[dir="ltr"] .hero-section .hero-text h2 {
    text-transform: capitalize;
    margin-top: 100px;
}

@media (min-width: 992px) {
    .hero-section .hero-text h2 {
        color: #fff;
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .hero-section .hero-text h2 {
        font-size: 2rem;
    }
    .light_theme .hero-section .hero-text h2 {
        color: #1f1f1f;
    }
    .dark_theme .hero-section .hero-text h2 {
        color: #fff;
    }
}

@media (min-width: 992px) {
    .hero-section .hero-text .btn {
        color: #fff;
        border-color: #fff;
    }
    .hero-section .hero-text .btn:hover {
        background-color: #fff;
        color: #1f1f1f;
        text-shadow: none;
    }
}

@media (max-width: 991px) {
    .light_theme .hero-section .hero-text .btn {
        color: #1f1f1f;
        border-color: #1f1f1f;
    }
    .dark_theme .hero-section .hero-text .btn {
        color: #fff;
        border-color: #fff;
    }
    .light_theme .hero-section .hero-text .btn:hover {
        background-color: #1f1f1f;
        color: #e6e6e6;
    }
    .dark_theme .hero-section .hero-text .btn:hover {
        background-color: #fff;
        color: #1f1f1f;
    }
}

.hero-section .hero-text .btn:focus {
    outline: none;
}

.light_theme.enable-focus-style .hero-section .hero-text .btn:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .hero-section .hero-text .btn:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.hero-section .social,
.hero-section .scroll-down {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .hero-section .social,
    .hero-section .scroll-down {
        display: none;
    }
}

.hero-section .social.social:before, .hero-section .social.scroll-down:after,
.hero-section .scroll-down.social:before,
.hero-section .scroll-down.scroll-down:after {
    content: "";
    display: inline-block;
    height: 2px;
    width: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.light_theme .hero-section .social.social:before, .light_theme .hero-section .social.scroll-down:after, .light_theme
.hero-section .scroll-down.social:before, .light_theme
.hero-section .scroll-down.scroll-down:after {
    background-color: #5f5f5f;
}

.dark_theme .hero-section .social.social:before, .dark_theme .hero-section .social.scroll-down:after, .dark_theme
.hero-section .scroll-down.social:before, .dark_theme
.hero-section .scroll-down.scroll-down:after {
    background-color: #9f9f9f;
}

.light_theme .hero-section .social.social a:hover, .light_theme .hero-section .social.scroll-down:hover, .light_theme
.hero-section .scroll-down.social a:hover, .light_theme
.hero-section .scroll-down.scroll-down:hover {
    color: #1f1f1f;
}

.dark_theme .hero-section .social.social a:hover, .dark_theme .hero-section .social.scroll-down:hover, .dark_theme
.hero-section .scroll-down.social a:hover, .dark_theme
.hero-section .scroll-down.scroll-down:hover {
    color: #fff;
}

.light_theme .hero-section .social.social a:hover:after, .light_theme .hero-section .social.scroll-down:hover:after, .light_theme
.hero-section .scroll-down.social a:hover:after, .light_theme
.hero-section .scroll-down.scroll-down:hover:after {
    background-color: #1f1f1f;
}

.dark_theme .hero-section .social.social a:hover:after, .dark_theme .hero-section .social.scroll-down:hover:after, .dark_theme
.hero-section .scroll-down.social a:hover:after, .dark_theme
.hero-section .scroll-down.scroll-down:hover:after {
    background-color: #fff;
}

html[dir="ltr"] .hero-section .social {
    left: 30px;
}

html[dir="rtl"] .hero-section .social {
    right: 30px;
}

html[dir="ltr"] .hero-section .social {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

html[dir="rtl"] .hero-section .social {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

html[dir="ltr"] .hero-section .social {
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

html[dir="rtl"] .hero-section .social {
    -webkit-transform-origin: right top;
    transform-origin: right top;
}

html[dir="ltr"] .hero-section .social:before {
    margin-right: 20px;
}

html[dir="rtl"] .hero-section .social:before {
    margin-left: 20px;
}

.hero-section .social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

html[dir="ltr"] .hero-section .social ul {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

html[dir="rtl"] .hero-section .social ul {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

html[dir="ltr"] .hero-section .social ul li {
    -webkit-transform: rotateX(0deg) rotateY(180deg) rotateZ(90deg);
    transform: rotateX(0deg) rotateY(180deg) rotateZ(90deg);
}

html[dir="rtl"] .hero-section .social ul li {
    -webkit-transform: rotateX(0deg) rotateY(-180deg) rotateZ(-90deg);
    transform: rotateX(0deg) rotateY(-180deg) rotateZ(-90deg);
}

html[dir="ltr"] .hero-section .social ul li:not(:last-of-type) {
    margin-right: 20px;
}

html[dir="rtl"] .hero-section .social ul li:not(:last-of-type) {
    margin-left: 20px;
}

.hero-section .social ul li a:focus {
    outline: none;
}

.light_theme.enable-focus-style .hero-section .social ul li a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .hero-section .social ul li a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

html[dir="ltr"] .hero-section .scroll-down {
    right: 30px;
}

html[dir="rtl"] .hero-section .scroll-down {
    left: 30px;
}

html[dir="ltr"] .hero-section .scroll-down {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

html[dir="rtl"] .hero-section .scroll-down {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

html[dir="ltr"] .hero-section .scroll-down {
    -webkit-transform-origin: right top;
    transform-origin: right top;
}

html[dir="rtl"] .hero-section .scroll-down {
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

.hero-section .scroll-down a {
    text-transform: inherit;
}

.hero-section .scroll-down a:focus {
    outline: none;
}

.light_theme.enable-focus-style .hero-section .scroll-down a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .hero-section .scroll-down a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

html[dir="ltr"] .hero-section .scroll-down:after {
    margin-left: 20px;
}

html[dir="rtl"] .hero-section .scroll-down:after {
    margin-right: 20px;
}

@media (min-width: 992px) {
    .hero-section {
        position: relative;
        height: calc(100vh - 70px);
    }
    .hero-section.parallax-animation:hover .layer {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: calc(100vh - 70px);
        display: grid;
        place-content: center;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* 2. Statistics Section Styles */
/*------------------------------*/
.statistics-section .section-content .statistics-items {
    margin-bottom: -30px;
}

.statistics-section .section-content .statistics-items li {
    margin-bottom: 30px;
}

.light_theme .statistics-section .section-content .statistics-items li:nth-of-type(1) .icon {
    background-color: #1f1f1f;
    color: #e6e6e6;
}

.dark_theme .statistics-section .section-content .statistics-items li:nth-of-type(1) .icon {
    background-color: #fff;
    color: #1f1f1f;
}

.light_theme .statistics-section .section-content .statistics-items li:nth-of-type(1) .icon img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.dark_theme .statistics-section .section-content .statistics-items li:nth-of-type(1) .icon img {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.statistics-section .section-content .statistics-items li:nth-of-type(2) .icon {
    color: #fff;
}

.light_theme .statistics-section .section-content .statistics-items li:nth-of-type(2) .icon {
    background-color: #e38443;
}

.dark_theme .statistics-section .section-content .statistics-items li:nth-of-type(2) .icon {
    background-color: #e38443;
}

.statistics-section .section-content .statistics-items li:nth-of-type(2) .icon img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.light_theme .statistics-section .section-content .statistics-items li:nth-of-type(3) .icon {
    background-color: #e6e6e6;
    color: #1f1f1f;
}

.dark_theme .statistics-section .section-content .statistics-items li:nth-of-type(3) .icon {
    background-color: #1f1f1f;
    color: #fff;
}

.light_theme .statistics-section .section-content .statistics-items li:nth-of-type(3) .icon img {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.dark_theme .statistics-section .section-content .statistics-items li:nth-of-type(3) .icon img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.statistics-section .section-content .statistics-items li:hover a {
    margin-top: -15px;
}

.light_theme .statistics-section .section-content .statistics-items li:hover a > .fa {
    color: #1f1f1f;
}

.dark_theme .statistics-section .section-content .statistics-items li:hover a > .fa {
    color: #fff;
}

.statistics-section .section-content .statistics-items a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 30px;
    border-radius: 0.63rem;
}

.light_theme .statistics-section .section-content .statistics-items a {
    background-color: #fff;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
}

.dark_theme .statistics-section .section-content .statistics-items a {
    background-color: #313131;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
}

.statistics-section .section-content .statistics-items a .icon {
    height: 64px;
    width: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

.statistics-section .section-content .statistics-items a .icon img {
    width: 40px;
}

.statistics-section .section-content .statistics-items a .text {
    width: calc(100% - 64px - 60px);
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
}

.statistics-section .section-content .statistics-items a .text h3 {
    font-size: 2rem;
}

.light_theme .statistics-section .section-content .statistics-items a .text h3 {
    color: #e38443;
}

.dark_theme .statistics-section .section-content .statistics-items a .text h3 {
    color: #e38443;
}

.statistics-section .section-content .statistics-items a > .fa {
    font-size: 1.2rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

html[dir="rtl"] .statistics-section .section-content .statistics-items a > .fa {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.statistics-section .section-content .statistics-items a:focus {
    outline: none;
}

.light_theme.enable-focus-style .statistics-section .section-content .statistics-items a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .statistics-section .section-content .statistics-items a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

/* 3. About Section Styles */
/*-------------------------*/
.about-section .section-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: -50px;
}

.about-section .section-content > * {
    margin-bottom: 50px;
}

.about-section .section-content .about-img {
    position: relative;
}

@media (min-width: 992px) {
    .about-section .section-content .about-img {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .about-section .section-content .about-img {
        height: 400px;
    }
}

.about-section .section-content .about-img .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.about-section .section-content .about-img .layer:first-of-type {
    height: 100%;
    -webkit-mask-image: url("../assets/images/blob-shape.png");
    mask-image: url("../assets/images/blob-shape.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.about-section .section-content .about-img .layer:first-of-type:before {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    height: 80%;
    width: 80%;
    -webkit-mask-image: url("../assets/images/blob-shape.png");
    mask-image: url("../assets/images/blob-shape.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

html[dir="ltr"] .about-section .section-content .about-img .layer:first-of-type:before {
    left: 50%;
}

html[dir="rtl"] .about-section .section-content .about-img .layer:first-of-type:before {
    right: 50%;
}

html[dir="ltr"] .about-section .section-content .about-img .layer:first-of-type:before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

html[dir="rtl"] .about-section .section-content .about-img .layer:first-of-type:before {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.light_theme .about-section .section-content .about-img .layer:first-of-type:before {
    background: linear-gradient(150deg, #e38443 0%, #eb3505 100%);
}

.dark_theme .about-section .section-content .about-img .layer:first-of-type:before {
    background: linear-gradient(150deg, #e38443 0%, #eb3505 100%);
}

.about-section .section-content .about-img .layer:first-of-type img {
    height: 100%;
    -webkit-filter: drop-shadow(2px 4px 6px black);
    filter: drop-shadow(2px 4px 6px black);
}

.about-section .section-content .about-img .layer:last-of-type {
    height: 50%;
    overflow: hidden;
}

.about-section .section-content .about-img .layer:last-of-type img {
    height: 200%;
}

.about-section .section-content .about-img .layer img {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
    margin: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.about-section .section-content .about-text p {
    margin: 0;
}

/* 4. Skills Section Styles */
/*--------------------------*/
.skills-section .section-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: -50px;
}

.skills-section .section-content > * {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .skills-section .section-content .skills-text .toggle-switch-btn {
        margin: auto;
    }
}

.skills-section .section-content .skills-items ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px -16px;
}

.skills-section .section-content .skills-items li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    margin: 0 8px 16px;
    border-radius: 0.63rem;
    -webkit-animation: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
    animation: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
    cursor: help;
}

html[dir="ltr"] .skills-section .section-content .skills-items li {
    -webkit-animation-name: fadeInUpLeftTranslate;
    animation-name: fadeInUpLeftTranslate;
}

html[dir="rtl"] .skills-section .section-content .skills-items li {
    -webkit-animation-name: fadeInUpRightTranslate;
    animation-name: fadeInUpRightTranslate;
}

.light_theme .skills-section .section-content .skills-items li {
    background-color: #fff;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
}

.dark_theme .skills-section .section-content .skills-items li {
    background-color: #313131;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
}

.skills-section .section-content .skills-items li .skill-icon img {
    display: block;
    width: 48px;
    margin: auto;
}

.skills-section .section-content .skills-items li:focus {
    outline: none;
}

.light_theme.enable-focus-style .skills-section .section-content .skills-items li:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .skills-section .section-content .skills-items li:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

/* 5. Experience Section Styles */
/*------------------------------*/
.experience-section .section-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: -50px;
}

@media (max-width: 991px) {
    .experience-section .section-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.experience-section .section-content > * {
    margin-bottom: 50px;
}

.experience-section .section-content .experience-timeline .outer-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    counter-reset: items-count;
}

@media (min-width: 992px) {
    html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul {
        padding-left: 30px;
    }
    html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul {
        padding-right: 30px;
    }
    html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul {
        padding-right: calc(30px + 10px);
    }
    html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul {
        padding-left: calc(30px + 10px);
    }
}

@media (max-width: 991px) {
    .experience-section .section-content .experience-timeline .outer-ul {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.experience-section .section-content .experience-timeline .outer-ul .inner-ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-height: 80px;
}

.experience-section .section-content .experience-timeline .outer-ul .inner-ul:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media (min-width: 992px) {
    html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul {
        padding-left: 30px;
    }
    html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul {
        padding-right: 30px;
    }
}

.experience-section .section-content .experience-timeline .outer-ul .inner-ul:before {
    content: "";
    position: absolute;
    top: 50%;
    height: calc(100% + 7px);
    width: 100%;
    border-top: 7px solid;
}

html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:before {
    left: 50%;
}

html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:before {
    right: 50%;
}

html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:before {
    -webkit-transform: translate(-50%, -3.5px);
    transform: translate(-50%, -3.5px);
}

html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:before {
    -webkit-transform: translate(50%, -3.5px);
    transform: translate(50%, -3.5px);
}

.light_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul:before {
    border-color: #ffffff;
}

.dark_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul:before {
    border-color: #292929;
}

.experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-3.5px);
    transform: translateY(-3.5px);
    height: calc(100% + 7px);
    width: 30px;
    border: 7px solid;
}

.light_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):after {
    border-color: #ffffff;
}

.dark_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):after {
    border-color: #292929;
}

html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(odd):after {
    right: -30px;
}

html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(odd):after {
    left: -30px;
}

html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(odd):after {
    border-left: none;
}

html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(odd):after {
    border-right: none;
}

html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(odd):after {
    border-radius: 0 5em 5em 0;
}

html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(odd):after {
    border-radius: 5em 0 0 5em;
}

html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(even):after {
    left: -30px;
}

html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(even):after {
    right: -30px;
}

html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(even):after {
    border-right: none;
}

html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(even):after {
    border-left: none;
}

html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(even):after {
    border-radius: 5em 0 0 5em;
}

html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul:not(:last-of-type):nth-of-type(even):after {
    border-radius: 0 5em 5em 0;
}

.experience-section .section-content .experience-timeline .outer-ul .inner-ul:hover, .experience-section .section-content .experience-timeline .outer-ul .inner-ul:focus-within {
    z-index: 2;
}

.experience-section .section-content .experience-timeline .outer-ul .inner-ul li {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 30px;
    cursor: help;
}

@media (min-width: 992px) {
    .experience-section .section-content .experience-timeline .outer-ul .inner-ul li {
        width: 70px;
        counter-increment: items-count;
    }
    html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul li {
        border-radius: 0 0.63rem 0.63rem 0;
    }
    html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul li {
        border-radius: 0.63rem 0 0 0.63rem;
    }
    .light_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul li {
        background-color: #fff;
        color: #1f1f1f;
        -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    }
    .dark_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul li {
        background-color: #313131;
        color: #fff;
        -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    }
    .experience-section .section-content .experience-timeline .outer-ul .inner-ul li:before {
        content: counter(items-count);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        top: -5px;
        height: calc(30px + 10px);
        width: calc(30px + 10px);
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        border-radius: 50%;
    }
    html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul li:before {
        left: -30px;
    }
    html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul li:before {
        right: -30px;
    }
    .light_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul li:before {
        background-color: #e38443;
        -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    }
    .dark_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul li:before {
        background-color: #e38443;
        -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    }
}

@media (max-width: 991px) {
    .experience-section .section-content .experience-timeline .outer-ul .inner-ul li {
        color: #fff;
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 0.63rem;
    }
    .light_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul li {
        background-color: #e38443;
        -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
        box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    }
    .dark_theme .experience-section .section-content .experience-timeline .outer-ul .inner-ul li {
        background-color: #e38443;
        -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
        box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    }
}

.experience-section .section-content .experience-timeline .outer-ul .inner-ul li h3 {
    color: inherit;
    font-size: 1rem;
    margin: 0;
}

html[dir="ltr"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul li:empty:after {
    content: "?";
}

html[dir="rtl"] .experience-section .section-content .experience-timeline .outer-ul .inner-ul li:empty:after {
    content: "؟";
}

.experience-section .section-content .experience-timeline .outer-ul .inner-ul li:focus {
    outline: none;
}

.light_theme.enable-focus-style .experience-section .section-content .experience-timeline .outer-ul .inner-ul li:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .experience-section .section-content .experience-timeline .outer-ul .inner-ul li:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

/* 6. Portfolio Section Styles */
/*-----------------------------*/
.portfolio-section .section-content .portfolio-items {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    margin-bottom: -25px;
}

@media (min-width: 992px) {
    .portfolio-section .section-content .portfolio-items {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 991px) {
    .portfolio-section .section-content .portfolio-items {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .portfolio-section .section-content .portfolio-items {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

.portfolio-section .section-content .portfolio-items .works-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .portfolio-section .section-content .portfolio-items .works-filter {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

html[dir="ltr"] .portfolio-section .section-content .portfolio-items .works-filter li:not(:last-of-type) {
    margin-right: 8px;
}

html[dir="rtl"] .portfolio-section .section-content .portfolio-items .works-filter li:not(:last-of-type) {
    margin-left: 8px;
}

html[dir="ltr"] .portfolio-section .section-content .portfolio-items .works-filter li:not(:last-of-type):after {
    content: "/";
}

html[dir="rtl"] .portfolio-section .section-content .portfolio-items .works-filter li:not(:last-of-type):after {
    content: "\\";
}

html[dir="ltr"] .portfolio-section .section-content .portfolio-items .works-filter li:not(:last-of-type):after {
    margin-left: 8px;
}

html[dir="rtl"] .portfolio-section .section-content .portfolio-items .works-filter li:not(:last-of-type):after {
    margin-right: 8px;
}

.light_theme .portfolio-section .section-content .portfolio-items .works-filter li button.active, .light_theme .portfolio-section .section-content .portfolio-items .works-filter li button:hover {
    color: #e38443;
}

.dark_theme .portfolio-section .section-content .portfolio-items .works-filter li button.active, .dark_theme .portfolio-section .section-content .portfolio-items .works-filter li button:hover {
    color: #e38443;
}

.portfolio-section .section-content .portfolio-items .works-filter li button:focus {
    outline: none;
}

.light_theme.enable-focus-style .portfolio-section .section-content .portfolio-items .works-filter li button:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .portfolio-section .section-content .portfolio-items .works-filter li button:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.portfolio-section .section-content .portfolio-items > li {
    margin-bottom: 25px;
}

@media (min-width: 992px) {
    .portfolio-section .section-content .portfolio-items > li:first-of-type {
        -webkit-column-break-inside: avoid;
        -moz-column-break-inside: avoid;
        break-inside: avoid;
        overflow: hidden;
    }
}

@media (max-width: 991px) {
    .portfolio-section .section-content .portfolio-items > li:first-of-type {
        margin-bottom: 0;
    }
}

.portfolio-section .section-content .portfolio-items > li.portfolio-item {
    border-radius: 0.63rem;
    overflow: hidden;
    -webkit-animation: zoomIn 0.2s ease-in-out;
    animation: zoomIn 0.2s ease-in-out;
    will-change: transform;
}

.light_theme .portfolio-section .section-content .portfolio-items > li.portfolio-item {
    -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.dark_theme .portfolio-section .section-content .portfolio-items > li.portfolio-item {
    -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.portfolio-section .section-content .portfolio-items > li.portfolio-item a {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

.portfolio-section .section-content .portfolio-items > li.portfolio-item a:hover .item-details {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: visible;
    opacity: 1;
}

.portfolio-section .section-content .portfolio-items > li.portfolio-item a:hover .item-details .title,
.portfolio-section .section-content .portfolio-items > li.portfolio-item a:hover .item-details .desc {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.portfolio-section .section-content .portfolio-items > li.portfolio-item a:hover .item-details .title {
    -webkit-transition: 0.2s linear 0.1s;
    transition: 0.2s linear 0.1s;
}

.portfolio-section .section-content .portfolio-items > li.portfolio-item a:hover .item-details .desc {
    -webkit-transition: 0.2s linear 0.2s;
    transition: 0.2s linear 0.2s;
}

.portfolio-section .section-content .portfolio-items > li.portfolio-item:focus-within {
    outline: none;
}

.light_theme.enable-focus-style .portfolio-section .section-content .portfolio-items > li.portfolio-item:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .portfolio-section .section-content .portfolio-items > li.portfolio-item:focus-within {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

@media (min-width: 992px) {
    .portfolio-section .section-content .portfolio-items > li .text-box {
        margin-top: 37.5px;
        padding-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .portfolio-section .section-content .portfolio-items > li .text-box {
        -webkit-column-span: all;
        -moz-column-span: all;
        column-span: all;
        padding-bottom: 37.5px;
    }
}

.portfolio-section .section-content .portfolio-items > li .more {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    text-decoration: underline;
    border-radius: 0.63rem;
}

.light_theme .portfolio-section .section-content .portfolio-items > li .more {
    color: #e38443;
}

.dark_theme .portfolio-section .section-content .portfolio-items > li .more {
    color: #e38443;
}

.portfolio-section .section-content .portfolio-items > li .more:focus {
    outline: none;
}

.light_theme.enable-focus-style .portfolio-section .section-content .portfolio-items > li .more:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .portfolio-section .section-content .portfolio-items > li .more:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.portfolio-section .section-content .portfolio-items > li .item-img img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio-section .section-content .portfolio-items > li .item-details {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s 0.2s;
    transition: 0.3s 0.2s;
}

.portfolio-section .section-content .portfolio-items > li .item-details .title,
.portfolio-section .section-content .portfolio-items > li .item-details .desc {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 6px 12px;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
}

.light_theme .portfolio-section .section-content .portfolio-items > li .item-details .title, .light_theme
.portfolio-section .section-content .portfolio-items > li .item-details .desc {
    background-color: #e6e6e6;
    color: #1f1f1f;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
}

.dark_theme .portfolio-section .section-content .portfolio-items > li .item-details .title, .dark_theme
.portfolio-section .section-content .portfolio-items > li .item-details .desc {
    background-color: #1f1f1f;
    color: #fff;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
}

.portfolio-section .section-content .portfolio-items > li .item-details .title {
    max-width: 100%;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: 0.2s linear 0.1s;
    transition: 0.2s linear 0.1s;
}

.portfolio-section .section-content .portfolio-items > li .item-details .desc {
    font-size: 0.8rem;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

/* 7. Testimonials Section Styles */
/*--------------------------------*/
.testimonials-section .section-content .testimonials-items {
    display: grid;
    grid-auto-rows: 220px;
}

@media (min-width: 992px) {
    .testimonials-section .section-content .testimonials-items {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 991px) {
    .testimonials-section .section-content .testimonials-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonials-section .section-content .testimonials-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-section .section-content .testimonials-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonials-section .section-content .testimonials-items li {
    position: relative;
    border-radius: 50%;
    animation: floating 20s linear infinite alternate-reverse both;
}

.testimonials-section .section-content .testimonials-items li .testimonials-item {
    cursor: help;
}

.testimonials-section .section-content .testimonials-items li .testimonials-item img {
    display: block;
    width: 130px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.light_theme .testimonials-section .section-content .testimonials-items li .testimonials-item img {
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.dark_theme .testimonials-section .section-content .testimonials-items li .testimonials-item img {
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

@media (max-width: 767px) {
    .testimonials-section .section-content .testimonials-items li:nth-of-type(1n + 7) {
        display: none;
    }
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(odd) {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(even) {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 2) {
    justify-self: flex-end;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 2) img {
    width: 200px;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 1) {
    justify-self: center;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 1) img {
    width: 90px;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 3) {
    justify-self: flex-end;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 3) img {
    width: 70px;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 4) {
    justify-self: flex-start;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 4) img {
    width: 120px;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 5) {
    justify-self: center;
}

.testimonials-section .section-content .testimonials-items li:nth-of-type(5n + 5) img {
    width: 150px;
}

.testimonials-section .section-content .testimonials-items li:focus {
    outline: none;
}

.light_theme.enable-focus-style .testimonials-section .section-content .testimonials-items li:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .testimonials-section .section-content .testimonials-items li:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

/* 8. Contact Section Styles */
/*---------------------------*/
.contact-section .section-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: -50px;
}

.contact-section .section-content > * {
    margin-bottom: 50px;
}

.contact-section .section-content .contact-text .contact-info {
    margin-top: 50px;
}

.contact-section .section-content .contact-text .contact-info > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.contact-section .section-content .contact-text .contact-info > li:not(:last-of-type) {
    margin-bottom: 20px;
}

.contact-section .section-content .contact-text .contact-info > li img {
    width: 24px;
}

html[dir="ltr"] .contact-section .section-content .contact-text .contact-info > li img {
    margin-right: 18px;
}

html[dir="rtl"] .contact-section .section-content .contact-text .contact-info > li img {
    margin-left: 18px;
}

.light_theme .contact-section .section-content .contact-text .contact-info > li img {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.dark_theme .contact-section .section-content .contact-text .contact-info > li img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.contact-section .section-content .contact-text .contact-info > li div strong {
    display: block;
    margin-bottom: 5px;
}

.contact-section .section-content .contact-text .contact-info > li div a:hover {
    text-decoration: underline;
}

.contact-section .section-content .contact-text .contact-info > li div a:focus {
    outline: none;
}

.light_theme.enable-focus-style .contact-section .section-content .contact-text .contact-info > li div a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .contact-section .section-content .contact-text .contact-info > li div a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.contact-section .section-content .contact-text .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px -5px -10px;
}

html[dir="ltr"] .contact-section .section-content .contact-text .social {
    padding-left: 42px;
}

html[dir="rtl"] .contact-section .section-content .contact-text .social {
    padding-right: 42px;
}

.contact-section .section-content .contact-text .social li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    margin: 0 5px 10px;
    border-radius: 50%;
}

.light_theme .contact-section .section-content .contact-text .social li a {
    background-color: #1f1f1f;
    color: #e6e6e6;
}

.dark_theme .contact-section .section-content .contact-text .social li a {
    background-color: #fff;
    color: #1f1f1f;
}

.contact-section .section-content .contact-text .social li a:hover {
    color: #fff;
}

.light_theme .contact-section .section-content .contact-text .social li a:hover {
    background-color: #e38443;
}

.dark_theme .contact-section .section-content .contact-text .social li a:hover {
    background-color: #e38443;
}

.contact-section .section-content .contact-text .social li a:focus {
    outline: none;
}

.light_theme.enable-focus-style .contact-section .section-content .contact-text .social li a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.dark_theme.enable-focus-style .contact-section .section-content .contact-text .social li a:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
    box-shadow: 0 0 0 3px rgba(235, 53, 5, 0.7);
}

.contact-section .section-content .contact-form {
    padding: 25px;
    margin: auto;
    border-radius: 0.63rem;
}

.light_theme .contact-section .section-content .contact-form {
    background-color: #fff;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.12);
}

.dark_theme .contact-section .section-content .contact-form {
    background-color: #313131;
    -webkit-box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
    box-shadow: 11px 10px 38px rgba(0, 0, 0, 0.38);
}

@media (min-width: 768px) {
    .contact-section .section-content .contact-form {
        max-width: 450px;
    }
}

html[dir="rtl"] .contact-section .section-content .contact-form .phone-number .fa {
    -webkit-transform: rotateY(180deg) translateY(-50%);
    transform: rotateY(180deg) translateY(-50%);
}

.contact-section .section-content .contact-form .submit-btn {
    width: 100%;
}
