/*
----------------------------------------------------------------------------------------
00. Fonts
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Our Potential Css
08. Our Pricing Css
09. Our Expertise Css
10. Intro Video Css
11. How We Work Css
12. Company Growth Css
13. Our FAQs Css
14. Our Testimonial css
15. Our Blog Css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Team Page css
23. Team Single css
24. Pricing Page css
25. Testimonial Page css
26. Image Gallery css
27. Video Gallery css
28. FAQs Page css
29. Contact Us Page css
30. Book Appointment Page css
31. 404 Page css

-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 0. Fonts	  ***/
/************************************/
/*@font-face {*/
/*    font-family: 'Vazir';*/
/*    src: url('../webfonts/Vazir-Medium-FD-WOL.eot');*/
/*    src: url('../webfonts/Vazir-Medium-FD-WOL.eot?#iefix') format('embedded-opentype'),*/
/*    url('../webfonts/Vazir-Medium-FD-WOL.woff2') format('woff2'),*/
/*    url('../webfonts/Vazir-Medium-FD-WOL.woff') format('woff'),*/
/*    url('../webfonts/Vazir-Medium-FD-WOL.ttf') format('truetype');*/
/*    font-weight: 600;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Vazir';*/
/*    src: url('../webfonts/Vazir-Regular-FD-WOL.eot');*/
/*    src: url('../webfonts/Vazir-Regular-FD-WOL.eot?#iefix') format('embedded-opentype'),*/
/*    url('../webfonts/Vazir-Regular-FD-WOL.woff2') format('woff2'),*/
/*    url('../webfonts/Vazir-Regular-FD-WOL.woff') format('woff'),*/
/*    url('../webfonts/Vazir-Regular-FD-WOL.ttf') format('truetype');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/


@font-face {
    font-family: 'Vazir';
    font-style: normal;
    font-weight: normal;
    src: url('../webfonts/iransans/woff2/IRANSansX-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../webfonts/Estedad-ExtraBold.woff2') format('woff2'),
    url('../webfonts/Estedad-ExtraBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    --primary-color: #080e51;
    --secondary-color: #F2F1ED;
    --text-color: #8F8F8F;
    --accent-color: #73dfed;
    --dark-color: #019297;
    --white-color: #FFFFFF;
    --divider-color: #DFE1DE;
    --dark-divider-color: #FFFFFF33;
    --error-color: rgb(230, 87, 87);
    --default-font: "Vazir", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6em;
    background: var(--secondary-color);
    color: var(--text-color);
    direction: rtl;
}

p {
    line-height: 1.7em;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}



@media (min-width: 1536px) {
    .container {
        max-width: 1280px !important;
    }
}

.btn-default {
    position: relative;
    display: inline-block;
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 100px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 20px 17px 54px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;
    background-position: right center;
}

.btn-default:hover {
    background-position: left center;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(20px, 50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translate(20px, 50%) rotate(-45deg)
}

.btn-default.btn-highlighted {
    background: var(--white-color);
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
}

.btn-default.btn-highlighted:hover {
    background: transparent;
    color: var(--white-color);
}

.btn-default.btn-highlighted::before {
    background: url('../images/dark-arrow.svg');
}

.btn-default.btn-highlighted::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    bottom: 0;
    width: 0;
    height: 106%;
    background: linear-gradient(-263deg, var(--dark-color) 0.16%, var(--accent-color) 99.84%);
    border-radius: 100px;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.btn-default.btn-highlighted:hover:after {
    width: 100%;
    right: 0;
    left: auto;
}

.cb-cursor:before {
    background: linear-gradient(263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: linear-gradient(-263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-btn {
    text-align: end;
}

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

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-title h1 {
    font-size: 60px;
    font-weight: normal;
    line-height: 1.3em;
    color: var(--primary-color);
    margin-bottom: 0;
    font-family: "estedad";
}

.section-title h2 {
    font-size: 37px;
    font-weight: normal;
    line-height: 1.4em;
    color: var(--primary-color);
    margin-bottom: 0;
    font-family: "estedad";
}

.section-title h1 span,
.section-title h2 span {
    font-weight: normal;
    background-image: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    margin-top: 30px;
    margin-bottom: 0;
}

#footer-section-title p {
    color: white;
}

.help-block.with-errors ul {
    margin: 0;
    text-align: right;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-size: 14px;
    font-weight: 500;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: relative;
    z-index: 100;
    /* margin-top: 25px; */
    /* padding: 0 30px; */
}

.main-header .container-fluid {
    position: relative;
    padding-bottom: 10px;
    padding-top: 10px;
}

.main-header .container-fluid::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 15px;
    left: 0;
    /* border-bottom: 1px solid var(--dark-divider-color); */
    width: calc(100% - 30px);
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    /* background: var(--primary-color);
    border-bottom: 1px solid var(--dark-divider-color); */
}

header.main-header .header-sticky.active .container-fluid {
    padding-bottom: 0;
}

header.main-header .header-sticky.active .container-fluid::before {
    display: none;
}

.nav-link:hover,
.nav-link:focus {
    color: #019297 !important;
}

.navbar {
    width: 100%;
    max-width: 1560px;
    /* margin: 0 auto; */
    /* padding: 20px 0; */
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: right;
    margin-right: 40px;
}

.main-menu .nav-menu-wrapper > ul {
    align-items: center;
    display: inline-flex;
    padding: 0;
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    /* font-weight: 700; */
    /* padding: 15px !important; */
    /* color: var(--white-color); */
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-right: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    /* color: var(--accent-color); */
    color: white;
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    text-align: right;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    right: 100%;
    top: 0;
    text-align: right;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    /* color: var(--white-color); */
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: green;
    background-color: transparent;
    padding: 8px 23px 8px 20px !important;
}

.header-btn {
    align-items: center;
}

.btn-phone {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    /* color: var(--white-color); */
    color: black;
    margin-left: 25px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.btn-phone:hover {
    color: var(--accent-color);
}

.btn-phone i {
    /* color: var(--white-color); */
    color: black;
    font-size: 20px;
    margin-left: 15px;
    transition: all 0.4s ease-in-out;
}

.btn-phone:hover i {
    color: var(--accent-color);
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: linear-gradient(-263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: linear-gradient(-263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 10px 30px 10px 20px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-right: 8px;
    color: var(--white-color);
    position: absolute;
    left: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
    transform: rotate(-180deg);
    color: var(--primary-color);
}

/* Header Styles */
.header {
    margin-top: 10px;
    margin-left: 15px;
    margin-right: 15px;
    /* background: linear-gradient(90deg, #007ca2 0%, #4dc3c7 100%); */
    /* background: linear-gradient(to bottom, #007ca2, #4dc3c7); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 10px;
    border-radius: 20px;
    background-color: white;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
}

/* Logo */
.logo {
    padding: 10px;
    /* background: linear-gradient(90deg, #007ca2 0%, #4dc3c7 100%); */
    border-radius: 10px;
    flex: 0 0 auto;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Main Navigation */
.header-right {
    flex: 1;
    margin: 0 30px;
}

.main-nav {
    display: flex;
    justify-content: flex-start;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-item {
    position: relative;
    margin-left: 20px;
}

.nav-link {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-link i {
    margin-right: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    /* background: linear-gradient(90deg, #007ca2 0%, #4dc3c7 100%); */
    border-radius: 5px;
    color: #007ca2;
}

.nav-link.active {
    color: black;
}

/* Dropdown specific styles */
.has-dropdown {
    position: relative;
}

.has-dropdown > .nav-link {
    padding-left: 25px;
}

.has-dropdown > .nav-link i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.has-dropdown:hover > .nav-link i {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    min-width: 200px;
    margin-top: 5px;
    padding: 8px 0;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
    z-index: 9999;
    display: block;
}

.has-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    line-height: 1rem;
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, #007ca2 0%, #4dc3c7 100%);
    /* background-color: #f8f9fa;
    color: #007ca2; */
    color: white;
    padding-right: 25px;
}

/* Header Left - Search and Language */
.header-left {
    display: flex;
    align-items: center;
}

.search-icon {
    margin-left: 20px;
    cursor: pointer;
}

.search-icon i {
    font-size: 18px;
    color: rgba( 0, 0, 0, 0.6 );
    transition: color 0.3s;
}

.search-icon i:hover {
    color: #007ca2;
}

.language-selector {
    margin-left: 15px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 4px;
    position: absolute;
    right: 24px;
}

.mobile-menu-toggle.ltr-position {
    right: inherit;
    left: 24px;
}

.mobile-menu-toggle i {
    color: #087fa4;
    font-size: 28px;
}


/* Search Overlay Styles */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow: hidden;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.search-overlay-content {
    position: relative;
    top: 15%;
    width: 60%;
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 30px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.search-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.search-close {
    font-size: 32px;
    cursor: pointer;
    color: #777;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-close:hover {
    color: #e74c3c;
}

.search-input-group {
    display: flex;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.2);
    border: 1px solid #0d6efd;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    background-color: #fff;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: #aaa;
    transition: all 0.2s ease;
}

.search-input:focus::placeholder {
    opacity: 0.5;
}

.search-button {
    padding: 0 25px;
    background: linear-gradient(135deg, #0d6efd, #0956cc);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
    min-width: 100px;
}

.search-button:hover {
    background: linear-gradient(135deg, #0956cc, #064bb1);
}

.search-button i {
    margin-right: 8px;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/
#heroSwiper {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.hero {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 350px 30px 100px;
    margin-top: -120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(180deg, rgba(4, 42, 45, 0) 65.37%, var(--primary-color) 100.18%), linear-gradient(-270deg, rgba(4, 42, 45, 0) 59.75%, var(--primary-color) 100%); */
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin-top: 115px;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 320px 30px 200px;
}

.hero.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(4, 42, 45, 0) 65.37%, var(--primary-color) 100.18%), linear-gradient(180deg, rgba(4, 42, 45, 0) 59.75%, var(--primary-color) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: right;
    padding-right: calc(((100vw - 1560px) / 2) - 45px);
    z-index: 2;
    right: 0;
    left: unset;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero-slide .hero-section {
    text-align: left;
}

.hero-section {
    position: relative;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    z-index: 2;
}

.hero-slide .hero-section .hero-content {
    width: 100%;
    max-width: 750px;
    text-align: right;
}

.hero-slide .hero-section .hero-content .section-title p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
    color: var(--white-color);
}

.hero-btn .btn-default.btn-highlighted {
    margin-right: 40px;
}

.export-coaching-box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.export-coaching-step {
    position: relative;
    width: 20%;
    border-top: 2px solid var(--dark-divider-color);
    padding-top: 30px;
    padding-left: 100px;
    transition: all 0.5s ease-in-out;
}

.export-coaching-step::before {
    content: '';
    display: block;
    position: absolute;
    top: -2px;
    left: auto;
    right: 0;
    background: linear-gradient(to left, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
    width: 0;
    height: 2px;
    transition: all 0.4s ease-in-out;
}

.export-coaching-step:hover:before {
    width: 100%;
    left: auto;
    right: 0;
}

.export-coaching-step .icon-box {
    margin-bottom: 20px;
}

.export-coaching-step .icon-box img {
    max-width: 30px;
}

.export-coaching-step-content p {
    color: var(--white-color);
    margin: 0;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
    padding: 100px 0;
}

.about-us-images {
    position: relative;
    /* padding: 0 80px 70px 70px; */
}

.about-us-img-1 figure {
    display: block;
    mask-image: url(../images/about-image-bg-shape.svg);
    background-image: url(../images/about-image-bg-shape.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    border-radius: 30px;
    width: 100%;
    height: 100%;
}

.about-us-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
}

.about-us-img-2 {
    position: absolute;
    bottom: 0;
    left: 35px;
    border-radius: 14px;
    overflow: hidden;
}

.about-us-img-2 figure {
    display: block;
}

.about-us-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
}

.about-experience-box {
    position: relative;
    top: 0;
    right: 0;
    /* transform: translateY(70%); */
    background: linear-gradient(-263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
    border-radius: 10px;
    padding: 20px;
    max-width: 178px;
    animation: experiencemoveobject 2s infinite linear alternate;
}

@keyframes experiencemoveobject {
    50% {
        right: 30px;
    }
}

.about-experience-box .icon-box {
    margin-bottom: 10px;
}

.about-experience-box .icon-box img {
    max-width: 45px;
}

.about-experience-box .about-experience-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
}

.company-review {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(-180deg) translate(100%, 50%);
    writing-mode: vertical-rl;
}

.company-review h3 {
    font-size: 16px;
    color: var(--primary-color);
}

.about-us-list {
    margin-bottom: 40px;
}

.about-us-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-us-list ul li {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    padding-right: 30px;
    margin-bottom: 20px;
}

.about-us-list ul li:last-child {
    margin-bottom: 0;
}

.about-us-list ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    background-image: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us-body {
    border-bottom: 1px solid var(--divider-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.about-comapny-client {
    width: calc(50% - 15px);
}

.company-client-images {
    margin-bottom: 10px;
}

.company-client-images .client-image {
    display: inline-block;
    margin-right: -18px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    overflow: hidden;
}

.company-client-images .client-image:first-child {
    margin: 0;
}

.company-client-images .client-image figure {
    display: block;
}

.company-client-images .client-image img {
    max-width: 50px;
}

.company-client-counter p {
    font-weight: 500;
    margin: 0;
}

.company-client-counter p span {
    color: var(--primary-color);
}

.about-company-result {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.about-company-result .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.about-company-result .icon-box img {
    max-width: 30px;
}

.company-result-content {
    width: calc(100% - 70px);
}

.company-result-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.company-result-content p {
    text-transform: capitalize;
    margin: 0;
}

.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #007ca2;
    margin-bottom: 30px;
}

[dir="rtl"] .title-line {
    margin-left: auto;
    margin-right: 0;
}

[dir="ltr"] .title-line {
    margin-right: auto;
    margin-left: 0;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.about-description {
    margin-bottom: 30px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.key-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

[dir="rtl"] .feature-item {
    flex-direction: row;
    justify-content: flex-start;
}

.feature-item i {
    color: #007ca2;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.img-border {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    background: #007ca2;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 120px;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Brand Logos Section */
.brand-logos-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: #007ca2;
}

/* Brand Logos Slider */
.brand-logos-slider {
    padding: 20px 0;
}

.brand-logo {
    margin: 50px auto;
    width: 100%;
    max-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%); */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #007ca2;
}


.brand-logos-slider  > .swiper-button-next,
.brand-logos-slider  > .swiper-button-prev {
    color: #007ca2;
    display: none;
}

.swiper-pagination-bullet-active {
    background: #007ca2;
}

/************************************/
/***      06. Our Services Css     ***/
/************************************/

.our-service {
    padding: 100px 0;
    background: var(--primary-color) url(../images/service-bg-circle.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto;
}

.service-content {
    position: sticky;
    top: 100px;
    margin-right: 30px;
}

.service-content .section-title h3,
.service-content .section-title h2,
.service-content .section-title p {
    color: var(--white-color);
}

.service-item-list {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
}

.service-item {
    width: calc(50% - 15px);
}

.service-item .icon-box {
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
    background-position: right center;
}

.service-item:hover .icon-box {
    background-position: left center;
}

.service-item .icon-box img {
    max-width: 35px;
}

.service-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.service-item-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

.service-footer p {
    color: var(--white-color);
    margin-bottom: 0;
}

.service-footer p span {
    font-weight: 700;
    text-transform: capitalize;
    color: var(--white-color);
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    border-radius: 100px;
    background-size: 200% auto;
    margin-left: 20px;
    padding: 2px 15px;
    transition: all 0.4s ease-in-out;
    background-position: right center;
}

.service-footer p:hover span {
    background-position: left center;
}

.service-footer a {
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.service-footer a:hover {
    color: var(--dark-color);
}

/************************************/
/***     07. Our Potential Css    ***/
/************************************/

.our-potential {
    padding: 100px 0;
}

.our-potential-content {
    height: 100%;
}

.our-potential-counter {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.potential-counter-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.potential-counter-item .counter-circle {
    border: 2px solid transparent;
    background: linear-gradient(-263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%) border-box;
    border-radius: 50%;
    margin-left: 30px;
}

.potential-counter-item .counter-circle h2 {
    font-size: 30px;
    background-color: var(--white-color);
    border: 10px solid var(--secondary-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

.potential-counter-content {
    width: calc(100% - 154px);
}

.potential-counter-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.potential-body-content {
    margin-bottom: 20px;
}

.potential-body-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 20px;
}

.potential-body-content p:last-child {
    margin-bottom: 0;
}

.potential-body-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.potential-body-list ul li {
    position: relative;
    text-transform: capitalize;
    padding-right: 30px;
    margin-bottom: 10px;
}

.potential-body-list ul li:last-child {
    margin-bottom: 0;
}

.potential-body-list ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    background-image: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our-potential-img {
    border-radius: 20px;
    margin-right: 30px;
    height: 100%;
}

.our-potential-img figure {
    display: block;
    height: 100%;
}

.our-potential-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.22;
    border-radius: 20px;
}

/************************************/
/***      08. Our Pricing Css     ***/
/************************************/

.our-pricing {
    background: var(--white-color);
    padding: 100px 0;
}

.pricing-content {
    position: sticky;
    top: 100px;
    margin-left: 100px;
}

.pricing-box-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-box {
    width: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px;
}

.pricing-box.highlighted-box {
    background: linear-gradient(-263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
}

.pricing-box-content {
    width: calc(36% - 15px);
    text-align: center;
    border-left: 1px solid var(--divider-color);
    padding-left: 30px;
    margin-left: 30px;
}

.pricing-box.highlighted-box .pricing-box-content {
    border-color: var(--dark-divider-color);
}

.pricing-title p {
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-box.highlighted-box .pricing-title p {
    color: var(--white-color);
}

.pricing-title h2 {
    font-size: 50px;
    /* white-space: nowrap; */
}

.pricing-box.highlighted-box .pricing-title h2 {
    color: var(--white-color);
}

.pricing-title h2 sup {
    font-size: 16px;
    top: 0;
}

.pricing-title h2 sub {
    font-size: 16px;
    font-weight: normal;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlighted-box .pricing-title h2 sub {
    color: var(--white-color);
}

.pricing-btn {
    margin-top: 20px;
}

.pricing-list {
    width: calc(64% - 15px);
}

.pricing-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-list ul li {
    position: relative;
    width: calc(50% - 10px);
    text-transform: capitalize;
    padding-right: 25px;
}

.pricing-box.highlighted-box .pricing-list ul li {
    color: var(--white-color);
}

.pricing-list ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    background: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-box.highlighted-box .pricing-list ul li::before {
    background-image: none;
    background-color: var(--white-color);
}

.pricing-benefit-list {
    margin-top: 30px;
}

.pricing-benefit-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 15px 30px;
}

.pricing-benefit-list ul li {
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

.pricing-benefit-list ul li img {
    max-width: 20px;
    margin-left: 15px;
}

/************************************/
/***     09. Our Expertise Css    ***/
/************************************/

.our-expertise {
    padding: 100px 0;
}

.expertise-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.expertise-item {
    width: auto;
    display: inline-flex;
    align-items: center;
    background: var(--white-color);
    border-radius: 100px;
}

.expertise-item:first-child {
    margin: 0 15px;
}

.expertise-image figure {
    border-radius: 50%;
    overflow: hidden;
}

.expertise-image img {
    max-width: 75px;
    border-radius: 50%;
}

.expertise-content {
    padding: 0 15px 0 30px;
}

.expertise-content p {
    font-weight: 500;
    text-transform: capitalize;
    color: var(--primary-color);
    margin: 0;
}

/************************************/
/***     10. Intro Video Css      ***/
/************************************/

.intro-video {
    position: relative;
    padding: 500px 0 100px;
    background: url('../images/about-video-bg.jpg');
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.intro-video::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(4, 42, 45, 0) 27.11%, var(--primary-color) 100%);
    width: 100%;
    height: 100%;
}

.intro-video .container {
    position: relative;
    z-index: 1;
}

.intro-video .section-title {
    margin-bottom: 0;
}

.intro-video .section-title h2 {
    color: var(--white-color);
}

.video-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-button a {
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    cursor: none;
    transition: all 0.3s ease-in-out;
    background-position: right center;
}

.video-play-button:hover a {
    background-position: left center;
}

.video-play-button a i {
    font-size: 20px;
    color: var(--white-color);
}

.video-play-button p {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    margin: 0;
}

.intro-video-list {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.intro-video-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.intro-video-list ul li {
    position: relative;
    width: calc(25% - 22.5px);
    color: var(--white-color);
    padding-right: 30px;
}

.intro-video-list ul li:after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    display: inline-block;
    position: absolute;
    top: 1px;
    right: 0;
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--white-color);
}

/************************************/
/***     11. How We Work Css      ***/
/************************************/

.how-we-work {
    padding: 100px 0;
}

.how-work-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.how-work-item .icon-box {
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    background-position: right center;
}

.how-work-item:hover .icon-box {
    background-position: left center;
}

.how-work-item .icon-box img {
    max-width: 36px;
}

.how-work-content {
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.how-work-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.how-work-content p {
    margin: 0;
}

.scrolling-ticker.work-ticker {
    margin-top: 70px;
}

.scrolling-ticker .container-fluid {
    padding: 0;
}

.scrolling-ticker-box {
    --gap: 40px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 20s linear infinite;
}

.scrolling-content span {
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    font-size: 90px;
    line-height: 1.3em;
    font-weight: 600;
    background: linear-gradient(to left, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
    /* -webkit-background-clip: text; */
    -webkit-text-stroke: 4px transparent;
    color: var(--secondary-color);
    padding: 20px 10px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(100% - var(--gap)));
    }
}

.scrolling-content span img {
    max-width: 50px;
    margin-left: 40px;
}

/************************************/
/***    12. Company Growth Css    ***/
/************************************/

.company-growth {
    background: var(--white-color);
    padding: 100px 0;
}

.company-growth-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.company-growth-image img {
    width: 100%;
    aspect-ratio: 1 / 0.77;
    object-fit: cover;
    border-radius: 20px;
}

.company-growth-content {
    margin-right: 30px;
}

.company-growth-content .section-title h2 {
    width: 100%;
    max-width: 550px;
}

.company-growth-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 80px;
}

.company-growth-item {
    width: calc(25% - 22.5px);
}

.company-growth-item h2 {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.company-growth-item h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.company-growth-item p {
    margin: 0;
}

/************************************/
/***       13. Our FAQs Css       ***/
/************************************/

.our-faqs {
    padding: 100px 0;
}

.faqs-cta-box {
    display: inline-block;
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 30px;
}

.faqs-cta-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.faqs-cta-content p {
    margin-bottom: 20px;
}

.faqs-cta-box .btn-phone {
    margin: 0;
}

.faqs-cta-box .btn-phone i,
.faqs-cta-box .btn-phone {
    color: var(--accent-color);
}

.faqs-cta-box .btn-phone:hover i,
.faqs-cta-box .btn-phone:hover {
    color: var(--primary-color);
}

.our-faq-section .faq-item.clicked {
    background: linear-gradient(var(--accent-color) 0, var(--dark-color) 100%);
}

.our-faq-section .faq-item {
    padding: 0;
    /*border: 1px solid var(--divider-color);*/
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    border: 3px solid #039398;
}

.our-faq-section .faq-item:last-child {
    margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2em;
    background-color: transparent;
    color: var(--white-color);
    padding: 20px 20px 20px 50px;
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(-263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
    color: var(--white-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

/*.our-faq-section .faq-item .accordion-button {*/
/*    background: linear-gradient(-263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%) !important;*/
/*    color: var(--white-color) !important;*/
/*    border-bottom: 1px solid var(--dark-divider-color) !important;*/
/*}*/

.our-faq-section .accordion-header .accordion-button.collapsed {
    background-color: #fff;
    color: var(--primary-color);
}

.our-faq-section .faq-item .faq-question::after,
.our-faq-section .faq-item .faq-question.collapsed::after {
    content: '';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 20px;
    top: 50%;
    bottom: auto;
    transform: translate(0px, -50%) rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/icon-plus.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.our-faq-section .faq-item .faq-question.collapsed::after {
    transform: translate(0px, -50%);
}

.our-faq-section .faq-item .faq-answer {
    padding: 20px 20px 20px 50px;
}

.our-faq-section .faq-item .faq-answer p {
    color: var(--white-color);
    margin: 0;
}

/************************************/
/***    14. Our Testimonial Css   ***/
/************************************/

.our-testimonial {
    background: rgb(4, 70, 96);
    background: linear-gradient(90deg, rgba(4, 70, 96, 1) 0%, rgba(4, 70, 96, 1) 50%, rgba(77, 195, 199, 1) 100%);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
    /* padding: 100px 0; */
}

.our-testimonial-content {
    position: sticky;
    top: 100px;
}

.our-testimonial-content .section-title {
    margin-bottom: 0;
}

.our-testimonial-content .section-title h2,
.our-testimonial-content .section-title h3 {
    color: var(--white-color);
}

.testimonial-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

/* .testimonial-slider-content,
.testimonial-slider-image {
	width: calc(50% - 15px);
} */

.testimonial-slider-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-slider-image img {
    /* width: 100%; */
    border-radius: 20px;
    /* aspect-ratio: 1 / 1.19; */
    object-fit: cover;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 40px; */
}

/*
.testimonial-rating-company {
	margin-left: 20px;
}

.testimonial-rating-company img {
	max-width: 150px;
	max-height: 60px;
}

.testimonial-quote img {
	max-width: 58px;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 16px;
	color: var(--accent-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	font-size: 18px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 0;
} */

.author-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 5px;
}

.author-content p {
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
}

.testimonial-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-top: 30px;
    z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
    position: relative;
    width: 45px;
    height: 45px;
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    background-position: right center;
}

.testimonial-slider .testimonial-button-next {
    margin-right: 30px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
    background-position: left center;
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.svg") no-repeat center center;
    background-size: 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
    transform: rotate(-225deg);
}

.testimonial-rating-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 100px;
}

.testimonial-rating-item {
    position: relative;
    width: calc(25% - 22.5px);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    padding: 25px 30px;
}

.testimonial-rating-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white-color);
    opacity: 6%;
    width: 100%;
    height: 100%;
}

.testimonial-rating-item .icon-box {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.testimonial-rating-item .icon-box img {
    max-width: 162px;
    max-height: 40px;
}

.testimonial-rating-content p {
    color: var(--white-color);
    margin: 0;
    padding: 0 10px;
}

.testimonial-rating-content p span {
    color: var(--accent-color);
}

/************************************/
/***       15. Our Blog Css       ***/
/************************************/

.our-blog {
    padding: 100px 0;
}

.our-blog-content {
    position: sticky;
    top: 100px;
}

.blog-box {
    margin-right: 100px;
}

.blog-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.blog-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-item .blog-featured-image {
    width: 47%;
}

.blog-item .blog-featured-image a {
    cursor: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.blog-item .blog-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.blog-item:hover .blog-featured-image img {
    transform: scale(1.1);
}

.blog-item-body {
    width: calc(100% - 47%);
}

.blog-item-content {
    margin-bottom: 20px;
}

.blog-item-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.blog-item-content h2 a {
    color: inherit;
}

.blog-item-content p {
    margin: 0;
}

/************************************/
/***        16. Footer Css        ***/
/************************************/

.main-footer {
    position: relative;
    /*background: url(../images/footer-bg-1.png), var(--primary-color);*/
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
    padding: 100px 0 0;
    margin-bottom: 10px;
}

.main-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /*background: url(../images/footer-bg-2.png);*/
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.about-footer {
    width: 100%;
    max-width: 600px;
}

.about-footer .section-title h4 {
    color: var(--white-color);
}

.footer-contact-info h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-contact-info p {
    color: var(--white-color);
    margin: 0;
}

.footer-contact-info p span {
    font-size: 15px;
    font-weight: 600;
}

.footer-social-links {
    margin-top: 30px;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-left: 15px;
}

.footer-social-links ul li:last-child {
    margin-left: 0;
}

.footer-social-links ul li a {
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    border-color: var(--accent-color);
}

.footer-social-links ul li a i {
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
    background-image: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-copyright {
    border-top: 1px solid var(--dark-divider-color);
    padding: 40px 0;

}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.footer-menu ul li {
    display: inline-block;
    margin-left: 30px;
}

.footer-menu ul li:last-child {
    margin-left: 0;
}

.footer-menu ul li a {
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover a {
    color: var(--accent-color);
}

.footer-copyright-text {
    text-align: center;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin: 0;
}

/************************************/
/***     17. About Us Page css    ***/
/************************************/

.page-header {
    position: relative;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    padding: 250px 0 140px;
    /* margin-top: -120px; */
}

/*.page-header:before {*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: linear-gradient(90deg, rgba(4, 42, 45, 0) 22.28%, var(--primary-color) 100%);*/
/*    z-index: 0;*/
/*}*/

.page-header-box {
    position: relative;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 1;
}

.page-header-box h1 {
    color: var(--white-color);
    font-size: 55px;
    line-height: 1.1em;
    margin-bottom: 15px;
    font-family: "estedad";
}

.page-header-box h1 span {
    background-image: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.page-header-box ol {
    margin: 0;
    padding: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
    color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.our-approach {
    background: var(--white-color);
    padding: 100px 0;
}

.mission-vision-item {
    position: relative;
    margin-bottom: 40px;
}

.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item:after {
    content: '';
    position: absolute;
    background: var(--divider-color);
    width: 1px;
    height: 90%;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

.mission-vision-list .col-md-6:nth-child(odd) .mission-vision-item {
    padding-left: 45px;
}

.mission-vision-list .col-md-6:nth-child(even) .mission-vision-item {
    padding-right: 45px;
}

.mission-vision-item .icon-box {
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 999px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease-in-out;
    background-position: right center;
}

.mission-vision-item:hover .icon-box {
    background-position: left center;
}

.mission-vision-item .icon-box img {
    max-width: 24px;
}

.mission-vision-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.mission-vision-content p {
    margin: 0;
}

.mission-vision-item.our-value-item {
    display: flex;
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.mission-vision-item.our-value-item .icon-box {
    margin-left: 20px;
}

.mission-vision-item.our-value-item .mission-vision-content {
    width: calc(100% - 70px);
}

.our-approach-content-footer a {
    font-weight: normal;
    line-height: 1.4em;
    text-align: center;
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
}

.our-approach-content-footer a:before {
    display: none;
}

.our-approach-content-footer a u {
    transition: all 0.3s ease-in-out;
}

.our-approach-content-footer a:hover u {
    color: var(--primary-color);
}

.our-approach-image {
    padding-right: 30px;
}

.our-approach-image figure {
    display: block;
    border-radius: 20px;
}

.our-approach-image img {
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
    border-radius: 20px;
}

.our-partners {
    padding: 100px 0 70px;
}

.our-partners .contact-circle {
    text-align: left;
}

.our-partners .contact-circle img {
    max-width: 122px;
    animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.our-partners .company-logo {
    background-color: var(--white-color);
    border-radius: 20px;
    text-align: center;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 55px 35px;
}

.company-logo img {
    width: 100%;
    height: 40px;
}

.company-experience {
    background-color: var(--primary-color);
    background-image: url('../images/company-experience-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.company-experience-content {
    margin-right: 10px;
}

.company-experience-content .section-title h3,
.company-experience-content .section-title h2 {
    color: var(--white-color);
}

.company-experience-content .section-title p {
    color: var(--secondary-color);
}

.company-experience-content .section-btn {
    text-align: start;
}

.company-experience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-right: 20px;
}

.company-experience-item {
    width: calc(50% - 15px);
}

.company-experience-item h2 {
    color: var(--accent-color);
    font-size: 40px;
    margin-bottom: 10px;
}

.company-experience-item h3 {
    color: var(--white-color);
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.company-experience-item p {
    color: var(--secondary-color);
    margin: 0;
}

.why-choose-us {
    padding: 100px 0;
}

.why-choose-us-content {
    margin-right: 20px;
}

.why-choose-skillbar .skills-progress-bar {
    margin-bottom: 40px;
}

.why-choose-skillbar .skills-progress-bar:last-child {
    margin-bottom: 0;
}

.skillbar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skillbar .skill-data .skill-title {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--primary-color);
}

.skillbar .skill-data .skill-no {
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 20px;
}

.skillbar .skill-progress {
    width: 100%;
    height: 14px;
    background: var(--white-color);
    border-radius: 99px;
    position: relative;
}

.skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--accent-color);
    border-radius: 99px;
}

.why-choose-us-image {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: end;
    padding-bottom: 45px;
    margin-right: 50px;
}

.why-choose-us-img-1 {
    width: 413px;
    text-align: right;
}

.why-choose-us-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.why-choose-us-img-1 figure,
.why-choose-us-img-2 figure {
    display: block;
    overflow: hidden;
}

.why-choose-us-img-1 figure,
.why-choose-us-img-2 figure,
.why-choose-us-img-1 img,
.why-choose-us-img-2 img {
    border-radius: 20px;
}

.why-choose-us-img-1 img {
    aspect-ratio: 1 / 1.095;
    object-fit: cover;
}

.why-choose-us-img-1 img {
    aspect-ratio: 1 / 1.097;
    object-fit: cover;
}

.why-choose-contact-circle {
    position: absolute;
    top: 50px;
    right: -50px;
}

.why-choose-contact-circle img {
    max-width: 175px;
    animation: infiniterotate 30s infinite linear;
}

.our-team {
    padding: 100px 0 70px;
}

.team-member-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.team-image a {
    display: block;
    cursor: none;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
    transform: scale(1.1);
}

.team-social-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transform: translateY(100%);
    text-align: center;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon {
    bottom: 30px;
    transform: translateY(0);
}

.team-social-icon ul {
    position: relative;
    display: inline-block;
    list-style: none;
    line-height: normal;
    margin: 0;
    padding: 15px 25px;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border-radius: 10px;
    overflow: hidden;
}

.team-social-icon ul::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 10%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.team-social-icon ul li {
    position: relative;
    display: inline-block;
    text-align: center;
    margin-left: 15px;
    z-index: 1;
}

.team-social-icon ul li:last-child {
    margin-left: 0;
}

.team-social-icon ul li a {
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--secondary-color);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a i {
    color: inherit;
    font-size: 18px;
}

.team-social-icon ul li a:hover {
    border-color: var(--dark-color);
    color: var(--accent-color);
}

.team-content {
    text-align: center;
}

.team-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-content p {
    text-transform: capitalize;
    margin: 0;
}

/************************************/
/*** 	 18. Services page Css	  ***/
/************************************/

.page-services {
    padding: 100px 0 70px;
}

.page-services .service-item {
    background-color: var(--white-color);
    border-radius: 20px;
    width: 100%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.page-services .service-item .service-item-content {
    margin-bottom: 20px;
}

.page-services .service-item .service-item-content h3 {
    color: var(--primary-color);
}

.page-services .service-item .service-item-content p {
    color: var(--text-color);
}

.readmore-btn {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-left: 30px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
    color: var(--primary-color);
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    background: url(../images/accent-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    transition: 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    filter: brightness(0) invert(0);
    transform: translateY(-50%) rotate(-45deg);
}

/************************************/
/*** 	19. Service Single Css	  ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    margin-left: 30px;
}

.service-catagery-list {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}

.service-catagery-list h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-catagery-list ul li {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.service-catagery-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/accent-arrow.svg) no-repeat;
    background-position: left center;
    background-size: auto;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a:hover:before {
    transform: rotate(-45deg);
}

.service-catagery-list ul li:hover a {
    color: var(--accent-color);
}

.sidebar-cta-box {
    border-radius: 20px;
    overflow: hidden;
}

.sidebar-img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.63;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-img img {
    transform: scale(1.1)
}

.sidebar-cta-Body {
    background: var(--white-color);
    padding: 30px;
}

.sidebar-cta-content {
    margin-bottom: 30px;
}

.sidebar-cta-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.sidebar-cta-content p {
    margin-bottom: 0;
}

.sidebar-cta-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-cta-contact ul li {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sidebar-cta-contact ul li:last-child {
    margin: 0;
}

.sidebar-cta-contact ul li i {
    font-size: 18px;
    color: var(--accent-color);
    margin-left: 15px;
}

.service-featured-image {
    margin-bottom: 30px;
}

.service-featured-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.service-featured-image img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 1 / 0.66;
    object-fit: cover;
}

.service-entry {
    margin-bottom: 50px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-entry h2 span {
    font-weight: 700;
    background-image: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-entry ul {
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}

.service-entry ul li {
    position: relative;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-right: 30px;
    margin-bottom: 20px;
}

.service-entry ul li:last-child {
    margin-bottom: 0;
}

.service-entry ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    background-image: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-entry-img {
    margin-bottom: 50px;
}

.service-entry-img figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.service-entry-img img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
}

.business-process-steps {
    margin: 30px 0 20px;
}

.business-planing-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.business-planing-img {
    width: calc(50% - 15px);
}

.business-planing-img figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.business-planing-img img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.93;
}

/************************************/
/*** 	 20. Blog Archive Css	  ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.post-item {
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.post-featured-image {
    position: relative;
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.post-featured-image figure a {
    display: block;
    cursor: none;
}

.post-featured-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.74;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image figure img {
    transform: scale(1.1);
}

.post-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
}

.post-btn a {
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    background-position: right center;
}

.post-btn a:hover {
    background-position: left center;
}

.post-btn a img {
    max-width: 24px;
    transition: all 0.4s ease-in-out;
}

.post-btn a:hover img {
    filter: brightness(0) invert(0);
}

.post-item:hover .post-btn a img {
    transform: rotate(-45deg);
}

.post-item-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item-content p {
    margin: 0;
}

.page-pagination {
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
}

/************************************/
/***      21. Blog Single css	  ***/
/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
}

.post-image figure,
.post-image img {
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 30px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    color: #686868;
    font-size: 16px;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    line-height: 1.2em;
    margin: 0 0 16px 0;
}

.post-entry h1 span,
.post-entry h2 span {
    font-weight: normal;
}

.post-entry h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
}

.post-entry h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
}

.post-entry h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.post-entry h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
}

.post-entry h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.post-entry h6 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}

.post-entry p {
    margin-bottom: 24px;
    line-height: 24px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry strong {
    font-weight: 700;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ol li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-right: 20px;
}

.post-entry ul li {
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: var(--white-color) url(../images/icon-blockquote.svg) no-repeat;
    background-position: calc(100% - 35px) 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 100px 30px 30px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--white-color);
    border-radius: 100px;
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;
    background-position: right center;
}

.post-tags .tag-links a:hover {
    background-position: left center;
    color: var(--primary-color);
}

.post-social-sharing {
    text-align: left;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-left: 10px;
}

.post-social-sharing ul li:last-child {
    margin-left: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
    background-position: right center;
}

.post-social-sharing ul li:hover a {
    background-position: left center;
    color: var(--primary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	  22. Team Page Css	      ***/
/************************************/

.page-team {
    padding: 100px 0 70px;
}

/************************************/
/*** 	 23. Team Single Css	  ***/
/************************************/

.page-team-single {
    padding: 100px 0;
}

.team-single-image {
    position: sticky;
    top: 100px;
    margin-left: 30px;
}

.team-single-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.team-single-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.2;
    border-radius: 20px;
    overflow: hidden;
}

.team-member-info {
    margin-bottom: 60px;
}

.team-info-header {
    margin-bottom: 30px;
}

.team-info-header h3 {
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    color: var(--white-color);
    background: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    border-radius: 100px;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.team-info-header h2 {
    font-size: 40px;
    text-transform: capitalize;
}

.team-info-body {
    margin-bottom: 40px;
}

.team-info-body p:last-child {
    margin: 0;
}

.team-info-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-info-list ul li {
    display: block;
    margin-bottom: 20px;
}

.team-info-list ul li:last-child {
    margin-bottom: 0;
}

.team-info-list ul li span {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-block;
    width: 25%;
}

.team-member-experience {
    margin-bottom: 60px;
}

.member-experience-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.member-experience-list ul li {
    position: relative;
    text-transform: capitalize;
    padding-right: 30px;
    margin-bottom: 20px;
}

.member-experience-list ul li:last-child {
    margin-bottom: 0;
}

.member-experience-list ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    background-image: linear-gradient(90deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.member-contect-form form .form-control {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--primary-color);
    background: transparent;
    border-width: 0 0 1px 0;
    border-color: var(--divider-color);
    border-radius: 0;
    padding: 12px 0;
    outline: none;
    box-shadow: none;
    text-align: right;
}

.member-contect-form form .form-control::placeholder {
    font-weight: 500;
    color: var(--primary-color);
}

#msgSubmit {
    text-align: right;
    margin: 10px 0 0;
}

/************************************/
/*** 	 24. Pricing Page css	  ***/
/************************************/

.page-pricing {
    padding: 100px 0;
}

.page-pricing .pricing-box {
    display: block;
    background-color: var(--white-color);
    border-radius: 20px;
    border: none;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.page-pricing .pricing-box .pricing-box-content {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid var(--divider-color);
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
}

.page-pricing .pricing-box.highlighted-box .pricing-box-content {
    border-color: var(--dark-divider-color);
}

.page-pricing .pricing-box .pricing-btn .btn-default {
    width: 100%;
    text-align: center;
    padding: 17px;
}

.page-pricing .pricing-box .pricing-btn .btn-default::before {
    display: none;
}

.page-pricing .pricing-box .pricing-list {
    width: 100%;
}

.page-pricing .pricing-box .pricing-list ul li {
    width: 100%;
}

.page-pricing .pricing-benefit-list {
    margin-top: 20px;
}

.page-pricing .pricing-benefit-list ul {
    justify-content: center;
    gap: 20px 50px;
}

/************************************/
/***   25. Testimonial Page Css	  ***/
/************************************/

.page-testimonial {
    padding: 100px 0;
}

.client-testimonial-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.client-testimonial-item:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.client-testimonial-author {
    width: calc(40% - 40px);
    display: flex;
    align-items: center;
}

.client-author-image {
    margin-left: 40px;
}

.client-author-image figure {
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.client-author-image img {
    max-width: 100px;
    border-radius: 50%;
}

.client-author-content {
    width: calc(100% - 140px);
}

.client-author-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.client-author-content p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.client-testimonial-content {
    width: calc(60% - 40px);
    background: url(../images/blockquote.svg) no-repeat;
    background-position: top right;
    background-size: 56px auto;
    padding: 10px 70px 0 0;
}

.client-testimonial-content p {
    margin-bottom: 0;
}

/************************************/
/***     26. Image Gallery css    ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***     27. Video Gallery css    ***/
/************************************/

.page-video-gallery {
    padding: 100px 0 70px;
}

.video-gallery-image {
    border-radius: 20px;
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 50%;
    left: 0;
    transform: translate(50%, -50%);
    font-size: 20px;
    background: linear-gradient(-263deg, var(--accent-color) 0.16%, var(--dark-color) 99.84%);
    color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***       28. FAQs Page css      ***/
/************************************/

.page-faq {
    padding: 100px 0;
}

.faqs-sidebar {
    position: sticky;
    top: 100px;
    margin-left: 30px;
}

.faqs-catagery-list {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}

.faqs-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faqs-catagery-list ul li {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faqs-catagery-list ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.faqs-catagery-list ul li a {
    position: relative;
    text-transform: capitalize;
    display: block;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.faqs-catagery-list ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/accent-arrow.svg) no-repeat;
    background-position: left center;
    background-size: auto;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.faqs-catagery-list ul li a:hover:before {
    transform: rotate(-45deg);
}

.faqs-catagery-list ul li:hover a {
    color: var(--accent-color);
}

.page-faq-accordion {
    margin-bottom: 60px;
}

.page-faq-accordion:last-child {
    margin-bottom: 0;
}

/************************************/
/***    29. Contact Us Page css   ***/
/************************************/

.page-contact-us {
    padding: 100px 0;
}

.page-contact-us .section-row .section-title {
    margin-right: 20px;
}

.contact-us-form {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 40px;
}

.contact-us-title {
    margin-bottom: 40px;
}

.contact-us-title h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-us-title p {
    margin-bottom: 0;
}

.contact-us-form form .form-control {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--primary-color);
    background: transparent;
    border-width: 0 0 1px 0;
    border-color: var(--divider-color);
    border-radius: 0;
    padding: 12px 0;
    outline: none;
    box-shadow: none;
    text-align: right;
}

.contact-us-form form .form-control::placeholder {
    color: var(--primary-color);
}

.contact-information {
    margin-left: 20px;
}

.contact-info-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-contant {
    margin-bottom: 20px;
}

.contact-info-contant h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-info-contant p {
    margin-bottom: 0;
}

.contact-info-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-info-body .icon-box {
    background-image: linear-gradient(to right, var(--accent-color) 0%, var(--dark-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    transition: all 0.4s ease-in-out;
    background-position: right center;
}

.contact-info-body:hover .icon-box {
    background-position: left center;
}

.contact-info-body .icon-box img {
    max-width: 20px;
}

.contact-info-title {
    width: calc(100% - 60px);
}

.contact-info-title h3 {
    font-size: 22px;
    line-height: normal;
    color: var(--accent-color);
}

.google-map {
    overflow: hidden;
}

.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 600px;
}

.google-map-iframe iframe {
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe:hover iframe {
    filter: grayscale(0);
}

/*************************************/
/*** 30. Book Appointment Page css ***/
/*************************************/

.page-book-appointment {
    padding: 100px 0;
}

.booking-timing-title {
    margin-bottom: 20px;
}

.booking-timing-title h3 {
    font-size: 22px;
}

.booking-timing-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-timing-list ul li {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.booking-timing-list ul li:last-child {
    margin-bottom: 0;
}

.booking-timing-list ul li span {
    font-weight: 600;
}

.appointment-form {
    background-color: var(--white-color);
    border-radius: 30px;
    padding: 60px;
}

.appointment-form p {
    margin-bottom: 50px;
}

.appointment-form form .form-control {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--primary-color);
    background-color: transparent;
    border-width: 0 0 1px 0;
    border-color: var(--divider-color);
    border-radius: 0;
    text-align: right;
    padding: 12px 0;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder {
    color: var(--primary-color);
}

.appointment-form form .btn-default {
    width: 100%;
    text-align: center;
    padding: 17px;
    margin-top: 20px;
}

.appointment-form form .btn-default::before {
    display: none;
}

/************************************/
/*** 	   31. 404 Page css       ***/
/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page .error-page-content {
    text-align: center;
}

.error-page-content-heading {
    margin-bottom: 30px;
}

.error-page-content-body p {
    margin-bottom: 30px;
}

/*
Product
 */

.page-header.product-page-header {
    position: relative;
    min-height: 480px;
    background-size: cover !important;
    background-position: center !important;
    margin: 0 0 40px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*.product-page-header::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: rgba(0, 0, 0, 0.5);*/
/*}*/
.page-header-box {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}
.page-header-content h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/*.spec-table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*}*/
/*.spec-table tr:nth-child(odd) {*/
/*    background-color: #dddddd;*/
/*    border-top: 1px solid gray;*/
/*    border-bottom: 1px solid gray;*/
/*}*/
/*.spec-table td {*/
/*    padding: 0.75rem 1rem;*/
/*}*/
/*.zoom-cursor {*/
/*    cursor: url('/images/icons8-zoom-in-30.png'), zoom-in;*/
/*}*/
.thumbnail {
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    padding: 2px;
}
.thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}
/*.spec-table td.font-medium {*/
/*    float: right;*/
/*    font-weight: 600;*/
/*}*/
/*.spec-table td:not(.font-medium) {*/
/*    float: left;*/
/*}*/

.spec-table tbody tr > td:last-child {
    text-align: left;
    color: #333;
}

.spec-table.dir-ltr tbody tr > td:last-child {
    text-align: right;
}

.spec-table tbody tr > td {
    font-weight: 700;
    color: #111;
    padding: 16px 8px;
}

/* Sticky product details */
.product-info-sticky {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

/* Image gallery styles */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.gallery-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.breadcrumb {}
.breadcrumb .breadcrumb-item {}
.breadcrumb .breadcrumb-item a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

}

.breadcrumb .breadcrumb-item span {
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.gallery-img-product .item {
    width: 68px;
    height: 68px;
    background: #fff;
    margin: 4px 2px;
    transition: all linear 0.2s;
}

.gallery-img-product .item:first-child {
    margin-right: 0;
}

.gallery-img-product .item.active,
.gallery-img-product .item:hover {
    filter: brightness(0.9);
}

.gallery-img-product .item .gallery-thumbnail {
    width: 100%;
    height: 68px;
}

.btn-product-detail {
    background-color: transparent !important;
    border-radius: 0;
    color: #555;
    border-bottom: 2px solid rgba(0,0,0,0);
    font-weight: 700;
}

.nav-pills .nav-link.active,
.btn-product-detail:hover,
.btn-product-detail.active {
    background-color: transparent !important;
    border-radius: 0;
    color: #000;
    border-bottom: 2px solid rgba(0,0,0,1);
}

.nav-pills .nav-link:hover, .nav-pills .nav-link:focus {
    color: #000 !important;
}

.related-products-section .swiper-slide {
    transition: all 0.15s linear;
}

.related-products-section .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-products-section .swiper-button-next,
.related-products-section .swiper-button-prev {
    display: none;
}

.related-post-title {
    text-align: center;
}

.related-post-title > a {
    font-size: 16px;
    color: #333;
}

.zoom-lens {
    position: absolute;
    border: 1px solid #555;
    width: 160px;
    height: 160px;
    display: none;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}


.hero-bg-video {
    background: #fff;
}

.bg-section.contact-header,
.bg-section.about-us-header {
    min-height: 480px;
    width: calc(100% - 30px);
    margin: auto;
    border-radius: 30px;
}

.about-us-header.page-header::before {
    display: none;
}

.ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ellipsis-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.leaflet-popup-content {
    font-family: 'Vazir', Serif !important;
    margin: 8px 28px 8px 12px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-align: center !important;
    min-width: 75px !important;
}

/* Modal Gallery */
.fsd-modal .modal {
    display: none;
    position: fixed;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    z-index: 1000
}

/* Modal Content */
.fsd-modal .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}

/* The Close Button */
.fsd-modal .close {
    color: white;
    position: fixed;
    top: 25px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.fsd-modal .close:hover,
.fsd-modal .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.fsd-modal .mySlides {
    display: none;
    max-height: 640px;
}

.fsd-modal .mySlides img {
    max-width: inherit;
    width: auto;
    max-height: 640px;
}

/* Next & previous buttons */
.fsd-modal .prev,
.fsd-modal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.fsd-modal .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.fsd-modal .column {
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
}

/* On hover, add a black background color with a little bit see-through */
.fsd-modal .prev:hover,
.fsd-modal .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.fsd-modal .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Caption text */
.fsd-modal .caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

.fsd-modal img.demo {
    opacity: 0.6;
}

.fsd-modal .active,
.fsd-modal .demo:hover {
    opacity: 1;
}

.fsd-modal img.hover-shadow {
    transition: 0.3s;
}

.fsd-modal .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* survey */
.box-qc {
    border-radius: 15px;
}

.survey #successMessage, #errorMessage {
    direction: rtl;
}

.survey #successMessage i, #errorMessage i {
    color: white;
}

.survey #closeMessage:hover, #closeErrorMessage:hover {
    background-color: #f8f8f8;
}

.survey .error-input {
    border: 1px solid #ff0000 !important;
}

.survey input[type=radio] {
    margin-left: 2px;
}

/* contact us */

.our-faq-section .container{
    border-radius: 20px;
}


/* about */

.expertise-items {
    background: #00475d;
    padding: 80px 0;
}

.expertise-items .title-box {
    padding-top: 24px;
}

.expertise-items .title-box .subtitle{
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 20px;
    color: rgb(164, 199, 185);
}

.expertise-items .title-box .title{
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 32px;
    color: #fff;
}

.expertise-items .title-box .desc{
    font-size: 15px;
    font-weight: 300;
    line-height: 20px;
    color: rgb(164, 199, 185);
}

.expertise-items .ex-item {
}

.expertise-items .ex-item .title {
    color: #fff;
    font-weight: 900;
}

.expertise-items .ex-item .icon-box i {
    font-size: 32px;
}

.expertise-items .ex-item .desc {
    color: rgb(164, 199, 185);
}


.wfr-section {
    padding: 32px 0;
}

.wfr-section .title-box {
    margin-bottom: 32px;
}

.wfr-section .title-box .title {
    margin-bottom: 0;
    color: #000;
    font-weight: 900;
    font-size: 32px;
}

.wfr-section .wfr-item {
    padding: 24px;
    background: #fff;
    border-radius: 20px;
}

.wfr-section .wfr-item .title {
    font-size: 15px;
    font-weight: 500;
    color: #111;
}

.wfr-section .wfr-item .desc {
    font-size: 22px;
    font-weight: 700;
    color: rgb(1, 92, 168);
}

.wfr-section .wfr-item .icon {
    font-size: 20px;
    color: #52cff2;
}

.dir-ltr {
    direction: ltr !important;
}

/* Register warranty*/
.step-navigator {

}

.step-navigator .menu {
    list-style: none;
}

.step-navigator .menu .item{

}

.step-navigator .menu .item > a {
    display: block;
    clip-path: polygon(100%0,90% 50%,100% 100%,10% 100%,0 50%,10%0);
    /*background-color: #044660;*/
    padding: 4px 32px 4px 24px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 24px;
    /*background: url("https://fsd.co.com/images/warranty/garanty-done.png") no-repeat;*/
}

.step-navigator .menu .item > span {
    min-width: 64px;
    font-size: 13px;
    color: #00465f;
    line-height: 14px;
    background: white;
    z-index: 99;
    position: absolute;
    left: 50%;
    top: calc(50% + 12px);
    padding: 0 4px;
    margin-left: -24px;
    text-align: center;
}

.step-navigator .menu .item > span.one-line {
    line-height: 28px;
}

.step-navigator .devider {
    width: 100%;
    height: 5px;
    background: #00465f;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% + 16px);
}

.step-navigator .menu .item.active span {
    /*background-color: #199d06;*/
    color: #00acbc;
}

.title-warranty-registration {
    font-size:  18px;
    font-weight: 900;
}

.error-text {
    font-size: 14px;
    font-style: italic;
}

.english {
    font-family: "Estedad", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.persian-number {
    font-family: var(--default-font);
}


.unmute-button {
    position: absolute;
    top: 32px;
    left: 64px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.unmute-button.hidden {
    display: none;
}

.bg-fsd {
    background: #044660 !important;
}

.no-border {
    border: none !important;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 1);
}

.address-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.br-16 {
    border-radius: 16px !important;
}

footer .content-box {
    margin-top: 24px;
}

footer .widget h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.map-container iframe {
    width: 200px;
    border-radius: 10px;
    height: 200px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.social-link {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #044660;
}

.social-link i {
    font-size: 14px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.stock-badge {
    position: absolute;
    right: 24px;
    top: 24px;
    padding: 4px 12px;
    background: #ff0000;
    color: #fff;
    z-index: 99;
}

.black-and-white {
    filter: grayscale(100%);
}


@media (max-width: 768px) {
    footer .content-box {
        margin-top: 16px;
    }

    .brand-logo {
        margin: 32px auto 0 auto;
    }

    .brand-logos-section {
        padding: 32px 0;
    }

    .brand-logos-slider {
        padding: 0;
    }

    .products-section {
        margin: 0 16px !important;
    }

    .section-title {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }

    .products-slider-wrapper {
        padding: 16px 0 !important;
    }

    .page-header {
        margin-top: -16px !important;
        margin-bottom: 16px !important;
    }

    .sidebar {
        margin-bottom: 16px !important;
    }

    .product-card:hover .overlay-content {
        transform: translateY(32px) !important;
    }

    .hide-mobile {
        display: none !important;
    }

    .hero-bg-video {
        height: 160px !important;
    }

    .page-contact-us,
    .about-section {
        padding: 48px 0;
    }

    .bg-section.contact-header, .bg-section.about-us-header {
        padding: 0;
        min-height: inherit;
        height: 160px;
        margin-top: 8px !important;
    }

    .contact-information {
        margin: 0;
    }

    .contact-info-title {
        width: 100%;
    }

    .contact-info-title h3 {
        font-size: 18px;
    }

    .contact-info-contant h3 {
        font-size: 19px;
        font-weight: 900;
    }

    .product-page-container .page-header {
        background-position: center right !important;
    }

    .step-navigator .menu .item > a {
        padding: 4px 8px;
    }

    .step-navigator .menu .item > span {
        top: calc(50% + 2px);
        font-size: 10px;
        line-height: 10px;
        left: calc(50% - 4px);
    }

    .step-navigator .devider {
        top: calc(50% + 6px);
    }

    .single-blog-page-header-box h1 {
        font-size: 24px;
    }

    .page-header.product-page-header {
        min-height: 100px;
        top: 16px;
    }

    .fsd-modal .mySlides img {
        max-width: 100%;
    }

    .spec-table tbody tr > td {
        font-size: 14px;
    }

    .product-content ol.breadcrumb {
        margin-bottom: 0;
        margin-top: 16px;
    }

    .product-overlay {
        top: 45px !important;
    }


    .language-selector {
        display: block !important;
        margin: 0 0 0 4px;
    }

    .language-selector #language-btn {
        border: 2px solid #087fa4;
        color: #087fa4;
    }
}
