/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Renovex - Construction HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. What We Do css
08. Our Story css
09. Our Features css
10. Our Pricing Plans css
11. Our Projects css
12. CTA Box css
13. Our FAQs css
14. Our Testimonials 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. Projects Page css
23. Project Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. 404 Error Page css
33. Responsive css
34. Home - Version 2 css
35. Home - Version 3 css
-------------------------------------------------------------------------------------- */

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

:root {
    --primary-color: #0D0D0D;
    --secondary-color: #F5F5F5;
    --bg-color: #FFFFFF;
    --text-color: #666666;
    --accent-color: #FED403;
    --white-color: #FFFFFF;
    --divider-color: #0D0D0D1A;
    --dark-divider-color: #FFFFFF1A;
    --solo-blue: #00547A;
    --error-color: rgb(230, 87, 87);
    --default-font: "DM Sans", sans-serif;
    --accent-font: "Space Grotesk", sans-serif;
    --solo-contact-blue: var(--solo-blue, #00547a);
    --solo-contact-blue-dark: #003f5d;
    --solo-contact-whatsapp: #25d366;
    --solo-contact-whatsapp-dark: #1dbd59;
    --solo-contact-dark: #111820;
    --solo-contact-text: #626b72;
    --solo-contact-muted: #81898e;
    --solo-contact-white: #ffffff;
    --solo-contact-bg: #f4f6f8;
    --solo-contact-border: #d7dfe5;
    --solo-contact-error: #d63838;
}

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

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

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}

body.solo-contact-open {
    overflow: hidden;
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--solo-blue);
}

::selection {
    color: var(--white-color);
    background-color: var(--solo-blue);
    filter: invert(1);
}

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

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

figure {
    margin: 0;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

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

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

.container {
    max-width: 1500px;
}

.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;
}

.btn-default {
    font-family: var(--accent-font);
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    background: var(--solo-blue);
    border-radius: 5px;
    padding: 17px 57px 17px 20px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

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

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08),
    0 4px 10px rgba(0, 0, 0, .15);
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px auto;
    border-radius: 6px;
    transform: translateY(-50%);
    transition: all .35s ease;
}

.btn-default:hover:before {
    background-color: var(--solo-blue);
    background-image: url('../images/arrow-white.svg');
}

.btn-default::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

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

.btn-default.btn-highlighted:hover {
    color: var(--solo-blue);
}

.btn-default.btn-highlighted:hover::before {
    background: var(--solo-blue);
    border: 1px solid rgba(255, 255, 255, .1);
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center;
}

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

.readmore-btn {
    position: relative;
    padding-right: 34px;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--solo-blue);
    transform: translateY(-50%);
    transition: .4s;
}

.readmore-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 6px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%) rotate(-45deg);
    background: url('../images/arrow-white.svg') center/contain no-repeat;
    transition: .4s;
}

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

.readmore-btn:hover::after {
    transform: translateY(-50%) rotate(0deg);
}

.cb-cursor:before {
    background: var(--solo-blue);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    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);
    }
}

.dark-section {
    background-color: var(--primary-color);
    background-image: url('../images/dark-section-bg-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

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

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

.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
    text-align: center;
}

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

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

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

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

.section-title h3 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-left: 16px;
    margin-bottom: 10px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--solo-blue);
    width: 6px;
    height: 6px;
}

.section-title h1 {
    font-size: 52px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 48px;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    cursor: none;
}

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

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

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

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

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

header.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    background: rgba(5, 7, 7, .34);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    z-index: 100;
}

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

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    background: var(--primary-color);
}

.navbar {
    align-items: center;
    padding: 25px 0;
}

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

.navbar-brand img {
    max-width: 192px;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 1.042vw;
}

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

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

.main-menu ul li a {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 12px 10px !important;
    background: transparent;
    border-radius: 6px;
    transition: color .3s ease, background-color .3s ease;
}

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

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--solo-blue);
    background: rgba(255, 255, 255, .88);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--solo-blue);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

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

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

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 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: 6px 20px !important;
    transition: all 0.4s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--white-color);
    background-color: transparent;
    padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

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

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

.slicknav_btn {
    background: var(--solo-blue);
    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: var(--solo-blue);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 3px 0 8px 0;
    padding-left: 22px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 7px 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(--white-color);
}

.slicknav_menu ul ul li a {
    padding: 6px 20px 6px 18px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.88;
}

.slicknav_menu ul ul li a:before {
    content: '─';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--white-color);
    opacity: 0.7;
}

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

.slicknav_arrow:after {
    content: '+';
    font-family: inherit;
    font-weight: 700;
    font-size: 20px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after,
.slicknav_open > .slicknav_row .slicknav_arrow:after {
    content: '−';
    transform: translateY(-50%);
}

.home-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.homeSlider,
.homeSlider .swiper-wrapper,
.homeSlider .swiper-slide {
    width: 100%;
    height: auto;
}

.homeSlider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.mobile-slide-link,
.homeSlider .swiper-slide picture {
    display: block;
    width: 100%;
}

.homeSlider .swiper-slide img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}

.home-slider-btn {
    position: absolute;
    right: calc(5% + 104px);
    bottom: 28px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--solo-blue);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.home-slider-btn:hover {
    background: var(--solo-blue);
    color: var(--white-color);
}

.home-slider-nav {
    position: absolute;
    right: 5%;
    bottom: 28px;
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-slider-nav button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.home-slider-nav button:hover {
    background: var(--solo-blue);
    border-color: var(--solo-blue);
    color: var(--white-color);
}

/* ==================================================
   HEADER ACTIONS
================================================== */

.header-actions {
    display: flex;
    align-items: center;
    margin-left: 34px;
    gap: 22px;
    flex-shrink: 0;
}

.header-actions-divider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.14);
}

/* ==================================================
   DESKTOP PHONE
================================================== */

.header-phone {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white-color);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease,
    transform 0.3s ease;
}

.header-phone:hover {
    color: var(--white-color);
    transform: translateY(-1px);
}

.header-phone-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white-color);
    transition: background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.header-phone-icon svg {
    width: 18px;
    height: 18px;
}

.header-phone:hover .header-phone-icon {
    background: var(--solo-blue);
    border-color: var(--solo-blue);
    transform: rotate(-6deg);
}

.header-phone-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.header-phone-content small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-phone-content strong {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ==================================================
   DESKTOP CATALOG
================================================== */

.header-catalog {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white-color);
    text-decoration: none;
    white-space: nowrap;
    transition:
            opacity 0.3s ease,
            transform 0.3s ease;
}

.header-catalog:hover {
    color: var(--white-color);
    transform: translateY(-1px);
}

.header-catalog-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white-color);
    transition:
            background-color 0.3s ease,
            border-color 0.3s ease,
            transform 0.3s ease;
}

.header-catalog-icon svg {
    width: 18px;
    height: 18px;
}

.header-catalog:hover .header-catalog-icon {
    background: var(--solo-blue);
    border-color: var(--solo-blue);
}

.header-catalog:hover .header-catalog-icon svg {
    animation: headerCatalogDownload 0.6s ease;
}

.header-catalog-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.header-catalog-content small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-catalog-content strong {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@keyframes headerCatalogDownload {
    0% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==================================================
   DESKTOP LANGUAGE
================================================== */

.header-language {
    position: relative;
}

.header-language-button {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 6px 10px 6px 7px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--white-color);
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.header-language-button:hover,
.header-language.open .header-language-button {
    background: rgba(255, 255, 255, 0.07);
}

.header-language-code {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.header-language-name {
    font-size: 13px;
    font-weight: 600;
}

.header-language-arrow {
    width: 10px;
    height: 7px;
    color: rgba(255, 255, 255, 0.65);
    transition: transform 0.3s ease;
}

.header-language.open .header-language-arrow {
    transform: rotate(180deg);
}

.header-language-dropdown {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 14px);
    right: 0;
    width: 220px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(30, 26, 27, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;

    transition: opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.header-language.open .header-language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.header-language-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 22px;
    width: 13px;
    height: 13px;
    background: rgba(30, 26, 27, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(45deg);
}

.header-language-dropdown a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 8px 10px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s ease,
    background-color 0.25s ease;
}

.header-language-dropdown a:hover,
.header-language-dropdown a.active {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.08);
}

.language-option-code {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.header-language-dropdown a.active .language-option-code {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.language-option-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px;
}

.language-option-text strong {
    color: inherit;
    font-size: 13px;
    font-weight: 600;
}

.language-option-text small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    font-weight: 400;
}

.language-option-check {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

/* Desktop menü içerisinde mobil dil seçiciyi gizle */
.mobile-language-item {
    display: none;
}

.mobile-catalog-item {
    display: none;
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
    background-image: url('../images/hero-bg-image.jpg');
    padding: 265px 0 300px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px 50px;
}

.video-play-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.video-play-button a {
    position: relative;
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
    background: var(--accent-color);
}

.video-play-button a:before,
.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 100%;
    height: 100%;
    border: 32px solid var(--white-color);
    opacity: 50%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a i {
    font-size: 14px;
    color: var(--white-color);
    margin-left: 2px;
    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i {
    color: var(--primary-color);
}

.video-play-button h3 {
    font-size: 18px;
    color: var(--white-color);
}

.hero .year-experience-circle {
    text-align: center;
}

.year-experience-circle img {
    width: 100%;
    max-width: 130px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

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

.hero-info-box {
    position: relative;
    margin-top: -145px;
    z-index: 2;
}

.hero-info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-info-item {
    position: relative;
    width: calc(33.33% - 20px);
    border-radius: 10px;
    overflow: hidden;
}

.hero-info-item.box-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--secondary-color);
    padding: 10px;
}

.hero-info-content-box {
    width: calc(48% - 5px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.hero-info-item-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
}

.hero-info-item-content ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
    border-radius: 5px;
    padding: 5px 14px;
}

.hero-info-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.hero-info-btn {
    border-top: 1px solid var(--divider-color);
    padding-top: 25px;
}

.hero-info-image {
    width: calc(52% - 5px);
}

.hero-info-image figure,
.hero-info-item.box-2 figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.hero-info-image img,
.hero-info-item.box-2 img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.62;
    object-fit: cover;
    border-radius: 10px;
}

.hero-info-item.box-3 {
    background: var(--primary-color);
    padding: 40px;
}

.hero-info-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.hero-info-header .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-info-header .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.hero-info-item:hover .hero-info-header .icon-box::before {
    transform: rotate(0) scale(1);
}

.hero-info-header .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.satisfy-client-images {
    display: flex;
    align-items: center;
}

.satisfy-client-image {
    position: relative;
    display: inline-block;
    margin-left: -14px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

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

.satisfy-client-image figure {
    display: block;
}

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

.satisfy-client-image.add-more {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i {
    font-size: 20px;
    color: var(--primary-color);
    line-height: normal;
    transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
}

.hero-info-counter-box h3 {
    font-size: 20px;
    color: var(--white-color);
    line-height: 1.4em;
    margin-bottom: 10px;
}

.hero-info-counter-box h2 {
    font-size: 52px;
    color: var(--white-color);
}

.hero-info-bg-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
}

.hero-info-bg-icon img {
    width: 100%;
    max-width: 100px;
}

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

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

.about-us-image-box {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.about-us-image-box-1 {
    width: 74%;
}

.about-us-image {
    height: 100%;
    border-radius: 10px;
}

.about-us-image figure {
    height: 100%;
    display: block;
    border-radius: 10px;
}

.about-us-image img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 1.3;
    object-fit: cover;
    border-radius: 10px;
}

.about-us-image-box-2 {
    position: relative;
    width: 26%;
    z-index: 1;
}

.about-us-image-box-2 .about-us-image,
.about-us-image-box-2 .about-us-image figure,
.about-us-image-box-2 .about-us-image img {
    height: auto;
}

.about-us-image-box-2 .about-us-image {
    margin-top: 80px;
    margin-left: -150px;
}

.about-us-image-box-2 .about-us-image figure {
    border: 4px solid var(--white-color);
}

.about-us-image-box-2 .year-experience-circle {
    position: relative;
    display: inline-block;
    transform: translate(-50%, -50%);
    border: 4px solid var(--white-color);
    border-radius: 50%;
    z-index: 1;
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: var(--secondary-color);
    border-left: 10px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px 40px 25px 30px;
}

.about-body-item {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 15px);
    gap: 20px;
}

.about-body-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-body-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-body-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.about-body-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.about-body-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-body-item-content {
    width: calc(100% - 80px);
}

.about-body-item-content h3 {
    font-size: 20px;
}

.about-body-item-content p {
    margin: 10px 0 0;
}

.about-us-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.about-us-footer-content {
    width: calc(53% - 15px);
}

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

.about-footer-content-list ul li {
    position: relative;
    line-height: 1.5em;
    color: var(--primary-color);
    padding-left: 16px;
    margin-bottom: 20px;
}

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

.about-footer-content-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.about-us-btn {
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.about-us-video-box {
    position: relative;
    width: calc(47% - 15px);
}

.about-video-image {
    height: 100%;
}

.about-video-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.about-video-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-radius: 10px;
    opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-video-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.65;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.about-us-video-box:hover .about-video-image img {
    transform: scale(1.08);
}

.about-us-video-box .video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.about-us-video-box .video-play-button a {
    height: 46px;
    width: 46px;
    background: var(--accent-color);
}

.about-us-video-box .video-play-button a i {
    font-size: 16px;
    color: var(--primary-color);
}

.about-us-video-box .video-play-button a:before,
.about-us-video-box .video-play-button a:after {
    border-width: 36px;
}

/************************************/
/*** 	06. Our Servicves css 	  ***/
/************************************/

.our-services {
    background: var(--secondary-color) url('../images/service-bg-shape.png') no-repeat;
    background-position: top right;
    background-size: auto;
    padding: 100px 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    background: var(--white-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 15px;
}

.service-item-header {
    padding: 15px;
}

.service-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
}

.service-item-title h2,
.service-item-title h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.service-item-title h2 a {
    color: inherit;
}

.service-item-content {
    border-top: 1px solid var(--divider-color);
    margin-top: 15px;
    padding-top: 15px;
}

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

.service-image-box {
    position: relative;
}

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

.service-item-image img {
    width: 100%;
    aspect-ratio: 1 / 0.81;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
}

.service-item.active .service-item-image img,
.service-item:hover .service-item-image img {
    transform: scale(1.08);
}

.service-item-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.service-item.active .service-item-btn,
.service-item:hover .service-item-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.service-item-btn a {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.service-item-btn a:hover {
    background: var(--white-color);
}

.service-item-btn a img {
    width: 100%;
    max-width: 20px;
    transition: all 0.4s ease-in-out;
    transform: rotate(-45deg);
}

.service-item-btn a:hover img {
    transform: rotate(0);
}

.service-benefit-box {
    margin-top: 30px;
}

.service-benefit-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 25px;
    max-width: 900px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.service-benefit-list ul li {
    position: relative;
    background: var(--white-color);
    font-size: 16px;
    line-height: 1.5em;
    color: var(--primary-color);
    padding: 10px 16px 10px 32px;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}

.service-benefit-list ul li:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.service-benefit-list ul li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-footer-text p span {
    font-size: 14px;
    font-weight: 500;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 10px;
}

.section-footer-text p a {
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

.section-footer-text ul {
    width: 100%;
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
}

.section-footer-text ul li {
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-color);
    margin-right: 5px;
}

.section-footer-text ul li:last-child {
    margin: 0;
}

.section-footer-text ul li i {
    color: var(--accent-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
    color: var(--white-color);
}

.dark-section .section-footer-text p a:hover {
    color: var(--white-color);
}

.section-footer-text.section-footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
    max-width: 14px;
}

.section-footer-text.section-satisfy-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img ul {
    margin: 0;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
    border-color: var(--white-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
    max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
    width: 32px;
    height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
    max-width: 16px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more i {
    font-size: 16px;
}

/************************************/
/*** 	   07. What We Do css 	  ***/
/************************************/

.what-we-do {
    padding: 100px 0;
}

.what-we-do-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.what-we-do-item {
    width: calc(50% - 15px);
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
}

.what-we-do-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.what-we-do-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-do-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.what-we-do-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.what-we-do-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.what-we-do-item-body h3 {
    font-size: 20px;
}

.what-we-do-item-body p {
    margin: 10px 0 0;
}

.what-we-do-item-body ul {
    border-top: 1px solid var(--divider-color);
    list-style: none;
    margin: 20px 0 0;
    padding: 20px 0 0;
}

.what-we-do-item-body ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 16px;
    margin-bottom: 15px;
}

.what-we-do-item-body ul li:last-child {
    margin-bottom: 0;
}

.what-we-do-item-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.what-we-do-btn {
    margin-top: 40px;
}

.what-we-do-image {
    margin-left: 15px;
}

.what-we-do-image figure {
    display: block;
    border-radius: 10px;
}

.what-we-do-image img {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    border-radius: 10px;
}

.what-we-do .section-footer-text {
    margin-top: 60px;
}

/************************************/
/*** 	   08. Our Story css 	  ***/
/************************************/

.our-story {
    position: relative;
    background-image: url('../images/our-story-bg-image.jpg');
    padding: 200px 0;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-story .container {
    position: relative;
    z-index: 1;
}

.our-story-content {
    max-width: 990px;
    text-align: center;
    margin: 0 auto;
}

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

.watch-video-circle {
    margin-top: 180px;
}

.watch-video-circle a {
    display: inline-block;
    border-radius: 50%;
    cursor: none;
}

.watch-video-circle a img {
    width: 100%;
    max-width: 150px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.watch-video-circle a:hover img {
    animation-play-state: paused;
}

/************************************/
/*** 	 09. Our Features css 	  ***/
/************************************/

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

.our-features .section-row .section-title.section-title-center {
    max-width: 1050px;
}

.our-features .section-title h2 .feature-title-img-1 {
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background: var(--accent-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.our-features .section-title h2 .feature-title-img-1 img {
    width: 100%;
    max-width: 22px;
}

.our-features .section-title h2 .feature-title-img-2 img {
    width: 100%;
    max-width: 44px;
}

.our-features .section-title h2 .feature-title-img-3 {
    display: inline-block;
}

.our-features .section-title h2 .feature-title-img-3 img {
    width: 100%;
    max-width: 40px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    margin-left: -8px;
}

.our-features .section-title h2 .feature-title-img-3 img:first-child {
    margin: 0;
}

.feature-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    gap: 60px;
    background: var(--secondary-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.feature-item.box-1 {
    background: var(--primary-color);
}

.feature-item-shape-image figure {
    display: block;
    mask-image: url('../images/feature-item-image-shape-1.svg');
    background-image: url('../images/feature-item-image-shape-1.svg');
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 220px;
    height: 110px;
}

.feature-item-shape-image img {
    width: 100%;
    object-fit: cover;
}

.feature-item-content {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.feature-item-content h3 {
    font-size: 20px;
}

.feature-item-content p {
    margin: 10px 0 0;
}

.feature-item.box-1 .feature-item-content h3,
.feature-item.box-1 .feature-item-content p {
    color: var(--white-color);
}

.feature-item-content h2 {
    font-size: 54px;
    margin-bottom: 10px;
}

.feature-item-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-item-list ul li {
    position: relative;
    color: var(--white-color);
    line-height: 1.5em;
    padding-left: 16px;
    margin-bottom: 15px;
}

.feature-item-list ul li:last-child {
    margin-bottom: 0;
}

.feature-item-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.feature-item.box-2 {
    flex-direction: initial;
    gap: 0;
}

.feature-item-info {
    width: 75%;
}

.feature-item-info-content p {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item-info-content h3 {
    font-size: 30px;
    line-height: 1.4em;
}

.feature-item-btn {
    margin-top: 40px;
}

.feature-item-btn .readmore-btn {
    text-decoration: underline;
}

.feature-item-image {
    width: 25%;
    text-align: right;
    align-content: end;
}

.feature-item-image figure {
    display: block;
    margin: 0 -40px -40px -100px;
}

.feature-item-image img {
    width: 100%;
    max-width: 250px;
}

.feature-item.box-3 {
    background: var(--accent-color);
}

.feature-item.box-3 .feature-item-content-box .feature-item-content {
    border-color: var(--divider-color);
}

.feature-item-counter-info p {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item-counter-info p:last-child {
    margin-bottom: 0;
}

.feature-item-tag-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-item-tag-list ul li {
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.5em;
    border: 1px solid var(--divider-color);
    border-radius: 5px;
    padding: 6px 14px;
}

/************************************/
/***  10. Our Pricing Plans css   ***/
/************************************/

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

.pricing-item {
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
}

.pricing-item-header {
    position: relative;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 10px;
    padding: 30px;
}

.pricing-item-header .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.pricing-item-header .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--bg-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.pricing-item:hover .pricing-item-header .icon-box::before {
    transform: rotate(0) scale(1);
}

.pricing-item-header .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.pricing-item-content p {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 15px;
}

.pricing-item-content h2 {
    font-size: 44px;
    color: var(--white-color);
}

.pricing-item-content h2 sub {
    font-size: 20px;
    bottom: 0;
}

.pricing-item-body {
    padding: 30px 20px 20px;
}

.pricing-item-list h3 {
    font-size: 20px;
    color: var(--white-color);
}

.pricing-item-list ul {
    list-style: none;
    border-top: 1px solid var(--dark-divider-color);
    padding: 20px 0 0;
    margin: 20px 0 0;
}

.pricing-item-list ul li {
    position: relative;
    line-height: 1.5em;
    color: var(--white-color);
    padding-left: 16px;
    margin-bottom: 15px;
}

.pricing-item-list ul li:last-child {
    margin-bottom: 0;
}

.pricing-item-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.pricing-item-btn {
    margin-top: 30px;
}

.pricing-item-btn .btn-default {
    display: block;
}

.pricing-item.highlighted-box .pricing-item-header {
    background: var(--accent-color);
}

.pricing-item.highlighted-box .pricing-item-header::before {
    content: 'Most Popular';
    font-family: var(--accent-font);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 5px;
    line-height: 1.5em;
    padding: 8px 14px;
}

.pricing-item.highlighted-box .pricing-item-header .icon-box {
    background: var(--primary-color);
}

.pricing-item.highlighted-box .pricing-item-header .icon-box img {
    filter: brightness(0) invert(1);
}

.pricing-item.highlighted-box:hover .pricing-item-header .icon-box img {
    filter: brightness(0) invert(0);
}

.pricing-item.highlighted-box .pricing-item-content p,
.pricing-item.highlighted-box .pricing-item-content h2 {
    color: var(--primary-color);
}

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

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

.pricing-benefit-list ul li {
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

/************************************/
/*** 	 11. Our Projects css 	  ***/
/************************************/

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

.project-nav {
    text-align: center;
    margin-bottom: 60px;
}

.project-nav ul {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 50px;
    padding: 0;
    margin: 0;
}

.project-nav ul li a {
    position: relative;
    font-size: 18px;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.project-nav ul li a:before {
    content: '';
    position: absolute;
    top: 9px;
    right: -28px;
    background-color: var(--divider-color);
    border-radius: 50%;
    height: 8px;
    width: 8px;
}

.project-nav ul li:last-child a:before {
    display: none;
}

.project-nav ul li a.active-btn,
.project-nav ul li a:hover {
    color: var(--accent-color);
}

.project-item {
    position: relative;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.project-item-image a,
.project-item-image figure {
    position: relative;
    display: block;
    cursor: none;
}

.project-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.00) 37.36%, var(--primary-color) 87.69%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1.128;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.project-item:hover .project-item-image img {
    transform: scale(1.08);
}

.project-item-content {
    position: absolute;
    bottom: 40px;
    right: 40px;
    left: 40px;
    z-index: 1;
}

.project-item-content h2 {
    font-size: 20px;
    color: var(--white-color);
}

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

.project-item-content p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.project-item-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-item-btn {
    opacity: 1;
    transform: scale(1);
}

.project-item-btn a {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.project-item-btn a:hover {
    background: var(--solo-blue);
}

.project-item-btn a img {
    width: 100%;
    max-width: 24px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.project-item-btn a:hover img {
    transform: rotate(0);
}

/* =============================================
   Home Projects Slider
============================================= */

.our-projects {
    position: relative;
    overflow: hidden;
}

.our-projects .section-row {
    margin-bottom: 60px;
}

.our-projects .section-btn {
    display: flex;
    justify-content: flex-end;
}

.home-projects-slider {
    position: relative;
    width: 100%;
}

.home-projects-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-projects-swiper .swiper-wrapper {
    align-items: stretch;
}

.home-projects-swiper .swiper-slide {
    height: auto;
}

.home-projects-swiper .project-item-gold {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Project image */
.home-projects-swiper .project-item-image-box-gold {
    position: relative;
    width: 100%;
}

.home-projects-swiper .project-item-image-gold {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.home-projects-swiper .project-item-image-gold a {
    display: block;
    width: 100%;
}

.home-projects-swiper .project-item-image-gold figure {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0;
    overflow: hidden;
}

.home-projects-swiper .project-item-image-gold figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-projects-swiper .project-item-gold:hover
.project-item-image-gold figure img {
    transform: scale(1.04);
}

/* Project status tag */
.home-projects-swiper .project-item-tag-gold {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
}

.home-projects-swiper .project-item-tag-gold a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 20px 8px 38px;
    color: var(--text-color);
    background: var(--white-color);
    border-radius: 50px;
    font-family: var(--accent-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-projects-swiper .project-item-tag-gold a::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--solo-blue);
    transform: translateY(-50%);
}

/* Project content */
.home-projects-swiper .project-item-body-gold {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    gap: 25px;
    padding: 28px 20px 0;
}

.home-projects-swiper .project-item-content-gold {
    flex: 1;
    min-width: 0;
}

.home-projects-swiper .project-item-content-gold h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.home-projects-swiper .project-item-content-gold h2 a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.home-projects-swiper .project-item-content-gold h2 a:hover {
    color: var(--solo-blue);
}

.home-projects-swiper .project-item-content-gold p {
    margin: 12px 0 0;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
}

/* Read more circle */
.home-projects-swiper .project-readmore-btn-gold {
    flex: 0 0 auto;
}

.home-projects-swiper .project-readmore-btn-gold a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--solo-blue);
    border-radius: 50%;
    transition: background-color 0.3s ease,
    transform 0.3s ease;
}

.home-projects-swiper .project-readmore-btn-gold a img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.home-projects-swiper .project-readmore-btn-gold a:hover {
    background: var(--solo-blue);
    transform: rotate(45deg);
}

.home-projects-swiper .project-readmore-btn-gold a:hover img {
    filter: brightness(0) invert(1);
}

/* Swiper pagination */
.home-projects-pagination {
    position: relative !important;
    inset: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100% !important;
    margin-top: 45px;
}

.home-projects-pagination .swiper-pagination-bullet {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(6, 97, 133, 0.25);
    border-radius: 50px;
    opacity: 1;
    cursor: pointer;
    transition: width 0.35s ease,
    background-color 0.35s ease,
    opacity 0.35s ease;
}

.home-projects-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--solo-blue);
}

/************************************/
/*** 		12. CTA Box css		  ***/
/************************************/

.cta-box {
    position: relative;
    background-image: url('../images/cta-box-bg-img.jpg');
    padding: 150px 0;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-box .container {
    position: relative;
    z-index: 1;
}

.cta-box-content {
    margin-right: 4.167vw;
}

.cta-box-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 40px;
}

.cta-box-item {
    width: calc(50% - 20px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cta-box-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-box-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.cta-box-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.cta-box-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.cta-box-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.cta-box-item-content {
    width: calc(100% - 80px);
}

.cta-box-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--white-color);
}

.cta-box-btn {
    margin-top: 60px;
}

.cta-box-image {
    text-align: center;
    margin-top: -150px;
}

.cta-box-image figure {
    display: block;
}

.cta-box-image figure img {
    width: 100%;
    max-width: 165px;
}

/************************************/
/*** 	   13. Our FAQs css 	  ***/
/************************************/

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

.our-faqs-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
    padding: 20px 0;
}

.faq-contact-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
}

.faq-contact-box .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faq-contact-box .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.faq-contact-box:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.faq-contact-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.faq-contact-box:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.faq-contact-box-content {
    width: calc(100% - 70px)
}

.faq-contact-box-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.faq-contact-box-content p {
    margin-bottom: 0;
}

.faq-contact-box-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.faq-contact-box-content p a:hover {
    color: var(--accent-color);
}

.faq-accordion {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 40px;
}

.faq-accordion .accordion-item {
    position: relative;
    background: var(--bg-color);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    background: transparent;
    color: var(--primary-color);
    padding: 20px 54px 20px 30px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'FontAwesome';
    position: absolute;
    right: 30px;
    top: 50%;
    font-size: 20px;
    font-weight: 400;
    transform: translateY(-50%);
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
    color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
    border-top: 1px solid var(--divider-color);
    background: transparent;
    padding: 20px 30px;
}

.faq-accordion .accordion-item .accordion-body p {
    margin: 0;
}

/************************************/
/***   14. Our Testimonials css	  ***/
/************************************/

.our-testimonials {
    background: var(--secondary-color) url('../images/testimonial-image-bg.png') no-repeat;
    background-position: bottom left;
    background-size: auto;
    padding: 100px 0;
}

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

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

.testimonial-item {
    background-color: var(--white-color);
    border-radius: 10px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
}

.testimonial-company-logo img {
    width: 100%;
    max-width: 170px;
}

.testimonial-item-content p {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

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

.testimonial-author-content h3 {
    font-size: 20px;
}

.testimonial-author-content p {
    margin: 5px 0 0 0;
}

.testimonial-slider .testimonial-pagination {
    text-align: center;
    display: flex;
    margin-top: 40px;
    padding-bottom: 2px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
    position: relative;
    height: 3px;
    width: 100%;
    background: var(--divider-color);
    border-radius: 0;
    opacity: 1;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: auto;
    right: 0;
    background: var(--accent-color);
    border-radius: 0;
    width: 0;
    height: 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    width: 100%;
    right: auto;
    left: 0;
}

/************************************/
/*** 	   15. Our Blog css 	  ***/
/************************************/

.our-blog {
    background-color: var(--secondary-color);
    padding: 100px 0 70px;
}

.post-item {
    position: relative;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

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

.post-featured-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    opacity: 40%;
    z-index: 1;
}

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

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

.post-item-tags {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 1;
}

.post-item-tags a {
    display: inline-block;
    font-family: var(--accent-font);
    font-weight: 500;
    line-height: 1.5em;
    color: var(--white-color);
    background: var(--divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    border-radius: 5px;
    padding: 5px 14px;
    transition: all 0.4s ease-in-out;
}

.post-item-tags a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.post-item-body {
    position: absolute;
    right: 40px;
    bottom: 40px;
    left: 40px;
    z-index: 1;
}

.post-content-box {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.post-item-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-item-meta ul li {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 10px;
}

.post-item-content h2 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.4em;
}

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

.post-item-btn a {
    color: var(--white-color);
}

/************************************/
/*** 	   16. Footer css   	  ***/
/************************************/

.main-footer {
    position: relative;
    background-image: url('../images/footer-bg-image.jpg');
    overflow: hidden;
}

.main-footer::before,
.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.main-footer::before {
    background: var(--primary-color);
    opacity: 85%;
}

.main-footer::after {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-scrolling-ticker {
    position: relative;
    background: var(--accent-color);
    padding: 25px 0;
    z-index: 1;
}

.scrolling-ticker-box {
    --gap: 20px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}

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

.scrolling-content span {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2em;
    color: var(--primary-color);
    text-transform: capitalize;
}

.scrolling-content span img {
    width: 100%;
    max-width: 30px;
    margin-right: 20px;
    animation: sparkelotate 3s linear infinite;
}

@keyframes sparkelotate {
    0% {
        transform: rotate(0) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(0.5);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

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

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

.footer-box {
    position: relative;
    padding: 100px 0 0;
    z-index: 1;
}

.about-footer {
    max-width: 380px;
}

.footer-logo img {
    width: 100%;
    max-width: 192px;
}

.footer-working-hours {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.footer-working-hours h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-working-hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-working-hours ul li, .footer-working-hours p {
    color: var(--white-color);
    font-weight: 500;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.footer-working-hours ul li:last-child {
    margin-bottom: 0;
}

.footer-links-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 30px;
}

.footer-links h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links p {
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links p:last-child {
    margin-bottom: 0;
}

.footer-location-info {
    max-width: calc(26% - 20px);
}

.footer-contact-links {
    max-width: calc(34% - 20px);
}

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

.footer-contact-links ul li {
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--white-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--dark-divider-color);
}

.footer-contact-links ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.footer-contact-links ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.footer-contact-links ul li a {
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
    text-decoration: none;
    transition: all .35s ease;
}

.footer-contact-links ul li a:hover {
    color: var(--white-color);
    transform: translateX(5px);
}

.footer-newsletter-form {
    max-width: calc(40% - 20px);
}

.footer-newsletter-form .form-group {
    display: flex;
    background: transparent;
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
    width: calc(100% - 40px);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 6px 15px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--white-color);
    opacity: 20%;
}

.footer-newsletter-form .form-group .newsletter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 2px;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
    background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
    max-width: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
    transform: rotate(45deg);
}

.footer-social-links {
    width: 100%;
}

.footer-social-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    line-height: normal;
    background: var(--dark-divider-color);
    backdrop-filter: blur(180px);
    -webkit-backdrop-filter: blur(180px);
    border-radius: 10px;
    padding: 10px 16px;
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
    background: var(--solo-blue);
    color: var(--white-color);
}

.footer-social-links ul li a i {
    font-size: 20px;
    line-height: normal;
    color: inherit;
}

.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px 30px;
    border-top: 1px solid var(--dark-divider-color);
    padding: 40px 0 60px;
    margin-top: 60px;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul li {
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 1.5em;
}

.footer-menu ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

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

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

.footer-agency-logo {
    display: flex;
    align-items: center;
    opacity: .86;
    transition: .25s ease;
}

.footer-agency-logo:hover {
    opacity: 1;
}

.footer-agency-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

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

.page-header {
    position: relative;
    background: url('../images/page-header-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 275px 0 170px;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.page-header-box {
    text-align: center;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 52px;
    letter-spacing: -0.02em;
    color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}

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

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    color: var(--white-color);
}

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

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

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

.approach-item {
    position: relative;
    background-color: var(--dark-divider-color);
    padding: 50px;
    border-radius: 10px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.approach-item .icon-box {
    position: absolute;
    top: -20px;
    right: -20px;
}

.approach-item .icon-box img {
    width: 100%;
    max-width: 120px;
}

.approach-item-image {
    margin-bottom: 80px;
}

.approach-item-image figure {
    display: block;
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center center;
    width: 100%;
    max-width: 120px;
}

.approach-item.box-1 .approach-item-image figure {
    mask-image: url('../images/approach-item-shape-1.svg');
    background-image: url('../images/approach-item-shape-1.svg');
}

.approach-item.box-2 .approach-item-image figure {
    mask-image: url('../images/approach-item-shape-2.svg');
    background-image: url('../images/approach-item-shape-2.svg');
}

.approach-item.box-3 .approach-item-image figure {
    mask-image: url('../images/approach-item-shape-3.svg');
    background-image: url('../images/approach-item-shape-3.svg');
}

.approach-item-image figure img {
    width: 100%;
    object-fit: cover;
}

.approach-item-content h3 {
    font-size: 20px;
    color: var(--white-color);
}

.approach-item-content p {
    color: var(--white-color);
    margin: 15px 0 0 0;
}

.approach-item-content ul {
    color: var(--white-color);
    list-style: none;
    margin: 30px 0 0 0;
    padding: 0;
}

.approach-item-content ul li {
    position: relative;
    line-height: 1.5em;
    margin-bottom: 15px;
    padding-left: 16px;
}

.approach-item-content ul li:last-child {
    margin-bottom: 0;
}

.approach-item-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

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

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

.approach-item-list ul li {
    background-color: var(--dark-divider-color);
    padding: 12px 15px;
    border-radius: 5px;
    color: var(--white-color);
}

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

.values-image-box {
    position: relative;
    height: 100%;
    padding: 30px 30px 0 0;
}

.values-image {
    height: 100%;
}

.values-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.values-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    border-radius: 10px;
}

.lets-together-circle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.lets-together-circle a {
    display: inline-block;
    border: 5px solid var(--white-color);
    border-radius: 50%;
}

.lets-together-circle a img {
    width: 100%;
    max-width: 150px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.lets-together-circle a:hover img {
    animation-play-state: paused;
}

.value-counter-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: var(--divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
}

.value-counter-box .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.value-counter-box .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.value-counter-box:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.value-counter-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.value-counter-box:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.value-counter-box-content {
    width: calc(100% - 75px);
}

.value-counter-box-content h2 {
    color: var(--white-color);
    font-size: 52px;
    line-height: 1em;
}

.value-counter-box-content p {
    color: var(--white-color);
    margin: 5px 0 0 0;
}

.our-values-content {
    margin-left: 15px;
}

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

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

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
    line-height: normal;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
    font-family: var(--accent-font);
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 100px;
    overflow: hidden;
}

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

.values-content-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    padding-top: 50px;
    margin-top: 50px;
}

.values-item-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.values-author-image figure {
    display: block;
    border-radius: 50%;
}

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

.values-author-content h3 {
    font-size: 20px;
}

.values-author-content p {
    margin: 5px 0 0 0;
}

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

.team-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

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

.team-item-image figure {
    position: relative;
    display: block;
    border-radius: 10px;
}

.team-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 42.71%, rgba(0, 0, 0, 0.80) 85.3%);
    z-index: 1;
}

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

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

.team-item-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    text-align: center;
    z-index: 1;
}

.team-item-content h3 {
    font-size: 20px;
    color: var(--white-color);
}

.team-item-content h3 a {
    color: inherit;
}

.team-item-content p {
    color: var(--white-color);
    margin: 10px 0 0 0;
}

.team-social-list {
    position: absolute;
    right: 20px;
    left: 20px;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-social-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.team-social-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li a {
    background: var(--white-color);
    border-radius: 50%;
    color: var(--accent-color);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

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

.team-social-list ul li a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/************************************/
/*** 	 18. Services Page css 	  ***/
/************************************/

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

.page-services .service-item {
    background-color: var(--secondary-color);
}

/************************************/
/*** 	19. Service Single css 	  ***/
/************************************/

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

.page-single-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.page-category-list {
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-category-list h3 {
    font-size: 20px;
    background: var(--solo-blue);
    color: var(--white-color);
    line-height: normal;
    padding: 20px 30px;
}

.page-category-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-category-list ul li {
    line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

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

.page-category-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 30px;
    transition:
        color 0.4s ease-in-out,
        font-weight 0.4s ease-in-out;
}

.page-category-list ul li a:hover,
.page-category-list ul li a.active {
    color: var(--primary-color);
}

.page-category-list ul li a.active {
    font-weight: 600;
}

.page-category-list ul li a::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 0;
    width: 18px;
    height: 18px;
    background: url('../images/arrow-primary.svg') no-repeat center;
    background-size: cover;
    transform: rotate(-45deg);
    transition: transform 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before,
.page-category-list ul li a.active::before {
    transform: rotate(0);
}

.sidebar-cta-box {
    background: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-cta-title {
    background: var(--primary-color);
    padding: 20px 40px;
}

.sidebar-cta-title h3 {
    font-size: 20px;
    line-height: normal;
    color: var(--white-color);
}

.sidebar-cta-body {
    padding: 40px;
}

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

.sidebar-cta-body-content ul li {
    display: flex;
    align-items: center;
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--primary-color);
    align-items: center;
    margin-bottom: 25px;
}

.sidebar-cta-body-content ul li:last-child {
    margin-bottom: 0;
}

.sidebar-cta-body-content ul li img {
    width: 100%;
    max-width: 30px;
    margin-right: 15px;
}

.sidebar-cta-body-content ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-body-content ul li a:hover {
    color: var(--white-color);
}

.sidebar-cta-body-image {
    margin-top: 50px;
    text-align: right;
}

.sidebar-cta-body-image figure {
    display: block;
    margin: 0 -40px -40px 0;
}

.sidebar-cta-body-image img {
    width: 100%;
    max-width: 240px;
}

.page-single-image {
    margin-bottom: 30px;
}

.page-single-image figure {
    display: block;
    border-radius: 10px;
}

.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.568;
    object-fit: cover;
    border-radius: 10px;
}

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

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

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

.service-entry h2 {
    font-size: 48px;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.service-entry h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

.service-entry ul li {
    position: relative;
    width: calc(50% - 10px);
    line-height: 1.5em;
    padding-left: 16px;
}

.service-entry ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--solo-blue);
    width: 6px;
    height: 6px;
}

.service-why-choose-box,
.service-offer-box,
.service-process-box {
    margin-top: 60px;
}

.service-why-choose-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-why-choose-item {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 15px);
    gap: 20px;
}

.service-why-choose-item .icon-box {
    position: relative;
    background: var(--solo-blue);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-why-choose-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-why-choose-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.service-why-choose-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-why-choose-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-why-choose-item .icon-box i {
    position: relative;
    z-index: 1;
    color: var(--white-color);
}

.service-why-choose-item:hover .icon-box i {
    color: var(--white-color);
}

.service-why-choose-item-content {
    width: calc(100% - 80px);
}

.service-offer-list {
    margin-top: 40px;
}

.service-offer-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

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

.service-offer-item-image figure {
    display: block;
    border-radius: 10px;
}

.service-offer-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 60.52%, rgba(0, 0, 0, 0.80) 88.79%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-offer-item-image img {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    border-radius: 10px;
}

.service-offer-item-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 1;
}

.service-offer-item-content h3,
.service-offer-item-content p {
    color: var(--white-color);
}

.service-process-box {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 40px;
}

.service-process-image-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-process-content,
.service-process-image {
    width: calc(50% - 15px);
}

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

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

.service-process-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-process-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-process-item:hover .icon-box::before {
    border-radius: 0%;
    transform: rotate(0) scale(1);
}

.service-process-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-process-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-process-item-content {
    width: calc(100% - 80px);
}

.service-process-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.service-process-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 10px;
}

/************************************/
/*** 	 20. Blog Archive css 	  ***/
/************************************/

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

.page-pagination {
    margin-top: 30px;
    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(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

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

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

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

.post-single-meta {
    margin-top: 5px;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

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

.post-image figure {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 10px;
}

.post-content {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.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(--solo-blue);
    font-weight: 600;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 600;
    line-height: 1.2em;
    margin: 0 0 0.42em;
}

.post-entry h1 {
    font-size: 52px;
}

.post-entry h2 {
    font-size: 48px;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 20px;
}

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

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

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

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

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

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.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(--accent-color) url('../images/icon-blockquote.svg');
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 10px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

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

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

.post-entry table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.post-entry table th,
.post-entry table td {
    padding: 14px 16px;
    border: 1px solid rgba(111, 84, 56, .15);
    text-align: left;
    vertical-align: top;
    color: #5f5954;
    line-height: 1.7;
}

.post-entry table th {
    background: #f8f4ee;
    color: #191716;
    font-weight: 700;
}

.post-entry table tr:nth-child(even) td {
    background: rgba(248, 244, 238, .35);
}

.tag-links {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
    background: var(--solo-blue);
    color: var(--white-color);
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover, .post-tags .tag-links a.active {
    background: var(--primary-color);
    color: var(--white-color);
}

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

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

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

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

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

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

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

/************************************/
/*** 	 22. Projects Page css 	  ***/
/************************************/

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

/************************************/
/*** 	23. Project Single css 	  ***/
/************************************/

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

.project-category-item-list {
    padding: 30px;
}

.project-category-item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

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

.project-category-item .icon-box {
    position: relative;
    background: var(--solo-blue);
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-category-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.project-category-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.project-category-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 16px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-category-item .icon-box i {
    position: relative;
    z-index: 1;
    color: var(--white-color);
}

.project-category-item:hover .icon-box i {
    color: var(--white-color);
}

.project-category-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.project-category-item-content {
    width: calc(100% - 45px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.project-category-item-content h4 {
    font-size: 16px;
    line-height: normal;
}

.project-category-item-content p {
    margin-bottom: 0;
}

.project-entry {
    margin-bottom: 60px;
}

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

.project-entry h2 {
    font-size: 48px;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.project-entry h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-entry p:last-child,
.project-entry h2:last-child,
.project-entry h3:last-child {
    margin-bottom: 0;
}

.project-features-box,
.project-process-box,
.project-issue-box {
    margin-top: 60px;
}

.project-feature-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.project-feature-item {
    width: calc(33.33% - 20px);
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
}

.project-feature-item-body .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.project-feature-item-body .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.project-feature-item:hover .project-feature-item-body .icon-box::before {
    transform: rotate(0) scale(1);
}

.project-feature-item-body .icon-box img {
    position: relative;
    width: 100%;
    max-width: 25px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-feature-item:hover .project-feature-item-body .icon-box img {
    filter: brightness(0) invert(1);
}

.project-feature-item-image {
    margin: 0 -30px -30px;
}

.project-feature-item-image figure {
    mask-image: url('../images/project-feature-image-shape.svg');
    background-image: url('../images/project-feature-image-shape.svg');
    display: block;
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.project-feature-item-image img {
    width: 100%;
    object-fit: cover;
}

.project-features-box .section-footer-text {
    margin-top: 60px;
}

.project-process-item-list {
    margin-top: 40px;
}

.project-process-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.project-process-item:last-child {
    margin-bottom: 0;
}

.project-process-item-no {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-process-item-no::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.project-process-item:hover .project-process-item-no::before {
    transform: rotate(0) scale(1);
}

.project-process-item-no h4 {
    position: relative;
    font-size: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-process-item:hover .project-process-item-no h4 {
    color: var(--white-color);
}

.project-process-item-content {
    width: calc(100% - 80px);
}

.project-issue-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    margin-top: 40px;
}

.project-issue-box-item {
    position: relative;
    width: calc(50% - 30px);
}

.project-issue-box-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.project-issue-box-item:nth-child(2n + 2):before,
.project-issue-box-item:last-child:before {
    display: none;
}

.project-issue-box-title {
    margin-bottom: 30px;
}

.project-issue-item {
    margin-bottom: 25px;
}

.project-issue-item:last-child {
    margin-bottom: 0;
}

.project-issue-item h4 {
    position: relative;
    font-size: 16px;
    line-height: normal;
    padding-left: 25px;
    margin-bottom: 10px;
}

.project-issue-item h4::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-color);
    top: 3px;
    left: 0;
}

.solo-project-gallery {
    position: relative;
    width: 100%;
    padding-bottom: 38px;
    overflow: hidden;
}

.solo-project-gallery__swiper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.solo-project-gallery__slide {
    height: auto;
}

.solo-project-gallery__media {
    position: relative;
    display: block;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #111;
}

.solo-project-gallery__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.solo-project-gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 15, 24, 0.15);
    opacity: 0;
    transform: translateZ(0);
    will-change: opacity;
    transition:
        opacity 0.3s ease,
        background-color 0.3s ease;
}

.solo-project-gallery__zoom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(12, 18, 24, 0.32);
    color: #fff;
    font-size: 24px;
    transform: scale(0.72) translateZ(0);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    will-change: transform, opacity;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease,
        visibility 0.25s ease,
        background-color 0.3s ease;
}

.solo-project-gallery__media:hover img {
    transform: scale(1.055);
    filter: brightness(0.82);
}

.solo-project-gallery__media:hover .solo-project-gallery__overlay {
    opacity: 1;
    background: rgba(8, 15, 24, 0.28);
}

.solo-project-gallery__media:hover .solo-project-gallery__zoom {
    transform: scale(1) translateZ(0);
    opacity: 1;
    visibility: visible;
}

.solo-project-gallery__zoom:hover {
    background: rgba(255, 255, 255, 0.22);
}

.solo-project-gallery__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
}

.solo-project-gallery__counter {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #1d1d1d;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.04em;
}

.solo-project-gallery__current {
    min-width: 24px;
    font-size: 30px;
    font-weight: 600;
}

.solo-project-gallery__separator,
.solo-project-gallery__total {
    color: rgba(29, 29, 29, 0.55);
}

.solo-project-gallery__navigation {
    display: flex;
    align-items: center;
    gap: 12px;
}

.solo-project-gallery__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(19, 34, 50, 0.18);
    border-radius: 50%;
    background: transparent;
    color: var(--solo-blue);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.solo-project-gallery__button:hover {
    border-color: var(--solo-blue);
    background: var(--solo-blue);
    color: var(--white-color);
}

.solo-project-gallery__button.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/************************************/
/*** 	  24. Team Page css 	  ***/
/************************************/

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

/************************************/
/*** 	25. Team Single css 	  ***/
/************************************/

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

.team-sidebar-box {
    border-radius: 10px;
    overflow: hidden;
}

.team-sidebar-image figure {
    display: block;
}

.team-sidebar-image img {
    width: 100%;
    aspect-ratio: 1 / 1.03;
    object-fit: cover;
}

.team-sidebar-body {
    background-color: var(--secondary-color);
    padding: 30px;
}

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

.team-sidebar-body ul li {
    width: 100%;
    display: inline-flex;
    gap: 10px;
    line-height: 1.4em;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.team-sidebar-body ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-sidebar-body ul li span {
    min-width: 30%;
    font-family: var(--accent-font);
    text-transform: capitalize;
    font-weight: 600;
    color: var(--primary-color);
}

.team-sidebar-footer {
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
}

.team-sidebar-footer h3 {
    font-size: 16px;
    min-width: 30%;
}

.team-sidebar-footer ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.team-sidebar-footer ul li a:hover {
    background-color: var(--primary-color);
}

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

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

.team-member-about,
.team-experience-box,
.team-member-info-box {
    margin-bottom: 60px;
}

.team-member-about .section-title {
    margin-bottom: 0;
}

.team-experience-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-experience-item {
    width: calc(50% - 15px);
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.team-experience-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-experience-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.team-experience-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.team-experience-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 20px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-experience-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.team-experience-item-content {
    width: calc(100% - 55px);
}

.team-experience-item-content h3 {
    font-size: 20px;
}

.team-member-info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 50px;
}

.team-skills-box {
    width: calc(48% - 25px);
}

.team-values-info {
    width: calc(52% - 25px);
}

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

.team-values-info-list ul li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 1.5em;
    margin-bottom: 30px;
    padding-left: 25px;
}

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

.team-values-info-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.team-values-info-list ul li span {
    font-family: var(--accent-font);
    width: 36%;
    font-weight: 600;
    color: var(--primary-color);
}

.team-contact-form.contact-us-form {
    margin: 0;
}

/************************************/
/*** 	 26. Pricing Page css 	  ***/
/************************************/

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

.page-pricing .pricing-item {
    background-color: var(--secondary-color);
}

.page-pricing .pricing-item-header {
    background-color: var(--white-color);
}

.page-pricing .pricing-item-header .icon-box::before {
    background-color: var(--secondary-color);
}

.page-pricing .pricing-item-header p,
.page-pricing .pricing-item-header h2 sub,
.page-pricing .pricing-item-list ul li,
.page-pricing .pricing-benefit-list ul li {
    color: var(--text-color);
}

.page-pricing .pricing-item-header h2,
.page-pricing .pricing-item-list h3,
.page-pricing .pricing-item.highlighted-box .pricing-item-header h2 sub {
    color: var(--primary-color);
}

.page-pricing .pricing-item-list ul {
    border-color: var(--divider-color);
}

/************************************/
/***  27. Testimonials Page css   ***/
/************************************/

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

.page-testimonials .testimonial-item {
    background-color: var(--secondary-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/*** 	 28. 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 {
    display: block;
    border-radius: 12px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.81;
    object-fit: cover;
    border-radius: 12px;
}

/************************************/
/*** 	29. Video Gallery css 	  ***/
/************************************/

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

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

.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: 10px;
    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%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-color);
    color: var(--primary-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 {
    width: 100%;
    aspect-ratio: 1 / 0.81;
    object-fit: cover;
    border-radius: 10px;
}

/************************************/
/*** 	 30. FAQs Page css 		  ***/
/************************************/

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

.page-faqs-catagery .page-single-faqs {
    margin-bottom: 60px;
}

.page-faqs-catagery .page-single-faqs:last-child {
    margin-bottom: 0px;
}

/************************************/
/***   31. Contact Us Page css 	  ***/
/************************************/

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

.contact-info-list {
    max-width: 510px;
}

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

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

.contact-info-item .icon-box {
    position: relative;
    background: var(--solo-blue);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
}

.contact-info-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.contact-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item-content {
    width: calc(100% - 80px);
}

.contact-info-item-content h3 {
    font-size: 20px;
}

.contact-info-item-content p {
    margin: 10px 0 0;
}

.contact-info-item-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.contact-info-item-content p a:hover {
    color: var(--solo-blue);
}

.contact-us-form {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 3.125vw;
    margin-left: 30px;
}


.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125em;
    color: var(--text-color);
    background: var(--white-color);
    border: none;
    border-radius: 10px;
    padding: 21px 20px;
    box-shadow: none;
    outline: none;
}

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

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

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

.form-consent-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 26px;
}

.form-check-custom {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    line-height: 1.55;
    cursor: pointer;
}

.form-check-custom input {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 2px 0 0;
    accent-color: var(--solo-blue);
    cursor: pointer;
}

.form-check-custom span {
    display: block;
}

.form-check-custom a {
    color: var(--solo-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.form-check-custom a:hover {
    text-decoration: underline;
}

.solo-upload-area {
    position: relative;
}

.solo-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 150px;
    padding: 24px;
    border: 2px dashed #d9d9d9;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    text-align: center;
    transition: all .2s ease;
}

.solo-upload-label:hover {
    border-color: #111;
    background: #f5f5f5;
}

.solo-upload-icon {
    font-size: 32px;
}

.solo-upload-label strong {
    font-size: 18px;
    font-weight: 600;
}

.solo-upload-label small {
    font-size: 14px;
    color: #777;
}

.solo-upload-input {
    display: none;
}

/************************************/
/***   32. 404 Error Page css	  ***/
/************************************/

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

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

.error-page-image img {
    width: 100%;
    max-width: 830px;
}

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

.error-page-content .section-title {
    margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1440px) {

    .container {
        max-width: 1300px;
    }

    .hero-info-content-box {
        padding: 10px;
    }

    .hero-info-item.box-3 {
        padding: 30px;
    }

    .about-us-body {
        padding: 25px 30px 25px 20px;
    }

    .about-us-footer {
        gap: 20px;
    }

    .about-us-footer-content {
        width: calc(56% - 10px);
    }

    .about-footer-content-list ul li {
        margin-bottom: 15px;
    }

    .about-us-video-box {
        width: calc(44% - 10px);
    }

    .service-item-header {
        padding: 5px;
    }

    .what-we-do-item {
        padding: 20px;
    }

    .what-we-do-item .icon-box {
        margin-bottom: 30px;
    }

    .our-story {
        padding: 150px 0;
    }

    .watch-video-circle {
        margin-top: 150px;
    }

    .feature-item {
        padding: 30px;
    }

    .feature-item-info-content h3 {
        font-size: 26px;
    }

    .feature-item-image figure {
        margin: 0 -30px -30px -100px;
    }

    .pricing-item-header {
        padding: 20px;
    }

    .pricing-item-body {
        padding: 30px 10px 10px;
    }

    .cta-box {
        padding: 100px 0;
    }

    .cta-box-image {
        margin-top: -100px;
    }

    .cta-box-image figure img {
        max-width: 150px;
    }

    .faq-accordion {
        padding: 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 30px;
    }

    .testimonial-item {
        min-height: 470px;
        padding: 30px;
    }

    .testimonial-item-content p {
        font-size: 18px;
    }

    .post-item-tags {
        top: 30px;
        left: 30px;
    }

    .post-item-body {
        right: 30px;
        bottom: 30px;
        left: 30px;
    }

    .approach-item {
        padding: 30px;
    }

    .approach-item .icon-box img {
        max-width: 100px;
    }

    .approach-item-image {
        margin-bottom: 60px;
    }

    .value-counter-box {
        padding: 20px;
    }

    .skills-progress-bar {
        margin-bottom: 30px;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 15px;
    }

    .values-content-footer {
        padding-top: 40px;
        margin-top: 40px;
    }

    .page-category-list h3,
    .page-category-list ul {
        padding: 20px;
    }

    .sidebar-cta-title {
        padding: 20px;
    }

    .sidebar-cta-body {
        padding: 30px;
    }

    .sidebar-cta-body-image figure {
        margin: 0 -30px -30px 0;
    }

    .post-content {
        max-width: 1100px;
    }

    .project-category-item-list {
        padding: 20px;
    }

    .project-feature-item {
        padding: 20px;
    }

    .project-feature-item-image {
        margin: 0 -20px -20px;
    }

    .team-experience-item-list {
        gap: 20px;
    }

    .team-experience-item {
        width: calc(50% - 10px);
        padding: 12px;
        gap: 10px;
    }

    .team-experience-item-content {
        width: calc(100% - 50px);
    }

    .team-skills-box,
    .team-values-info {
        width: 100%;
    }

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

@media only screen and (max-width: 1199px) {
    .home-projects-swiper .project-item-image-gold figure {
        height: 420px;
    }

    .solo-project-gallery__media {
        height: 440px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-actions {
        margin-left: 18px;
        gap: 14px;
    }

    .header-phone-content small {
        display: none;
    }

    .header-phone-content strong {
        font-size: 12px;
    }

    .header-language-name {
        display: none;
    }

    .header-language-button {
        padding-right: 7px;
    }

    .header-actions-divider {
        height: 28px;
    }
}

@media only screen and (max-width: 1024px) {

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

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

    .hero-info-item.box-1 {
        width: 100%;
    }

    .about-us-image-box {
        height: auto;
        margin: 0 0 30px;
    }

    .about-us-image,
    .about-us-image figure,
    .about-us-image img {
        height: auto;
    }

    .about-us-image-box-1 .about-us-image img {
        aspect-ratio: 1 / 1.02;
    }

    .about-us-image-box-2 .about-us-image img {
        aspect-ratio: 1 / 1.05;
    }

    .about-video-image img {
        aspect-ratio: 1 / 0.5;
    }

    .what-we-do-content {
        margin-bottom: 30px;
    }

    .what-we-do-image {
        max-width: 540px;
        margin: 0 auto;
    }

    .watch-video-circle {
        margin-top: 100px;
    }

    .feature-item {
        gap: 30px;
    }

    .feature-item-shape-image figure {
        width: 170px;
        height: 85px;
    }

    .our-faqs-content {
        height: auto;
        padding: 0;
        margin-bottom: 30px;
    }

    .our-testimonials {
        background-size: 400px auto;
    }

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

    .testimonial-item {
        min-height: 400px;
    }

    .testimonial-author-content {
        margin-top: 20px;
        padding-top: 20px;
    }

    .about-footer {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .footer-working-hours {
        margin-top: 20px;
        padding-top: 20px;
    }

    .footer-links-box {
        gap: 30px;
    }

    .values-image-box {
        margin: 0 0 30px 0;
        height: auto;
    }

    .values-image {
        height: auto;
    }

    .values-image img {
        height: auto;
        aspect-ratio: 1 / 0.7;
    }

    .our-values-content {
        margin-left: 0;
    }

    .team-item-image img {
        aspect-ratio: 1 / 1.15;
    }

    .team-item-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .page-single-sidebar {
        margin: 0;
    }

    .page-category-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .sidebar-cta-body {
        padding: 20px;
    }

    .sidebar-cta-body-content ul li {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .sidebar-cta-body-content ul li img {
        max-width: 24px;
        margin-right: 10px;
    }

    .sidebar-cta-body-image figure {
        margin: 0 -20px -20px 0;
    }

    .page-single-image {
        margin-bottom: 20px;
    }

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

    .service-why-choose-box,
    .service-offer-box,
    .service-process-box {
        margin-top: 40px;
    }

    .service-why-choose-item-list {
        margin-top: 30px;
        gap: 30px 20px;
    }

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

    .service-why-choose-item .icon-box {
        width: 45px;
        height: 45px;
    }

    .service-why-choose-item .icon-box img {
        max-width: 24px;
    }

    .service-why-choose-item-content {
        width: calc(100% - 60px);
    }

    .service-offer-item-list {
        margin-top: 30px;
    }

    .service-offer-item-image img {
        aspect-ratio: 1 / 0.95;
    }

    .service-offer-item-content {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .service-process-box {
        padding: 30px;
    }

    .service-process-image-content {
        margin-top: 30px;
    }

    .service-process-content,
    .service-process-image {
        width: 100%;
    }

    .service-process-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .project-category-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .project-category-item-content h4 {
        width: 100%;
    }

    .project-entry {
        margin-bottom: 40px;
    }

    .project-features-box,
    .project-process-box,
    .project-issue-box {
        margin-top: 40px;
    }

    .project-feature-item-list {
        margin-top: 30px;
    }

    .project-feature-item {
        width: calc(50% - 15px);
        gap: 30px;
    }

    .project-feature-item-body .icon-box {
        margin-bottom: 20px;
    }

    .project-features-box .section-footer-text {
        margin-top: 30px;
    }

    .project-process-item-list {
        margin-top: 30px;
    }

    .project-process-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .project-issue-boxes {
        margin-top: 30px;
    }

    .team-sidebar-body,
    .team-sidebar-footer {
        padding: 20px;
    }

    .team-sidebar-body ul li span {
        width: 34%;
    }

    .team-member-about, .team-experience-box, .team-member-info-box {
        margin-bottom: 60px;
    }

    .team-member-about,
    .team-experience-box,
    .team-member-info-box {
        margin-bottom: 40px;
    }

    .team-member-info-box {
        gap: 40px;
    }

    .contact-us-content {
        margin-bottom: 30px;
    }

    .contact-info-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .contact-us-form {
        margin-left: 0;
        padding: 35px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 550px;
    }
}

@media only screen and (max-width: 991px) {

    .btn-default {
        font-size: 16px;
        padding: 15px 51px 15px 16px;
    }

    .btn-default::before {
        width: 36px;
        height: 36px;
        right: 5px;
        background-size: 18px auto;
    }

    header.main-header {
        top: 0;
    }

    header.main-header .header-sticky.active {
        border-radius: 0;
    }

    .navbar {
        padding: 20px 0;
    }

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

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .header-btn {
        display: none;
    }

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

    .section-content-btn .section-btn {
        margin-top: 20px;
    }

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

    .section-title h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .hero {
        padding: 140px 0 150px;
    }

    .year-experience-circle img {
        max-width: 100px;
    }

    .hero-info-box {
        margin-top: -100px;
    }

    .hero-info-item.box-3 {
        padding: 20px;
    }

    .hero-info-header .icon-box {
        width: 50px;
        height: 50px;
    }

    .hero-info-header .icon-box img {
        max-width: 24px;
    }

    .hero-info-counter-box h2 {
        font-size: 40px;
    }

    .hero-info-bg-icon img {
        max-width: 80px;
    }

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

    .about-body-item {
        gap: 15px;
    }

    .about-body-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .about-body-item .icon-box img {
        max-width: 24px;
    }

    .about-body-item-content {
        width: calc(100% - 65px);
    }

    .about-us-footer {
        margin-top: 30px;
    }

    .about-footer-content-list ul li {
        margin-bottom: 10px;
    }

    .our-services {
        background-size: 250px auto;
        padding: 50px 0;
    }

    .service-item {
        gap: 15px;
    }

    .service-benefit-box {
        margin-top: 10px;
    }

    .service-benefit-list ul {
        gap: 15px;
    }

    .service-benefit-list ul li {
        padding: 6px 14px 6px 30px;
    }

    .service-benefit-list ul li::before {
        left: 14px;
    }

    .section-footer-text {
        margin-top: 10px;
    }

    .section-footer-text ul li {
        font-size: 18px;
    }

    .service-benefit-box .section-footer-text {
        margin-top: 20px;
    }

    .what-we-do {
        padding: 50px 0;
    }

    .what-we-do-item {
        padding: 20px;
    }

    .what-we-do-item .icon-box {
        height: 50px;
        width: 50px;
    }

    .what-we-do-item .icon-box img {
        max-width: 24px;
    }

    .what-we-do-btn {
        margin-top: 30px;
    }

    .what-we-do .section-footer-text {
        margin-top: 40px;
    }

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

    .watch-video-circle a img {
        max-width: 120px;
    }

    .our-features {
        padding: 50px 0;
    }

    .our-features .section-title h2 .feature-title-img-1 {
        width: 30px;
        height: 30px;
    }

    .our-features .section-title h2 .feature-title-img-1 img {
        max-width: 14px;
    }

    .our-features .section-title h2 .feature-title-img-2 img {
        max-width: 30px;
    }

    .our-features .section-title h2 .feature-title-img-3 img {
        max-width: 30px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item-list ul li {
        margin-bottom: 10px;
    }

    .feature-item-btn {
        margin-top: 30px;
    }

    .feature-item-image figure {
        margin: 0 -20px -20px -100px;
    }

    .feature-item-content h2 {
        font-size: 42px;
    }

    .our-pricing {
        padding: 50px 0;
    }

    .pricing-item,
    .pricing-item-header {
        padding: 15px;
    }

    .pricing-item-header .icon-box {
        height: 50px;
        width: 50px;
        margin-bottom: 20px;
    }

    .pricing-item-header .icon-box img {
        max-width: 24px;
    }

    .pricing-item-content p {
        margin-bottom: 10px;
    }

    .pricing-item-content h2 {
        font-size: 36px;
    }

    .pricing-item-content h2 sub {
        font-size: 18px;
    }

    .pricing-item-body {
        padding: 30px 5px 5px;
    }

    .pricing-item-list ul li {
        margin-bottom: 10px;
    }

    .pricing-item.highlighted-box .pricing-item-header::before {
        top: 15px;
        right: 15px;
        font-size: 14px;
        padding: 6px 12px;
    }

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

    .pricing-benefit-list ul {
        gap: 15px 30px;
    }

    .our-projects {
        padding: 50px 0;
    }

    .project-nav {
        margin-bottom: 40px;
    }

    .project-nav ul {
        gap: 10px 32px;
    }

    .project-nav ul li a:before {
        right: -20px;
    }

    .project-item-content {
        bottom: 30px;
        right: 30px;
        left: 30px;
    }

    .project-item-btn {
        top: 30px;
        right: 30px;
    }

    .project-item-btn a {
        width: 50px;
        height: 50px;
    }

    .project-item-btn a img {
        max-width: 20px;
    }

    .cta-box {
        padding: 50px 0;
    }

    .cta-box-content {
        margin-right: 0;
    }

    .cta-box-items-list {
        padding-top: 30px;
    }

    .cta-box-item .icon-box {
        width: 50px;
        height: 50px;
    }

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

    .cta-box-item-content {
        width: calc(100% - 70px);
    }

    .cta-box-btn {
        margin-top: 40px;
    }

    .cta-box-image {
        margin-top: -50px;
    }

    .cta-box-image figure img {
        max-width: 100px;
    }

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

    .faq-accordion {
        padding: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        padding: 15px 44px 15px 20px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 20px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 15px 20px;
    }

    .our-testimonials {
        padding: 50px 0;
    }

    .our-testimonial-content {
        margin-bottom: 30px;
    }

    .testimonial-item {
        padding: 30px;
    }

    .testimonial-company-logo img {
        width: 100%;
        max-width: 150px;
    }

    .testimonial-item-content p {
        font-size: 16px;
    }

    .testimonial-slider .testimonial-pagination {
        margin-top: 30px;
    }

    .our-blog {
        padding: 50px 0 20px;
    }

    .post-item-tags {
        top: 20px;
        left: 20px;
    }

    .post-item-body {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .post-content-box {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-scrolling-ticker {
        padding: 15px 0;
    }

    .scrolling-content span {
        font-size: 22px;
    }

    .footer-box {
        padding: 50px 0 0;
    }

    .footer-location-info,
    .footer-contact-links {
        max-width: 100%;
        width: calc(50% - 15px);
    }

    .footer-newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .footer-social-links ul li a {
        padding: 8px 12px;
    }

    .footer-social-links ul li a i {
        font-size: 18px;
    }

    .footer-copyright {
        padding: 30px 0;
        margin-top: 30px;
    }

    .footer-menu ul {
        gap: 10px 25px;
    }

    .page-header {
        padding: 170px 0 80px;
    }

    .page-header-box h1 {
        font-size: 40px;
    }

    .our-approach {
        padding: 50px 0;
    }

    .approach-item {
        padding: 20px;
    }

    .approach-item .icon-box {
        top: -10px;
        right: -10px;
    }

    .approach-item .icon-box img {
        max-width: 70px;
    }

    .approach-item-image {
        margin-bottom: 30px;
    }

    .approach-item-content p {
        margin-top: 10px;
    }

    .approach-item-content ul {
        margin-top: 20px;
    }

    .approach-item-content ul li {
        margin-bottom: 10px;
    }

    .approach-item-list {
        padding-top: 30px;
        margin-top: 30px;
    }

    .our-values {
        padding: 50px 0;
    }

    .lets-together-circle img {
        max-width: 120px;
    }

    .value-counter-box {
        padding: 20px;
    }

    .value-counter-box .icon-box {
        width: 50px;
        height: 50px;
    }

    .value-counter-box .icon-box img {
        max-width: 24px;
    }

    .value-counter-box-content {
        width: calc(100% - 65px);
    }

    .value-counter-box-content h2 {
        font-size: 40px;
        margin-bottom: 5px;
    }

    .our-team {
        padding: 50px 0;
    }

    .page-services {
        padding: 50px 0 20px;
    }

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

    .page-single-sidebar {
        position: initial;
        margin-bottom: 30px;
    }

    .page-category-list {
        margin-bottom: 30px;
    }

    .page-category-list h3,
    .sidebar-cta-title {
        padding: 15px 20px;
    }

    .sidebar-cta-body-image {
        margin-top: 20px;
    }

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

    .service-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-process-item {
        gap: 15px;
    }

    .service-process-item .icon-box {
        width: 50px;
        height: 50px;
    }

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

    .service-process-item-content {
        width: calc(100% - 65px);
    }

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

    .page-pagination {
        margin-top: 10px;
    }

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

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry h2 {
        font-size: 36px;
    }

    .post-entry p {
        margin-bottom: 15px;
    }

    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

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

    .page-projects {
        padding: 50px 0 20px;
    }

    .page-project-single {
        padding: 50px 0;
    }

    .project-entry h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-process-item {
        gap: 15px;
    }

    .project-process-item-no {
        width: 50px;
        height: 50px;
    }

    .project-process-item-no h4 {
        font-size: 24px;
    }

    .project-process-item-content {
        width: calc(100% - 65px);
    }

    .project-issue-box-title {
        margin-bottom: 20px;
    }

    .project-issue-item {
        margin-bottom: 15px;
    }

    .page-team {
        padding: 50px 0 20px;
    }

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

    .team-sidebar-body ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .team-sidebar-footer {
        padding: 15px 20px;
    }

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

    .page-testimonials {
        padding: 50px 0 20px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .page-faqs-catagery .page-single-faqs {
        margin-bottom: 40px;
    }

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

    .contact-info-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .contact-info-item .icon-box img {
        max-width: 24px;
    }

    .contact-info-item-content {
        width: calc(100% - 70px);
    }

    .contact-form .form-control {
        padding: 15px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 450px;
    }

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

    .error-page-image {
        margin-bottom: 20px;
    }

    .our-projects .section-row {
        margin-bottom: 45px;
    }

    .our-projects .section-btn {
        justify-content: flex-start;
        margin-top: 25px;
    }

    .home-projects-swiper .project-item-image-gold figure {
        height: 360px;
    }

    .home-projects-swiper .project-item-tag-gold {
        top: 20px;
        left: 20px;
    }

    .home-projects-pagination {
        margin-top: 35px;
    }

    .header-actions {
        display: none;
    }

    .mobile-language-item {
        display: block;
        width: 100%;
        margin-top: 0;
        padding-bottom: 14px;
        border-top: 0 !important;
    }

    .mobile-language-box {
        width: 100%;
    }

    .mobile-language-label {
        display: block;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.58);
        font-size: 10px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .mobile-language-switch {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        width: 100%;
        padding: 5px;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 12px;
        background: rgba(2, 24, 69, 0.18);
    }

    .mobile-language-option {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-height: 44px;
        padding: 8px 10px !important;
        border: 0 !important;
        border-radius: 8px;
        background: transparent;
        color: rgba(255, 255, 255, 0.6) !important;
        text-decoration: none;
        transition: color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
    }

    .mobile-language-option span {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.05em;
    }

    .mobile-language-option small {
        color: inherit;
        font-size: 11px;
        font-weight: 500;
    }

    .mobile-language-option.active {
        color: var(--white-color) !important;
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 6px 18px rgba(0, 18, 58, 0.14);
    }

    .mobile-language-option:not(.active):hover {
        color: var(--white-color) !important;
        background: rgba(255, 255, 255, 0.07);
    }

    .mobile-language-item::after,
    .mobile-language-item > a::after,
    .mobile-language-item .submenu-toggle {
        display: none !important;
    }

    /* ==================================================
       MOBILE CATALOG
    ================================================== */
    .responsive-menu .mobile-catalog-item {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        border-bottom: 0;
    }

    .responsive-menu .mobile-catalog-item > .mobile-catalog-link {
        position: relative;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
        min-height: 62px;
        margin: 0;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0;
        background: transparent !important;
        color: var(--white-color) !important;
        text-decoration: none;
        box-shadow: none !important;
    }

    .responsive-menu .mobile-catalog-left {
        position: static !important;
        display: flex !important;
        align-items: center !important;
        flex: 1;
        gap: 12px;
        min-width: 0;
        margin: 0;
        padding: 0;
        transform: none !important;
    }

    .responsive-menu .mobile-catalog-icon {
        position: static !important;
        width: 34px;
        height: 34px;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 34px;
        margin: 0;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
        color: var(--white-color);
        transform: none !important;
    }

    .responsive-menu .mobile-catalog-icon svg {
        display: block;
        width: 16px;
        height: 16px;
        margin: 0;
    }

    .responsive-menu .mobile-catalog-text {
        position: static !important;
        display: block !important;
        overflow: hidden;
        margin: 0;
        padding: 0;
        color: var(--white-color);
        font-size: 15px;
        font-weight: 600;
        line-height: 1.2;
        white-space: nowrap;
        text-overflow: ellipsis;
        transform: none !important;
    }

    .responsive-menu .mobile-catalog-arrow {
        position: static !important;
        inset: auto !important;
        width: 20px;
        height: 20px;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 20px;
        margin: 0 0 0 16px !important;
        padding: 0 !important;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1;
        transform: none !important;
    }

    .responsive-menu .mobile-catalog-arrow svg {
        display: block;
        width: 17px;
        height: 17px;
        margin: 0;
    }

    .responsive-menu .mobile-catalog-link:hover {
        color: var(--white-color) !important;
        background: transparent !important;
    }

    .responsive-menu .mobile-catalog-link:hover .mobile-catalog-arrow {
        transform: translateX(3px) !important;
    }

    .solo-project-gallery__media {
        height: 390px;
    }
}

@media (min-width: 768px) {
    .mobile-slide-link {
        pointer-events: none;
    }
}

@media only screen and (max-width: 767px) {

    .home-slider-btn {
        display: none;
    }

    .mobile-slide-link {
        pointer-events: auto;
    }

    .home-slider-nav {
        right: 18px;
        bottom: 16px;
        gap: 8px;
    }

    .home-slider-nav button {
        width: 38px;
        height: 38px;
    }

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

    .section-title h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-content-body {
        gap: 30px;
    }

    .video-play-button h3 {
        font-size: 16px;
    }

    .hero .year-experience-circle {
        display: none;
    }

    .hero-info-list {
        gap: 20px;
    }

    .hero-info-item {
        width: 100%;
    }

    .hero-info-item-content h3 {
        font-size: 18px;
    }

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

    .hero-info-counter-box h3 {
        font-size: 18px;
    }

    .hero-info-counter-box h2 {
        font-size: 28px;
    }

    .hero-info-bg-icon {
        bottom: -10px;
        right: -10px;
    }

    .hero-info-bg-icon img {
        max-width: 60px;
    }

    .about-us-image-box-1 .about-us-image img {
        aspect-ratio: 1 / 1.47;
    }

    .about-us-image-box-2 .about-us-image {
        margin-top: 40px;
        margin-left: -110px;
    }

    .about-us-body {
        gap: 20px;
        padding: 20px 15px;
        border-width: 5px;
    }

    .about-body-item {
        width: 100%;
    }

    .about-body-item-content h3 {
        font-size: 18px;
    }

    .about-body-item-content p {
        margin: 5px 0 0;
    }

    .about-us-footer-content {
        width: 100%;
    }

    .about-us-video-box {
        width: 100%;
    }

    .about-video-image img {
        aspect-ratio: 1 / 0.6;
    }

    .service-item-title h2,
    .service-item-title h3 {
        font-size: 18px;
    }

    .service-benefit-list ul li {
        padding: 4px 10px 4px 26px;
    }

    .service-benefit-list ul li::before {
        left: 10px;
    }

    .section-footer-text ul li {
        font-size: 16px;
    }

    .what-we-do-item-list {
        gap: 20px;
    }

    .what-we-do-item {
        width: 100%;
    }

    .our-story {
        padding: 50px 0;
    }

    .watch-video-circle {
        margin-top: 50px;
    }

    .watch-video-circle a img {
        max-width: 100px;
    }

    .feature-item-content h3 {
        font-size: 18px;
    }

    .feature-item-content h2 {
        font-size: 30px;
    }

    .feature-item-info-content p {
        margin-bottom: 5px;
    }

    .feature-item-info-content h3 {
        font-size: 20px;
    }

    .feature-item-btn {
        margin-top: 20px;
    }

    .feature-item-image figure {
        margin: 50px -20px -20px -50px;
    }

    .feature-item-image img {
        max-width: 200px;
    }

    .feature-item-tag-list ul li {
        padding: 3px 10px;
    }

    .pricing-item-content p,
    .pricing-item-list h3 {
        font-size: 18px;
    }

    .pricing-item-content h2 {
        font-size: 28px;
    }

    .pricing-item-content h2 sub {
        font-size: 16px;
    }

    .pricing-benefit-list ul {
        gap: 10px;
    }

    .pricing-benefit-list ul li {
        font-size: 14px;
    }

    .pricing-benefit-list ul li img {
        max-width: 16px;
        margin-right: 5px;
    }

    .project-nav {
        margin-bottom: 30px;
    }

    .project-nav ul {
        gap: 10px 20px;
    }

    .project-nav ul li a {
        font-size: 14px;
    }

    .project-nav ul li a:before {
        width: 6px;
        height: 6px;
        right: -14px;
        top: 7px;
    }

    .project-item-content {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .project-item-btn {
        top: 20px;
        right: 20px;
    }

    .cta-box-items-list {
        gap: 20px;
    }

    .cta-box-item {
        width: 100%;
    }

    .cta-box-btn {
        margin-top: 30px;
    }

    .cta-box-image {
        display: none;
    }

    .faq-accordion {
        padding: 20px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 12px 36px 12px 12px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        font-size: 18px;
        right: 10px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 12px;
    }

    .testimonial-item {
        min-height: 300px;
        padding: 20px;
    }

    .testimonial-author-content h3 {
        font-size: 18px;
    }

    .post-item-content h2 {
        font-size: 18px;
    }

    .scrolling-ticker-box {
        --gap: 15px;
    }

    .scrolling-content span {
        font-size: 20px;
    }

    .scrolling-content span img {
        max-width: 24px;
        margin-right: 15px;
    }

    .footer-working-hours h3,
    .footer-links h3,
    .footer-links p {
        margin-bottom: 15px;
    }

    .footer-working-hours ul li {
        margin-bottom: 10px;
    }

    .footer-location-info,
    .footer-contact-links {
        width: 100%;
    }

    .footer-contact-links ul li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .footer-social-links ul {
        gap: 15px;
    }

    .footer-social-links ul li a {
        font-size: 14px;
        gap: 6px;
        padding: 8px 10px;
    }

    .footer-social-links ul li a i {
        font-size: 16px;
    }

    .footer-copyright {
        justify-content: center;
        padding: 15px 0;
    }

    .footer-menu ul {
        gap: 10px 15px;
    }

    .page-header-box h1 {
        font-size: 28px;
    }

    .approach-item-list ul li {
        padding: 10px 12px;
    }

    .values-image-box {
        padding: 20px 20px 0 0;
    }

    .values-image img {
        aspect-ratio: 1 / 1.15;
    }

    .lets-together-circle a img {
        max-width: 90px;
    }

    .value-counter-box {
        padding: 15px;
    }

    .value-counter-box-content h2 {
        font-size: 28px;
    }

    .value-counter-box-content p {
        font-size: 14px;
    }

    .skills-progress-bar {
        margin-bottom: 20px;
    }

    .skills-progress-bar .skill-data .skill-title,
    .skills-progress-bar .skill-data .skill-no {
        font-size: 18px;
    }

    .values-content-footer {
        gap: 20px;
        padding-top: 30px;
        margin-top: 30px;
    }

    .values-item-author {
        gap: 10px;
    }

    .values-author-content h3 {
        font-size: 18px;
    }

    .sidebar-cta-body-content ul li {
        font-size: 16px;
    }

    .sidebar-cta-body-content ul li img {
        max-width: 20px;
    }

    .sidebar-cta-body-image img {
        max-width: 200px;
    }

    .page-single-image img {
        aspect-ratio: 1 / 0.65;
    }

    .service-entry h2 {
        font-size: 26px;
    }

    .service-entry h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-entry ul {
        gap: 10px;
    }

    .service-entry ul li {
        width: 100%;
    }

    .service-why-choose-item {
        width: 100%;
    }

    .service-offer-item {
        width: 100%;
    }

    .service-process-image-content {
        gap: 20px;
    }

    .service-process-box {
        padding: 20px 15px;
    }

    .service-process-item .icon-box {
        width: 45px;
        height: 45px;
    }

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

    .service-process-item-content {
        width: calc(100% - 60px);
    }

    .post-single-meta ol li,
    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry blockquote p {
        font-size: 16px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .post-entry table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .tag-links {
        font-size: 18px;
    }

    .project-entry h2 {
        font-size: 28px;
    }

    .project-entry h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .project-feature-item {
        width: 100%;
    }

    .project-process-item {
        padding: 15px;
    }

    .project-issue-box-item {
        width: 100%;
    }

    .project-issue-box-item::before {
        display: none;
    }

    .project-issue-item h4 {
        margin-bottom: 5px;
    }

    .team-experience-item {
        width: 100%;
    }

    .team-experience-item-content h3 {
        font-size: 18px;
    }

    .team-values-info-list ul li {
        gap: 5px;
    }

    .team-values-info-list ul li span {
        width: 100%;
    }

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

    .contact-us-form {
        padding: 20px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .mobile-break {
        display: block;
        text-align: center;
    }

    .our-projects .section-row {
        margin-bottom: 35px;
    }

    .home-projects-swiper {
        overflow: visible;
    }

    .home-projects-swiper .project-item-image-gold figure {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .home-projects-swiper .project-item-tag-gold {
        top: 15px;
        left: 15px;
    }

    .home-projects-swiper .project-item-tag-gold a {
        min-height: 34px;
        padding: 7px 16px 7px 32px;
        font-size: 11px;
        letter-spacing: 0.7px;
    }

    .home-projects-swiper .project-item-tag-gold a::before {
        left: 17px;
        width: 5px;
        height: 5px;
    }

    .home-projects-swiper .project-item-body-gold {
        gap: 15px;
        padding: 22px 5px 0;
    }

    .home-projects-swiper .project-item-content-gold h2 {
        font-size: 18px;
    }

    .home-projects-swiper .project-item-content-gold p {
        font-size: 14px;
    }

    .home-projects-swiper .project-readmore-btn-gold a {
        width: 40px;
        height: 40px;
    }

    .home-projects-pagination {
        margin-top: 30px;
    }

    .solo-project-gallery {
        padding-bottom: 20px;
    }

    .solo-project-gallery__media {
        height: 380px;
    }

    .solo-project-gallery__footer {
        margin-top: 22px;
    }

    .solo-project-gallery__button {
        width: 48px;
        height: 48px;
    }

    .solo-project-gallery__current {
        font-size: 26px;
    }
}

/************************************/
/***   34. Home - Version 2 css	  ***/
/************************************/

header.main-header.header-gold .header-sticky {
    background: transparent;
    backdrop-filter: initial;
    -webkit-backdrop-filter: initial;
    border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header.header-gold .header-sticky.active {
    background: var(--primary-color);
}

.hero-gold {
    background: var(--primary-color) url('../images/hero-gold-bg-shape.png') no-repeat;
    background-position: bottom center;
    background-size: auto;
    padding: 205px 0 100px;
}

.hero-content-gold {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-sub-heading-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-sub-heading-gold .satisfy-client-image {
    border-color: var(--white-color);
}

.hero-sub-heading-gold .satisfy-client-image figure img {
    max-width: 28px;
}

.hero-sub-heading-content-gold p {
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.hero-content-gold .section-title h1 {
    font-size: 70px;
}

.hero-content-gold .section-title p {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-body-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.hero-image-box-gold {
    position: relative;
    margin-top: 100px;
}

.hero-image-gold figure {
    display: block;
    border-radius: 10px;
}

.hero-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 0.4764;
    object-fit: cover;
    border-radius: 10px;
}

.hero-client-box-gold {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 410px;
    background: var(--primary-color);
    border-radius: 10px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px;
    z-index: 2;
}

.hero-client-box-gold::before,
.hero-client-box-gold::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    mask: url('../images/hero-client-box-corner-shape-gold.svg');
    -webkit-mask: url('../images/hero-client-box-corner-shape-gold.svg');
    background-color: var(--primary-color);
    mask-repeat: no-repeat;
    mask-size: cover;
}

.hero-client-box-gold::before {
    top: -20px;
    right: 0;
}

.hero-client-box-gold::after {
    bottom: 0;
    left: -20px;
}

.hero-client-box-content-gold {
    max-width: 210px;
}

.hero-client-box-content-gold p {
    color: var(--white-color);
    margin: 0;
}

.hero-video-box-gold {
    position: absolute;
    bottom: 0;
    left: 60px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(100%);
    border-radius: 10px 10px 0 0;
    text-align: center;
    width: 100%;
    max-width: 420px;
    padding: 15px;
    z-index: 2;
}

.hero-video-image-gold {
    position: relative;
}

.hero-video-image-gold figure,
.hero-video-image-gold figure a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    cursor: none;
}

.hero-video-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}

.hero-video-box-gold:hover .hero-video-image-gold figure img {
    transform: scale(1.06);
}

.hero-video-image-gold .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-video-image-gold .video-play-button a {
    background: var(--accent-color);
    width: 50px;
    height: 50px;
}

.hero-video-image-gold .video-play-button a i {
    font-size: 20px;
    color: var(--primary-color);
}

.hero-video-image-gold .video-play-button a::after,
.hero-video-image-gold .video-play-button a::before {
    display: none;
}

.hero-video-content-gold {
    padding: 30px 20px 20px;
}

.hero-video-content-gold h3 {
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 500;
    color: var(--white-color);
}

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

.about-us-images-gold {
    display: flex;
    align-items: end;
    margin-right: 15px;
}

.about-us-image-gold {
    width: 100%;
}

.about-us-image-gold figure {
    display: block;
    border-radius: 10px;
}

.about-us-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    object-fit: cover;
    border-radius: 10px;
}

.about-us-image-title-gold h2 {
    font-size: 86px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    cursor: none;
    color: var(--divider-color);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px currentColor;
}

.about-us-hightlighted-content {
    position: relative;
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 20px 30px;
    overflow: hidden;
}

.about-us-hightlighted-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: var(--solo-blue);
    width: 4px;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.about-us-hightlighted-content:hover:before {
    width: 100%;
}

.about-us-hightlighted-content h3 {
    position: relative;
    font-size: 20px;
    line-height: 1.4em;
    z-index: 1;
    transition: color .4s ease;
}

.about-us-hightlighted-content:hover h3 {
    color: var(--white-color);
}

.about-body-items-list-gold {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-us-body-item-gold {
    width: calc(33.33% - 20px);
}

.about-us-body-item-gold .icon-box {
    position: relative;
    background: var(--solo-blue);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.about-us-body-item-gold .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotate(180deg) scale(0);
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.about-us-body-item-gold:hover .icon-box::before {
    transform: rotate(0deg) scale(1);
    border-radius: 0;
}

.about-us-body-item-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: 0.4s ease-in-out;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.about-us-body-item-gold img {
    position: relative;
    width: 100%;
    max-width: 48px;
    margin-bottom: 10px;
    transition: transform .45s cubic-bezier(.22,1,.36,1),
    filter .45s ease;
}

.about-us-body-item-gold:hover img {
    transform: translateY(-6px) scale(1.08);
    filter: drop-shadow(0 8px 18px rgba(212, 175, 55, .35));
}

.about-us-body-item-gold:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-us-body-item-content-gold h3 {
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400;
}

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

.about-us-counter-box-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.about-us-counter-box-gold h2 {
    font-size: 60px;
}

.about-us-counter-box-gold p {
    max-width: 110px;
    margin: 0;
}

.our-services-gold {
    background: var(--secondary-color) url('../images/services-bg-shape-gold.png') no-repeat;
    background-position: top -18% right -18%;
    background-size: auto;
    padding: 100px 0;
}

.service-item-gold {
    position: relative;
    background: var(--white-color);
    border-radius: 10px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.service-item-gold:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.service-item-gold:hover::before,
.service-item-gold.active::before {
    top: auto;
    height: 100%;
}

.service-item-header-gold {
    position: relative;
    z-index: 1;
}

.service-item-gold .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
}

.service-item-gold .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.service-item-gold.active .icon-box::before,
.service-item-gold:hover .icon-box::before {
    top: auto;
    height: 100%;
}

.service-item-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: 0.4s ease-in-out;
    z-index: 1;
}

.service-item-gold.active .icon-box img,
.service-item-gold:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-item-content-gold p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-content-gold p,
.service-item-gold:hover .service-item-content-gold p {
    color: var(--primary-color);
}

.service-item-body-gold {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    z-index: 1;
}

.service-item-title-gold {
    width: calc(100% - 50px);
}

.service-item-title-gold h2 {
    font-size: 20px;
    line-height: 1.4em;
}

.service-item-title-gold h2 a {
    color: inherit;
}

.service-item-btn-gold a {
    display: inline-block;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-btn-gold a,
.service-item-gold:hover .service-item-btn-gold a {
    border-color: var(--primary-color);
}

.service-item-btn-gold a img {
    width: 100%;
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-btn-gold a img,
.service-item-gold:hover .service-item-btn-gold a img {
    filter: brightness(0) invert(0);
}

.service-item-btn-gold a:hover img {
    transform: rotate(0deg);
}

.what-we-do-gold {
    padding: 100px 0;
}

.what-we-item-gold {
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px;
}

.what-we-item-gold.box-1 {
    padding: 10px;
}

.what-we-item-header-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
}

.what-we-item-gold.box-1 .what-we-item-title-gold {
    width: calc(100% - 55px);
}

.what-we-item-title-gold h3 {
    font-size: 20px;
}

.what-we-item-header-gold .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.what-we-item-header-gold .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotate(180deg) scale(0);
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.what-we-item-gold:hover .what-we-item-header-gold .icon-box::before {
    transform: rotate(0deg) scale(1);
    border-radius: 0;
}

.what-we-item-gold .what-we-item-header-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 20px;
    transition: 0.4s ease-in-out;
    z-index: 1;
}

.what-we-item-gold:hover .what-we-item-header-gold .icon-box img {
    filter: brightness(0) invert(1);
}

.what-we-item-image-gold figure {
    display: block;
    border-radius: 10px;
}

.what-we-item-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 10px;
}

.what-we-item-gold.box-2 .what-we-item-header-gold {
    align-items: start;
    margin-bottom: 50px;
    padding: 0;
}

.what-we-item-shape-image-gold figure {
    display: block;
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100px;
    height: 70px;
    mask-image: url('../images/what-we-item-bg-shape-image-1-gold.svg');
    background-image: url('../images/what-we-item-bg-shape-image-1-gold.svg');
}

.what-we-item-shape-image-gold img {
    width: 100%;
    object-fit: cover;
}

.what-we-item-btn-gold a {
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.what-we-item-btn-gold:hover a {
    background: var(--accent-color);
}

.what-we-item-btn-gold a img {
    width: 100%;
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.what-we-item-btn-gold:hover a img {
    filter: brightness(0) invert(0);
    transform: rotate(0deg);
}

.what-we-counter-box-gold {
    position: relative;
    margin-bottom: 30px;
}

.what-we-counter-item-gold {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white-color);
    border-radius: 10px;
    text-align: center;
    padding: 25px;
}

.what-we-counter-item-gold h2 {
    font-size: 50px;
    line-height: 1em;
}

.what-we-counter-item-gold p {
    margin: 5px 0 0 0;
}

.what-we-item-gold.box-4 .what-we-item-title-gold,
.what-we-item-gold.box-4 .what-we-item-shape-image-gold {
    margin-bottom: 20px;
}

.what-we-item-gold.box-4 .what-we-item-shape-image-gold figure {
    width: 100px;
    height: 50px;
    mask-image: url(../images/what-we-item-bg-shape-image-2-gold.svg);
    background-image: url(../images/what-we-item-bg-shape-image-2-gold.svg);
}

.what-we-item-body-gold {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.learn-more-circle-gold a {
    display: inline-block;
    border-radius: 50%;
}

.learn-more-circle-gold a img {
    width: 100%;
    max-width: 95px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.learn-more-circle-gold a:hover img {
    animation-play-state: paused;
}

.what-we-item-body-image-gold {
    margin: 0 -30px -30px 0;
}

.what-we-item-body-image-gold img {
    width: 100%;
    max-width: 165px;
}

.what-we-contect-list-gold {
    text-align: center;
    margin-top: 30px;
}

.what-we-contect-list-gold h3 {
    font-size: 20px;
}

.what-we-contect-list-gold ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.what-we-contect-list-gold ul li {
    display: inline-block;
}

.what-we-contect-list-gold ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.what-we-contect-list-gold ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.what-we-contect-list-gold ul li a:hover {
    color: var(--accent-color);
}

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

.why-choose-us-boxes-gold {
    margin-right: 15px;
}

.why-choose-item-gold {
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.why-choose-item-image-gold {
    width: 50%;
}

.why-choose-item-image-gold figure {
    display: block;
    border-radius: 10px;
}

.why-choose-item-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 0.97;
    object-fit: cover;
    border-radius: 10px;
}

.why-choose-item-body-gold {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 20px 20px 40px;
}

.why-choose-item-btn-gold a {
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.why-choose-item-btn-gold:hover a {
    background: var(--white-color);
}

.why-choose-item-btn-gold a img {
    width: 100%;
    max-width: 24px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.why-choose-item-btn-gold:hover a img {
    filter: brightness(1) invert(1);
    transform: rotate(0deg);
}

.why-choose-item-content-gold h3 {
    font-size: 20px;
    color: var(--white-color);
}

.why-choose-item-content-gold p {
    color: var(--white-color);
    margin: 10px 0 0 0;
}

.why-choose-counter-list-gold {
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding: 40px;
    margin-top: 30px;
}

.why-choose-counter-item-gold {
    position: relative;
    width: calc(33.33% - 40px);
    text-align: center;
}

.why-choose-counter-item-gold::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.why-choose-counter-item-gold:last-child:before,
.why-choose-counter-item-gold:nth-child(3n + 3):before {
    display: none;
}

.why-choose-counter-item-gold h2 {
    font-size: 50px;
    line-height: 1em;
    color: var(--white-color);
}

.why-choose-counter-item-gold p {
    color: var(--white-color);
    margin: 5px 0 0 0;
}

.why-choose-body-gold {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.why-choose-body-item-gold {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 10px;
}

.why-choose-body-item-gold .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-choose-body-item-gold .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotate(180deg) scale(0);
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.why-choose-body-item-gold:hover .icon-box::before {
    transform: rotate(0deg) scale(1);
    border-radius: 0;
}

.why-choose-body-item-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 40px;
    z-index: 1;
}

.why-choose-body-item-content-gold {
    width: calc(100% - 100px);
}

.why-choose-body-item-content-gold h2 {
    font-size: 20px;
    color: var(--white-color);
}

.why-choose-body-item-content-gold p {
    color: var(--white-color);
    margin: 10px 0 0 0;
}

.why-choose-us-btn-gold {
    margin-top: 50px;
}

.our-features-gold {
    background: linear-gradient(180deg, var(--secondary-color) 50%, var(--white-color) 50%);
    padding: 100px 0;
}

.feature-item-gold {
    background: var(--white-color);
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px 40px 0 40px;
}

.feature-item-content-gold h3 {
    font-size: 20px;
}

.feature-item-content-gold p {
    margin: 10px 0 0 0;
}

.feature-item-image-gold {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
}

.feature-item-image-gold figure {
    display: block;
    border-radius: 10px 10px 0 0;
}

.feature-item-image-gold img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.cta-box-gold {
    background: var(--secondary-color) url(../images/cta-box-bg-gold.png) no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    padding: 100px 0 50px;
}

.cta-box-image-gold {
    margin-right: 15px;
}

.cta-box-image-gold figure {
    display: block;
    border-radius: 10px;
}

.cta-box-image-gold img {
    width: 100%;
    aspect-ratio: 1 / 0.754;
    object-fit: cover;
    border-radius: 10px;
}

.cta-box-list-gold ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.cta-box-list-gold ul li {
    position: relative;
    color: var(--primary-color);
    line-height: 1.4em;
    padding-left: 16px;
}

.cta-box-list-gold ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.cta-box-btn-gold {
    margin-top: 40px;
}

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

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

.project-item-image-box-gold {
    position: relative;
}

.project-item-image-gold {
    border-radius: 10px;
    overflow: hidden;
}

.project-item-image-gold figure {
    display: block;
    cursor: none;
}

.project-item-image-gold img {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.project-item-gold:hover .project-item-image-gold img {
    transform: scale(1.08);
}

.project-item-tag-gold {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
}

.project-item-tag-gold a {
    position: relative;
    display: inline-block;
    background: var(--white-color);
    border-radius: 100px;
    padding: 10px 15px 10px 30px;
    font-family: var(--accent-font);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.project-item-tag-gold a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: var(--solo-blue);
    width: 6px;
    height: 6px;
}

.project-item-body-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 20px 0 20px;
}

.project-item-content-gold {
    max-width: 500px;
}

.project-item-content-gold h2 {
    font-size: 20px;
    line-height: 1.4em;
}

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

.project-readmore-btn-gold a {
    border: 1px solid var(--solo-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.project-readmore-btn-gold:hover a {
    background: var(--solo-blue);
}

.project-readmore-btn-gold a img {
    width: 100%;
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.project-readmore-btn-gold:hover a img {
    filter: brightness(0) invert(0);
    transform: rotate(0deg);
}

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

.intro-video-gold::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 60%;
    z-index: 1;
}

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

.intro-video-box-gold {
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.intro-video-header-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.intro-video-header-gold .section-title {
    max-width: 750px;
    margin: 0;
}

.intro-video-button-gold {
    text-align: right;
}

.intro-video-button-gold a {
    display: inline-block;
    border-radius: 50%;
    cursor: none;
}

.intro-video-button-gold a img {
    width: 100%;
    max-width: 180px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.intro-video-button-gold a:hover img {
    animation-play-state: paused;
}

.intro-video-counter-box-gold {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 100px;
    border: 1px solid var(--dark-divider-color);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 0 20px;
}

.intro-video-counter-item-gold {
    position: relative;
    width: calc(20% - 80px);
    text-align: center;
    padding: 40px 0;
}

.intro-video-counter-item-gold::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.intro-video-counter-item-gold:last-child:before,
.intro-video-counter-item-gold:nth-child(5n + 5):before {
    display: none;
}

.intro-video-counter-item-gold h2 {
    font-size: 50px;
    color: var(--white-color);
}

.intro-video-counter-item-gold p {
    color: var(--white-color);
    margin: 5px 0 0 0;
}

.our-pricing-gold {
    padding: 100px 0;
}

.pricing-item-gold {
    background-color: var(--secondary-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 15px;
}

.pricing-item-header-gold {
    padding: 25px 25px 30px 25px;
}

.pricing-item-content-gold h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.pricing-item-content-gold h2 {
    font-size: 50px;
    color: var(--accent-color);
}

.pricing-item-content-gold h2 sub {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--text-color);
    bottom: 0;
}

.pricing-item-content-gold p {
    margin: 20px 0 0 0;
}

.pricing-item-btn-gold {
    margin-top: 30px;
}

.pricing-item-list-gold {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 40px;
}

.pricing-item-list-gold h3 {
    font-size: 20px;
}

.pricing-item-list-gold ul {
    list-style: none;
    border-top: 1px solid var(--divider-color);
    padding: 20px 0 0 0;
    margin: 20px 0 0 0;
}

.pricing-item-list-gold ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.pricing-item-list-gold ul li:last-child {
    margin-bottom: 0;
}

.pricing-item-list-gold ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

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

.pricing-benefit-list-gold ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px 40px;
}

.pricing-benefit-list-gold ul li {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list-gold ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.our-testimonials-gold {
    background: var(--secondary-color) url('../images/testimonials-bg-shape-gold.png') no-repeat;
    background-position: bottom left;
    background-size: auto;
    padding: 100px 0;
}

.our-testimonials-content-gold {
    position: sticky;
    top: 40px;
}

.testimonial-item-box-gold {
    background: var(--white-color);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.testimonial-item-gold {
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 10px;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
}

.testimonials-rating-gold {
    margin-bottom: 20px;
}

.testimonials-rating-gold i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-content-gold p {
    margin: 0;
}

.testimonial-item-body-gold {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.testimonial-author-gold {
    display: flex;
    align-items: center;
    width: calc(100% - 60px);
}

.author-image-gold {
    margin-right: 20px;
}

.author-image-gold figure {
    display: block;
    border-radius: 50%;
}

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

.author-content-gold {
    width: calc(100% - 70px);
}

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

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

.testimonial-quote-gold img {
    width: 100%;
    max-width: 40px;
}

.main-footer-gold {
    background-image: url('../images/footer-bg-shape-gold.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
    padding: 100px 0 0;
}

.footer-header-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 80px;
    margin-bottom: 80px;
}

.footer-header-gold .section-title {
    max-width: 730px;
    margin-bottom: 0;
}

.footer-contact-list-gold {
    text-align: right;
}

.footer-contact-list-gold h3 {
    font-size: 30px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.footer-contact-list-gold h3:last-child {
    margin-bottom: 0;
}

.footer-contact-list-gold h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-list-gold h3 a:hover {
    color: var(--accent-color);
}

.about-footer-gold {
    margin-right: 5.208vw;
}

.footer-logo-gold img {
    width: 100%;
    max-width: 192px;
}

.about-footer-content-gold {
    margin-top: 30px;
}

.about-footer-content-gold p {
    color: var(--white-color);
    margin: 0;
}

.footer-links-box-gold {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-links-gold {
    max-width: 35%;
}

.footer-links-gold h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links-gold p {
    margin-bottom: 15px;
    color: var(--white-color);
}

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

.footer-links-gold ul li {
    position: relative;
    text-transform: capitalize;
    color: var(--white-color);
    line-height: 1.5em;
    padding-left: 16px;
    margin-bottom: 15px;
}

.footer-links-gold ul li:last-child {
    margin-bottom: 0;
}

.footer-links-gold ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.footer-links-gold ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

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

.footer-newsletter-form-gold p {
    margin-bottom: 20px;
}

.footer-newsletter-form-gold .form-group {
    display: flex;
    flex-wrap: wrap;
}

.footer-newsletter-form-gold .form-group .form-control {
    width: calc(100% - 50px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25em;
    color: var(--white-color);
    background: transparent;
    border: 1px solid var(--dark-divider-color);
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    padding: 14px 24px;
}

.footer-newsletter-form-gold .form-group .form-control::placeholder {
    color: var(--white-color);
}

.footer-newsletter-form-gold .form-group .newsletter-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover {
    background: var(--accent-color);
}

.footer-newsletter-form-gold .form-group .newsletter-btn i {
    font-size: 22px;
    color: var(--accent-color);
    margin-right: 2px;
    transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover i {
    color: var(--primary-color);
}

.footer-copyright-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding: 60px 0;
}

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

.footer-social-links-gold ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

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

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

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

.footer-social-links-gold ul li a:hover i {
    color: var(--primary-color);
}

@media only screen and (max-width: 1440px) {

    .hero-client-box-gold {
        width: 390px;
        padding: 30px 20px;
    }

    .hero-video-box-gold {
        left: 40px;
    }

    .about-body-items-list-gold {
        gap: 20px;
    }

    .about-us-body-item-gold {
        width: calc(33.33% - 13.33px);
    }

    .service-item-gold {
        min-height: 400px;
        padding: 30px 25px;
    }

    .what-we-counter-item-gold {
        padding: 20px;
    }

    .why-choose-item-body-gold {
        padding-left: 30px;
    }

    .why-choose-counter-list-gold {
        padding: 30px;
    }

    .feature-item-gold {
        min-height: 470px;
        padding: 30px 30px 0 30px;
    }

    .intro-video-box-gold {
        min-height: 600px;
    }

    .intro-video-counter-item-gold {
        padding: 30px 0;
    }

    .pricing-item-header-gold {
        padding: 25px 20px 30px 20px;
    }

    .pricing-item-list-gold {
        padding: 30px 25px;
    }

    .testimonial-item-gold {
        padding: 30px;
    }

    .about-footer-gold {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 1024px) {

    .about-us-images-gold {
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .what-we-item-image-gold figure img {
        aspect-ratio: 1 / 0.9;
    }

    .what-we-item-body-image-gold img {
        max-width: 130px;
    }

    .why-choose-us-content-gold {
        margin-bottom: 30px;
    }

    .why-choose-us-btn-gold {
        margin-top: 30px;
    }

    .why-choose-us-boxes-gold {
        margin: 0;
    }

    .project-item-content-gold {
        width: calc(100% - 60px);
        max-width: 100%;
    }

    .intro-video-button-gold a img {
        max-width: 140px;
    }

    .intro-video-counter-box-gold {
        gap: 0 30px;
    }

    .intro-video-counter-item-gold {
        width: calc(20% - 24px);
        padding: 20px 0;
    }

    .intro-video-counter-item-gold::before {
        right: -15px;
    }

    .our-testimonials-content-gold {
        position: initial;
        margin-bottom: 40px;
    }

    .footer-header-gold .section-title {
        max-width: 600px;
    }

    .footer-contact-list-gold h3 {
        font-size: 26px;
    }

    .about-footer-gold {
        margin: 0 0 40px 0;
    }

    .about-footer-content-gold {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 991px) {

    .hero-gold {
        padding: 140px 0 50px;
    }

    .hero-content-gold .section-title h1 {
        font-size: 50px;
    }

    .hero-content-body-gold {
        margin-top: 0;
    }

    .hero-image-box-gold {
        margin-top: 50px;
    }

    .hero-image-gold figure img {
        aspect-ratio: 1 / 0.7;
    }

    .hero-client-box-gold {
        width: 330px;
        padding: 20px 15px;
    }

    .satisfy-client-image figure img {
        max-width: 40px;
    }

    .hero-client-box-content-gold {
        max-width: 180px;
    }

    .hero-client-box-content-gold p {
        font-size: 14px;
    }

    .hero-video-box-gold {
        left: 15px;
        max-width: 280px;
        padding: 10px;
    }

    .hero-video-content-gold {
        padding: 20px 10px 10px;
    }

    .hero-video-content-gold h3 {
        font-size: 18px;
    }

    .about-us-gold {
        padding: 50px 0;
    }

    .about-us-hightlighted-content {
        margin-bottom: 30px;
    }

    .about-us-footer-gold {
        margin-top: 30px;
        padding-top: 30px;
    }

    .about-us-counter-box-gold h2 {
        font-size: 45px;
    }

    .our-services-gold {
        padding: 50px 0;
        background-size: 350px auto;
    }

    .what-we-do-gold {
        padding: 50px 0;
    }

    .what-we-counter-item-gold h2 {
        font-size: 40px;
    }

    .what-we-contect-list-gold {
        margin-top: 10px;
    }

    .what-we-contect-list-gold ul {
        margin-top: 15px;
    }

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

    .why-choose-body-item-gold {
        gap: 15px;
    }

    .why-choose-body-item-gold .icon-box {
        width: 50px;
        height: 50px;
    }

    .why-choose-body-item-gold .icon-box img {
        max-width: 24px;
    }

    .why-choose-body-item-content-gold {
        width: calc(100% - 65px);
    }

    .why-choose-item-gold {
        padding: 10px;
    }

    .why-choose-counter-item-gold h2 {
        font-size: 40px;
    }

    .our-features-gold {
        padding: 50px 0;
    }

    .cta-box-gold {
        padding: 50px 0;
    }

    .cta-box-image-gold {
        margin: 0 0 30px 0;
    }

    .cta-box-btn-gold {
        margin-top: 30px;
    }

    .our-projects {
        padding: 50px 0 20px;
    }

    .project-item-tag-gold {
        top: 20px;
        left: 20px;
    }

    .project-item-tag-gold a {
        padding: 8px 10px 8px 24px;
    }

    .project-item-tag-gold a::before {
        left: 10px;
    }

    .project-item-body-gold {
        padding: 15px 5px 0 5px;
    }

    .project-item-content-gold h2 {
        font-size: 18px;
    }

    .intro-video-gold {
        padding: 50px 0 0;
    }

    .intro-video-box-gold {
        min-height: 500px;
    }

    .intro-video-button-gold {
        width: 100%;
        text-align: center;
    }

    .intro-video-counter-box-gold {
        padding: 0 15px;
    }

    .intro-video-counter-item-gold h2 {
        font-size: 40px;
    }

    .our-pricing-gold {
        padding: 50px 0;
    }

    .pricing-item-gold {
        padding: 10px;
    }

    .pricing-item-header-gold {
        padding: 10px 10px 20px 10px;
    }

    .pricing-item-content-gold h3 {
        margin-bottom: 15px;
    }

    .pricing-item-content-gold h2 {
        font-size: 40px;
    }

    .pricing-item-content-gold p {
        margin-top: 10px;
    }

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

    .pricing-item-list-gold {
        padding: 20px;
    }

    .pricing-item-list-gold ul li {
        margin-bottom: 10px;
    }

    .pricing-item-list-gold ul li::before {
        font-size: 16px;
    }

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

    .pricing-benefit-list-gold ul {
        gap: 15px 30px;
    }

    .our-testimonials-gold {
        background-size: 400px auto;
        padding: 50px 0;
    }

    .our-testimonials-content-gold {
        margin-bottom: 30px;
    }

    .testimonial-item-gold {
        min-height: 300px;
        gap: 20px;
    }

    .testimonial-item-body-gold {
        padding-top: 20px;
    }

    .main-footer-gold {
        padding: 50px 0 0 0;
    }

    .footer-header-gold {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-header-gold .section-title {
        max-width: 100%;
    }

    .footer-contact-list-gold {
        text-align: left;
    }

    .footer-links-gold {
        max-width: 40%;
    }

    .footer-links-gold h3 {
        margin-bottom: 15px;
    }

    .footer-links-gold ul li {
        margin-bottom: 10px;
    }

    .footer-newsletter-form-gold p {
        margin-bottom: 15px;
    }

    .footer-copyright-gold {
        margin-top: 40px;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {

    .hero-content-gold .section-title h1 {
        font-size: 30px;
    }

    .hero-content-body-gold {
        gap: 20px;
    }

    .hero-client-box-gold {
        position: initial;
        width: 100%;
        border-radius: 10px;
        margin-top: 20px;
    }

    .hero-video-box-gold {
        position: initial;
    }

    .hero-client-box-gold::before,
    .hero-client-box-gold::after {
        display: none;
    }

    .hero-video-box-gold {
        max-width: 100%;
        margin: 20px 0 -50px;
    }

    .about-us-image-title-gold h2 {
        font-size: 44px;
    }

    .about-us-hightlighted-content {
        padding: 20px 15px;
    }

    .about-us-hightlighted-content h3 {
        font-size: 18px;
    }

    .about-us-body-item-gold {
        width: calc(50% - 10px);
    }

    .about-us-body-item-gold .icon-box {
        margin-bottom: 10px;
    }

    .about-us-body-item-content-gold h3 {
        font-size: 18px;
    }

    .about-us-footer-gold {
        gap: 20px;
    }

    .about-us-counter-box-gold {
        gap: 10px;
    }

    .about-us-counter-box-gold h2 {
        font-size: 30px;
    }

    .about-us-counter-box-gold p {
        font-size: 14px;
    }

    .service-item-gold {
        min-height: 350px;
        gap: 20px;
        padding: 20px;
    }

    .service-item-gold .icon-box {
        margin-bottom: 15px;
    }

    .service-item-body-gold {
        padding-top: 20px;
    }

    .service-item-title-gold h2 {
        font-size: 18px;
    }

    .what-we-item-gold {
        padding: 20px;
    }

    .what-we-item-header-gold {
        padding: 15px 15px 20px 15px;
    }

    .what-we-item-title-gold h3 {
        font-size: 18px;
    }

    .what-we-counter-item-gold h2 {
        font-size: 30px;
    }

    .what-we-item-body-image-gold {
        margin: 0 -20px -20px 0;
    }

    .what-we-item-body-image-gold img {
        max-width: 100px;
    }

    .what-we-contect-list-gold ul {
        gap: 15px;
    }

    .what-we-contect-list-gold ul li {
        font-size: 14px;
    }

    .what-we-contect-list-gold ul li img {
        max-width: 18px;
        margin-right: 5px;
    }

    .why-choose-body-item-content-gold h2 {
        font-size: 18px;
    }

    .why-choose-item-image-gold {
        width: 100%;
    }

    .why-choose-item-body-gold {
        width: 100%;
        padding: 20px 15px 10px;
        flex-direction: column-reverse;
    }

    .why-choose-counter-list-gold {
        padding: 20px;
        gap: 20px;
    }

    .why-choose-counter-item-gold {
        width: calc(33.33% - 13.33px);
    }

    .why-choose-counter-item-gold::before {
        right: -10px;
    }

    .why-choose-counter-item-gold h2 {
        font-size: 30px;
    }

    .why-choose-counter-item-gold p {
        font-size: 14px;
    }

    .feature-item-gold {
        min-height: initial;
        padding: 20px 20px 0 20px;
    }

    .feature-item-image-gold {
        max-width: 240px;
    }

    .intro-video-button-gold a img {
        max-width: 100px;
    }

    .intro-video-counter-item-gold {
        width: calc(50% - 15px);
    }

    .intro-video-counter-item-gold:last-child:before,
    .intro-video-counter-item-gold:nth-child(5n + 5):before {
        display: block;
    }

    .intro-video-counter-item-gold:nth-child(2n + 2):before {
        display: none;
    }

    .intro-video-counter-item-gold h2 {
        font-size: 30px;
    }

    .pricing-item-content-gold h2 {
        font-size: 30px;
    }

    .pricing-item-list-gold {
        padding: 20px 15px;
    }

    .pricing-benefit-list-gold ul {
        gap: 10px;
    }

    .pricing-benefit-list-gold ul li {
        font-size: 14px;
    }

    .pricing-benefit-list-gold ul li img {
        max-width: 16px;
        margin-right: 5px;
    }

    .testimonial-item-box-gold {
        padding: 10px;
    }

    .testimonial-item-gold {
        padding: 20px;
    }

    .testimonials-rating-gold {
        margin-bottom: 15px;
    }

    .author-image-gold {
        margin-right: 10px;
    }

    .author-content-gold {
        width: calc(100% - 60px);
    }

    .author-content-gold h3 {
        font-size: 18px;
    }

    .footer-header-gold {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-contact-list-gold h3 {
        font-size: 22px;
    }

    .about-footer-gold {
        margin-bottom: 30px;
    }

    .footer-links-gold {
        max-width: 100%;
    }

    .footer-copyright-gold {
        margin-top: 30px;
        padding: 15px 0;
        flex-direction: column-reverse;
    }

    .footer-copyright {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 30px 0 40px;
    }

    .footer-copyright-text,
    .footer-menu {
        width: 100%;
    }

    .footer-menu {
        display: flex;
        justify-content: center;
    }

    .footer-agency-logo {
        justify-content: center;
    }

    .footer-agency-logo img {
        height: 22px;
        max-width: 120px;
    }
}

/************************************/
/***   35. Home - Version 3 css	  ***/
/************************************/

.main-header.header-silver {
    top: 30px;
}

.main-header.header-silver .header-sticky {
    border-radius: 10px;
    max-width: 1500px;
    margin: 0 auto;
}

header.main-header.header-silver .header-sticky.active {
    border-radius: 0 0 10px 10px;
}

.main-header.header-silver .navbar {
    padding: 25px 10px;
}

.hero-silver {
    background-image: url('../images/hero-bg-image-silver.png');
    background-position: center center;
    background-position: center center;
    background-size: cover;
    padding: 230px 0 195px;
    overflow: hidden;
}

.hero-content-silver {
    height: 100%;
    align-content: center;
}

.hero-content-body-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.hero-body-item-silver {
    width: calc(50% - 15px);
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
}

.hero-body-item-silver .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 15px;
}

.hero-body-item-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.hero-body-item-silver:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.hero-body-item-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.hero-body-item-content-silver {
    width: calc(100% - 75px);
}

.hero-body-item-content-silver h3 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.4em;
}

.hero-content-footer-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px 50px;
}

.hero-image-silver {
    height: 100%;
    align-content: end;
}

.hero-image-silver figure {
    display: block;
    border-radius: 10px 10px 0 0;
}

.hero-image-silver img {
    width: 100%;
    aspect-ratio: 1 / 1.073;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: -195px;
}

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

.about-us-image-box-silver {
    position: relative;
    height: 100%;
    margin-right: 15px;
}

.about-image-box-1-silver {
    height: 100%;
    padding-top: 40px;
}

.about-image-box-1-silver figure {
    height: 100%;
    display: block;
    border-radius: 10px;
}

.about-image-box-1-silver img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.955;
    object-fit: cover;
    border-radius: 10px;
}

.about-image-box-2-silver {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.about-image-box-2-silver figure {
    display: block;
    border-radius: 10px 10px 0 10px;
}

.about-image-box-2-silver img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 10px 10px 0 10px;
}

.about-counter-box-silver {
    position: absolute;
    width: 100%;
    max-width: 360px;
    bottom: 30px;
    left: 30px;
    background: var(--divider-color);
    backdrop-filter: blur(15px) saturate(100%);
    -webkit-backdrop-filter: blur(15px) saturate(100%);
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
}

.about-counter-silver h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--white-color);
}

.about-counter-silver p {
    color: var(--white-color);
    margin: 5px 0 0;
}

.about-counter-box-silver .satisfy-client-image {
    border-color: var(--white-color);
}

.about-counter-box-silver .satisfy-client-image img {
    max-width: 40px;
}

.about-us-content-silver {
    height: 100%;
    align-content: center;
}

.about-us-item-list-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.about-us-item-silver {
    width: calc(50% - 15px);
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.about-us-item-silver .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-us-item-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-us-item-silver:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.about-us-item-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.about-us-item-silver:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-us-item-content-silver {
    width: calc(100% - 75px);
}

.about-us-item-content-silver h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.about-us-body-silver .skills-progress-bar {
    margin-bottom: 40px;
}

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

.about-us-content-list-silver ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

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

.about-us-content-list-silver ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.about-us-footer-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.about-author-Box-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.about-author-image-silver figure {
    display: block;
    border-radius: 50px;
}

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

.about-author-content-silver h3 {
    font-size: 20px;
}

.about-author-content-silver p {
    margin: 5px 0 0;
}

.our-services-silver {
    background: var(--secondary-color) url('../images/service-bg-shape.png') no-repeat;
    background-position: top right;
    background-size: auto;
    padding: 100px 0;
}

.service-item-silver {
    background: var(--bg-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.service-item-header-silver {
    padding: 30px 30px 0;
}

.service-item-header-silver .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--solo-blue);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-item-header-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-item-silver:hover .service-item-header-silver .icon-box::before {
    transform: rotate(0) scale(1);
}

.service-item-header-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.service-item-silver:hover .service-item-header-silver .icon-box img {
    filter: brightness(0) invert(1);
}

.service-item-content-silver h3 {
    font-size: 20px;
}

.service-item-content-silver p {
    margin: 10px 0 0;
}

.service-item-image-silver a {
    display: block;
    cursor: none;
}

.service-item-image-silver figure {
    display: block;
    /*
        mask-image: url('../images/service-image-shap-silver.svg');
        background-image: url('../images/service-image-shap-silver.svg');
        mask-size: cover;
        mask-position: center center;
        mask-repeat: no-repeat;
        max-width: 355px;
        max-height: 175px;
    */
    margin: 0 auto;
}

.service-item-image-silver figure img {
    width: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.service-item-silver:hover .service-item-image-silver figure img {
    transform: scale(1.06);
}

.what-we-do-silver {
    padding: 100px 0;
}

.what-we-do-box-silver {
    background-color: var(--secondary-color);
    border-radius: 10px;
    margin-right: 15px;
    padding: 30px;
    overflow: hidden;
}

.what-we-box-header-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
}

.what-we-header-counter-silver {
    border-right: 1px solid var(--divider-color);
    padding-right: 20px;
    margin-right: 20px;
}

.what-we-header-counter-silver h2 {
    font-size: 52px;
    font-weight: 700;
}

.what-we-header-counter-silver p {
    margin: 5px 0 0 0;
}

.what-we-counter-info-silver {
    width: 50%;
}

.what-we-counter-info-silver p {
    margin-bottom: 0;
}

.what-we-body-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
}

.what-we-body-image-silver {
    width: calc(65% - 15px);
}

.what-we-body-image-silver figure {
    display: block;
    margin: 0 0 -30px -30px;
}

.what-we-body-image-silver img {
    width: 100%;
    aspect-ratio: 1 / 1.54;
    object-fit: cover;
}

.what-we-counter-box-silver {
    width: calc(35% - 15px);
}

.what-we-counter-box-title-silver h3 {
    font-size: 20px;
    line-height: 1.2em;
    margin-bottom: 40px;
}

.what-we-counter-item-silver {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.what-we-counter-item-silver:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.what-we-counter-item-silver h2 {
    font-size: 52px;
    font-weight: 700;
}

.what-we-counter-item-silver p {
    margin: 10px 0 0;
}

.what-we-content-body-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.what-we-content-image-silver {
    width: calc(44% - 15px);
    border-radius: 10px;
}

.what-we-content-image-silver figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.what-we-content-image-silver img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.465;
    object-fit: cover;
    border-radius: 10px;
}

.what-we-items-btn-silver {
    width: calc(56% - 15px);
}

.what-we-item-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.what-we-item-silver:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.what-we-item-silver .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.what-we-item-silver .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-item-silver:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.what-we-item-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.what-we-item-silver:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.what-we-item-content-silver {
    width: calc(100% - 80px);
}

.what-we-item-content-silver h3 {
    font-size: 20px;
}

.what-we-item-content-silver p {
    margin: 10px 0 0 0;
}

.what-we-do-btn-silver {
    margin-top: 60px;
}

.our-award-silver {
    background-image: none;
    padding: 100px 0;
}

.award-title-box-silver {
    margin-right: 15px;
}

.award-counter-box-silver {
    background: url('../images/award-counter-bg-silver.png') no-repeat;
    background-position: center center;
    background-size: cover;
    max-width: 600px;
    text-align: center;
    padding: 70px;
    margin: 0 auto;
}

.award-counter-box-silver h2 {
    font-size: 100px;
    color: var(--white-color);
}

.award-counter-box-silver h3 {
    font-size: 20px;
    max-width: 330px;
    line-height: 1.4em;
    color: var(--white-color);
    margin: 10px auto 0;
}

.award-item-silver {
    background-color: var(--dark-divider-color);
    border-radius: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.award-item-silver:last-child {
    margin-bottom: 0;
}

.award-item-silver .icon-box {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.award-item-silver .icon-box::before {
    content: '';
    position: absolute;
    background: var(--white-color);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.award-item-silver:hover .icon-box::before {
    transform: scale(1);
}

.award-item-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 74px;
    z-index: 1;
}

.award-item-content-silver {
    width: calc(100% - 120px);
}

.award-item-content-silver h3 {
    font-size: 20px;
    color: var(--white-color);
}

.award-item-content-silver ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 15px 20px;
    margin: 25px 0 0 0;
    padding: 0;
}

.award-item-content-silver ul li {
    font-size: 14px;
    color: var(--white-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 30px;
    padding: 8px 20px;
}

.our-pricing-silver {
    padding: 100px 0;
}

.pricing-item-silver {
    background-color: var(--secondary-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 15px;
}

.pricing-item-header-silver {
    padding: 15px 15px 30px;
}

.pricing-item-header-silver .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    overflow: hidden;
}

.pricing-item-header-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.pricing-item-silver:hover .pricing-item-header-silver .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.pricing-item-header-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.pricing-item-silver:hover .pricing-item-header-silver .icon-box img {
    filter: brightness(1) invert(1);
}

.pricing-item-content-silver h3 {
    font-size: 20px;
}

.pricing-item-content-silver p {
    margin: 10px 0 0;
}

.pricing-item-body-silver {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 40px;
}

.pricing-item-list-silver h2 {
    font-size: 40px;
    font-weight: 700;
}

.pricing-item-list-silver h2 sub {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    bottom: 0;
}

.pricing-item-list-silver ul {
    border-top: 1px solid var(--divider-color);
    list-style: none;
    padding: 20px 0 0;
    margin: 20px 0 0;
}

.pricing-item-list-silver ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.pricing-item-list-silver ul li:last-child {
    margin-bottom: 0;
}

.pricing-item-list-silver ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.pricing-item-btn-silver {
    margin-top: 30px;
}

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

.pricing-item-btn-silver .btn-default::before {
    display: none;
}

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

.pricing-benefit-list-silver ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px 40px;
}

.pricing-benefit-list-silver ul li {
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list-silver ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.our-working-process-silver {
    position: relative;
    background-image: url('../images/working-process-bg-silver.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

.our-working-process-silver::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 80%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-working-process-silver .container {
    position: relative;
    z-index: 1;
}

.working-process-item-list-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
}

.working-process-item-silver {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: calc(25% - 22.5px);
    gap: 80px;
}

.working-process-item-silver:nth-child(even) {
    flex-direction: column-reverse;
    margin: 0 0 170px;
}

.working-process-no-silver {
    position: relative;
}

.working-process-no-silver::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -40px;
    right: 0;
    width: calc(100% + 30px);
    height: 1px;
    background-color: var(--dark-divider-color);
}

.working-process-item-silver:nth-child(even) .working-process-no-silver::before {
    bottom: auto;
    top: -38px;
}

.working-process-item-silver:nth-child(4n + 4) .working-process-no-silver::before,
.working-process-item-silver:last-child .working-process-no-silver::before {
    width: 100%;
}

.working-process-no-silver h2 {
    color: var(--white-color);
    font-size: 52px;
    line-height: 1em;
    text-align: center;
}

.working-process-body-silver {
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(100%);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    margin-top: 30px;
}

.working-process-body-silver .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: -60px auto 20px;
}

.working-process-body-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.working-process-body-silver:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.working-process-body-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.working-process-item-content-silver {
    text-align: center;
}

.working-process-item-content-silver h3 {
    color: var(--white-color);
    font-size: 20px;
}

.working-process-item-content-silver p {
    color: var(--white-color);
    margin: 10px 0 0 0;
}

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

.team-item-silver {
    position: relative;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

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

.team-item-image-silver figure {
    display: block;
    border-radius: 10px;
}

.team-item-image-silver img {
    width: 100%;
    aspect-ratio: 1 / 1.20;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
    border-radius: 10px;
}

.team-item-silver:hover .team-item-image-silver img {
    transform: scale(1.06);
}

.team-item-body-silver {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.team-item-content-silver h3 {
    font-size: 20px;
    color: var(--white-color);
}

.team-item-content-silver h3 a {
    color: inherit;
}

.team-item-content-silver p {
    color: var(--white-color);
    margin: 10px 0 0 0;
}

.team-social-list-box-silver {
    position: relative;
}

.team-social-btn-silver a {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.team-social-btn-silver a:hover {
    background-color: var(--white-color);
}

.team-social-btn-silver a i {
    font-size: 24px;
    color: var(--primary-color);
}

.team-social-list-silver {
    position: absolute;
    right: 25px;
    bottom: 100%;
    transform: translate(50%, -30px);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.team-item-silver:hover .team-social-list-silver {
    opacity: 1;
    visibility: visible;
    transform: translate(50%, -55px);
}

.team-social-list-silver ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-social-list-silver ul li a {
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

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

.team-social-list-silver ul li a:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.our-testimonials-silver {
    background: var(--secondary-color);
    padding: 100px 0;
}

.testimonial-image-box-silver {
    position: relative;
    height: 100%;
}

.testimonial-image-silver {
    height: 100%;
}

.testimonial-image-silver figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.testimonial-image-silver figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1.098;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial-content-box-silver {
    height: 100%;
    align-content: center;
    margin-left: 15px;
}

.testimonial-slider-silver {
    margin-top: 60px;
}

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

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

.testimonial-item-rating i {
    color: var(--accent-color);
    font-size: 20px;
}

.testimonial-item-content-silver p {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.testimonial-item-author-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.testimonial-author-image-silver figure {
    display: block;
    border-radius: 50%;
}

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

.testimonial-author-content-silver {
    width: calc(100% - 65px);
    text-align: left;
}

.testimonial-author-content-silver h3 {
    font-size: 20px;
}

.testimonial-author-content-silver p {
    margin: 5px 0 0;
}

.testimonial-btn-silver {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    z-index: 2;
}

.testimonial-slider-silver .testimonial-button-next-silver,
.testimonial-slider-silver .testimonial-button-prev-silver {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-next-silver {
    margin-left: 15px;
}

.testimonial-slider-silver .testimonial-button-next-silver:hover,
.testimonial-slider-silver .testimonial-button-prev-silver:hover {
    background: var(--accent-color);
}

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

.testimonial-slider-silver .testimonial-button-next-silver::before {
    transform: rotate(360deg);
}

.testimonial-footer-content-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
    margin-top: 40px;
}

.section-footer-text.section-footer-contact {
    width: calc(72% - 15px);
    justify-content: left;
}

.section-footer-text.section-footer-contact span {
    margin-right: 5px;
}

.testimonial-footer-content-silver .section-footer-text {
    margin-top: 0;
}

.testimonial-review-box-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    width: calc(28% - 15px);
}

.testimonial-review-box-silver .icon-box img {
    width: 100%;
    max-width: 35px;
}

.testimonial-review-box-content-silver h3 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-review-box-content-silver span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.testimonial-review-box-content-silver span i {
    font-size: 12px;
    color: var(--accent-color);
}

.testimonial-review-box-content-silver p {
    font-size: 14px;
    margin: 5px 0 0 0;
}

.main-footer-silver {
    background-image: none;
    padding: 100px 0 0;
}

.footer-header-silver {
    text-align: center;
    border-bottom: 1px solid var(--dark-divider-color);
    margin: 0 auto 60px;
    padding-bottom: 60px;
}

.footer-header-silver .section-title {
    max-width: 990px;
    margin: 0 auto;
}

.footer-header-silver .footer-header-btn-silver {
    margin-top: 40px;
}

.footer-logo-silver img {
    width: 100%;
    max-width: 192px;
}

.about-footer-content-silver {
    max-width: 500px;
    margin-top: 40px;
}

.about-footer-content-silver p {
    color: var(--white-color);
    margin: 0;
}

.about-footer-silver .footer-menu-silver {
    margin-top: 40px;
}

.footer-menu-silver ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu-silver ul li {
    position: relative;
    line-height: 1.5em;
    color: var(--white-color);
}

.footer-menu-silver ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

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

.footer-menu-silver.footer-privacy-policy-silver ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    background: var(--accent-color);
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
}

.footer-menu-silver.footer-privacy-policy-silver ul li:last-child::before {
    display: none;
}

.footer-newsletter-box-silver {
    max-width: 500px;
    margin: 0 0 0 auto;
}

.footer-newsletter-form-silver h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-newsletter-form-silver .form-group {
    width: 100%;
    display: flex;
    background: transparent;
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    padding: 4px;
}

.footer-newsletter-form-silver .form-group .form-control {
    width: calc(100% - 40px);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 6px 14px;
}

.footer-newsletter-form-silver .form-group .form-control::placeholder {
    color: var(--white-color);
}

.footer-newsletter-form-silver .form-group .newsletter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-silver .form-group .newsletter-btn i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 2px;
}

.footer-newsletter-form-silver .form-group .newsletter-btn:hover {
    background-color: var(--white-color);
}

.footer-newsletter-form-silver .form-group .newsletter-btn img {
    max-width: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-silver .form-group .newsletter-btn:hover img {
    transform: rotate(45deg);
}

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

.footer-social-links-silver ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

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

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

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

.footer-social-links-silver ul li a:hover i {
    color: var(--primary-color);
}

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

.footer-copyright-box-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 30px;
}

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

@media only screen and (max-width: 1540px) {

    .main-header.header-silver .header-sticky {
        width: calc(100% - 30px);
    }
}

@media only screen and (max-width: 1440px) {

    .about-us-item-list-silver {
        gap: 20px;
    }

    .about-us-item-silver {
        width: calc(50% - 10px);
        padding: 10px;
    }

    .service-item-header-silver {
        padding: 30px 15px 0;
    }

    .service-item-image-silver figure {
        /*
            max-height: 145px;
         */
    }

    .what-we-box-header-silver {
        margin-bottom: 30px;
    }

    .what-we-body-image-silver {
        width: calc(62% - 15px);
    }

    .what-we-counter-box-silver {
        width: calc(38% - 15px);
    }

    .what-we-counter-box-title-silver h3 {
        margin-bottom: 30px;
    }

    .what-we-do-btn-silver {
        margin-top: 40px;
    }

    .pricing-item-body-silver {
        padding: 30px 25px;
    }

    .working-process-body-silver {
        padding: 30px 20px;
    }

    .testimonial-review-box-silver {
        gap: 10px;
    }

    .testimonial-review-box-silver .icon-box img {
        max-width: 30px;
    }

    .testimonial-review-box-content-silver span {
        gap: 0px;
    }
}

@media only screen and (max-width: 1024px) {

    .hero-content-silver {
        height: auto;
        margin-bottom: 30px;
    }

    .hero-image-silver {
        height: auto;
        max-width: 70%;
        margin: 0 auto;
    }

    .about-us-image-box-silver {
        height: auto;
        margin: 0 0 30px;
    }

    .about-image-box-1-silver,
    .about-us-content-silver {
        height: auto;
    }

    .about-image-box-1-silver img {
        aspect-ratio: 1 / 0.8;
    }

    .about-us-footer-silver {
        margin-top: 40px;
    }

    .service-item-image-silver figure {
        /*
            max-height: 175px;
         */
    }

    .what-we-do-box-silver {
        margin: 0;
    }

    .what-we-body-image-silver img {
        max-width: 300px;
    }

    .what-we-do-content-silver {
        margin-bottom: 30px;
    }

    .what-we-content-image-silver img {
        aspect-ratio: 1 / 1.065;
    }

    .award-title-box-silver {
        margin: 0 0 30px 0;
    }

    .working-process-item-silver {
        width: calc(50% - 15px);
        gap: 50px;
    }

    .working-process-item-silver:nth-child(odd) {
        margin: 0;
    }

    .working-process-no-silver::before {
        width: calc(100% + 20px);
    }

    .working-process-item-silver:nth-child(even) {
        flex-direction: column;
        margin: 0px;
    }

    .working-process-no-silver::before {
        width: 100%;
        bottom: -25px;
    }

    .working-process-item-silver:nth-child(even) .working-process-no-silver::before {
        top: auto;
        bottom: -25px;
    }

    .team-item-image-silver img {
        aspect-ratio: 1 / 1.19;
    }

    .team-item-body-silver {
        padding: 20px;
    }

    .testimonial-image-box-silver {
        height: auto;
        margin-bottom: 30px;
    }

    .testimonial-image-silver figure img {
        aspect-ratio: 1 / 0.8;
    }

    .testimonial-content-box-silver {
        margin-left: 0;
    }

    .testimonial-slider-silver {
        margin: 0;
    }

    .testimonial-item-author-silver {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 991px) {

    .main-header.header-silver {
        top: 0px;
    }

    .main-header.header-silver .header-sticky {
        width: 100%;
        border-radius: 0;
    }

    header.main-header.header-silver .header-sticky.active {
        border-radius: 0;
    }

    .main-header.header-silver .navbar {
        padding: 20px 0;
    }

    .hero-silver {
        padding: 140px 0 0;
    }

    .hero-content-body-silver {
        margin-bottom: 40px;
    }

    .hero-body-item-silver .icon-box {
        height: 50px;
        width: 50px;
    }

    .hero-body-item-silver .icon-box img {
        max-width: 24px;
    }

    .hero-body-item-content-silver {
        width: calc(100% - 65px);
    }

    .hero-image-silver img {
        margin-bottom: 0;
    }

    .about-us-silver {
        padding: 50px 0;
    }

    .about-counter-box-silver {
        gap: 20px;
        padding: 20px;
    }

    .about-counter-silver h2 {
        font-size: 40px;
    }

    .about-us-item-list-silver {
        margin-bottom: 30px;
    }

    .about-us-item-silver .icon-box {
        height: 50px;
        width: 50px;
    }

    .about-us-item-silver .icon-box img {
        max-width: 24px;
    }

    .about-us-item-content-silver {
        width: calc(100% - 65px);
    }

    .about-us-body-silver .skills-progress-bar {
        margin-bottom: 30px;
    }

    .about-us-footer-silver {
        margin-top: 30px;
    }

    .our-services-silver {
        padding: 50px 0;
        background-size: 250px auto;
    }

    .what-we-do-silver {
        padding: 50px 0;
    }

    .what-we-header-counter-silver h2 {
        font-size: 42px;
    }

    .what-we-counter-item-silver h2 {
        font-size: 42px;
    }

    .what-we-counter-item-silver p {
        margin: 5px 0 0;
    }

    .what-we-content-body-silver {
        margin-top: 0;
    }

    .what-we-item-silver {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .what-we-item-silver .icon-box {
        height: 50px;
        width: 50px;
    }

    .what-we-item-silver .icon-box img {
        max-width: 24px;
    }

    .what-we-item-content-silver {
        width: calc(100% - 70px);
    }

    .our-award-silver {
        padding: 50px 0;
    }

    .award-counter-box-silver {
        padding: 50px;
    }

    .award-counter-box-silver h2 {
        font-size: 70px;
    }

    .award-item-silver {
        margin-bottom: 30px;
        padding: 15px;
    }

    .award-item-silver .icon-box {
        height: 80px;
        width: 80px;
    }

    .award-item-silver .icon-box img {
        max-width: 64px;
    }

    .award-item-content-silver {
        width: calc(100% - 100px);
    }

    .our-pricing-silver {
        padding: 50px 0;
    }

    .pricing-item-header-silver .icon-box {
        height: 50px;
        width: 50px;
        margin-bottom: 30px;
    }

    .pricing-item-header-silver .icon-box img {
        max-width: 24px;
    }

    .pricing-item-body-silver {
        padding: 20px 15px;
    }

    .pricing-item-list-silver ul li:before {
        font-size: 16px;
    }

    .pricing-item-list-silver h2 {
        font-size: 36px;
    }

    .pricing-item-list-silver sub {
        font-size: 18px;
    }

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

    .pricing-item-btn-silver .btn-default {
        padding: 14px;
    }

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

    .pricing-benefit-list-silver ul {
        gap: 15px 30px;
    }

    .our-working-process-silver {
        padding: 50px 0;
    }

    .working-process-body-silver {
        padding: 20px;
    }

    .working-process-body-silver .icon-box {
        width: 50px;
        height: 50px;
    }

    .working-process-body-silver .icon-box {
        margin: -45px auto 20px;
    }

    .working-process-no-silver h2 {
        font-size: 40px;
    }

    .our-team-silver {
        padding: 50px 0 20px;
    }

    .team-item-body-silver {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .team-item-content-silver p {
        margin: 5px 0 0 0;
    }

    .our-testimonials-silver {
        padding: 50px 0;
    }

    .testimonial-footer-content-silver {
        padding-top: 30px;
        margin-top: 30px;
    }

    .testimonial-review-box-silver {
        gap: 20px;
    }

    .main-footer-silver {
        padding: 50px 0 0;
    }

    .footer-header-silver {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-header-silver .footer-header-btn-silver {
        margin-top: 30px;
    }

    .about-footer-silver {
        margin-bottom: 30px;
    }

    .about-footer-content-silver {
        max-width: 100%;
        margin-top: 20px;
    }

    .about-footer-silver .footer-menu-silver {
        margin-top: 30px;
    }

    .testimonial-item-content-silver p {
        font-size: 18px;
    }

    .testimonial-item-author-silver {
        margin-top: 30px;
    }

    .footer-newsletter-box-silver {
        max-width: 100%;
        margin: 0;
    }

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

    .footer-copyright-silver {
        margin-top: 30px;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {

    .hero-content-body-silver {
        margin-bottom: 30px;
    }

    .hero-content-body-silver {
        gap: 20px;
    }

    .hero-body-item-silver {
        width: 100%;
        padding: 10px;
    }

    .hero-body-item-content-silver h3 {
        font-size: 18px;
    }

    .hero-content-footer-silver {
        gap: 30px;
    }

    .hero-image-silver {
        max-width: 100%;
    }

    .about-image-box-1-silver img {
        aspect-ratio: 1 / 1.01;
    }

    .about-image-box-2-silver {
        max-width: 70%;
    }

    .about-counter-box-silver {
        max-width: 100%;
        width: auto;
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px;
    }

    .about-counter-silver h2 {
        font-size: 28px;
    }

    .about-counter-silver p {
        margin: 5px 0 0;
    }

    .about-counter-box-silver .satisfy-client-image img {
        max-width: 34px;
        min-width: 0;
    }

    .about-us-item-silver {
        width: 100%;
    }

    .about-us-item-content-silver h3 {
        font-size: 18px;
    }

    .about-us-footer-silver {
        gap: 20px;
    }

    .about-author-content-silver h3 {
        font-size: 18px;
    }

    .what-we-do-box-silver {
        padding: 20px;
    }

    .what-we-header-counter-silver {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--divider-color);
        padding: 0 0 10px;
        margin: 0 0 10px;
        margin-right: 0;
    }

    .what-we-header-counter-silver p {
        margin: 5px 0 0 0;
    }

    .what-we-counter-info-silver {
        width: 100%;
    }

    .what-we-header-counter-silver h2 {
        font-size: 30px;
    }

    .what-we-body-silver {
        gap: 20px;
    }

    .what-we-body-image-silver {
        width: calc(52% - 10px);
    }

    .what-we-body-image-silver figure {
        margin: 0 0 -20px -20px;
    }

    .what-we-counter-box-silver {
        width: calc(48% - 10px);
    }

    .what-we-counter-box-title-silver h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .what-we-counter-item-silver {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .what-we-counter-item-silver h2 {
        font-size: 30px;
    }

    .what-we-counter-item-silver p {
        font-size: 14px;
    }

    .what-we-content-image-silver,
    .what-we-items-btn-silver {
        width: 100%;
    }

    .what-we-item-content-silver h3 {
        font-size: 18px;
    }

    .what-we-item-content-silver p {
        margin: 5px 0 0 0;
    }

    .what-we-do-btn-silver {
        margin-top: 30px;
    }

    .award-counter-box-silver {
        padding: 30px;
    }

    .award-counter-box-silver h2 {
        font-size: 50px;
    }

    .award-counter-box-silver h3 {
        font-size: 18px;
    }

    .award-item-silver {
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .award-item-content-silver ul li {
        padding: 10px;
    }

    .award-item-content-silver {
        width: 100%;
    }

    .award-item-content-silver h3 {
        font-size: 18px;
    }

    .award-item-content-silver ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .pricing-item-silver {
        padding: 10px;
    }

    .pricing-item-header-silver {
        padding: 10px 10px 20px;
    }

    .pricing-item-header-silver .icon-box {
        margin-bottom: 20px;
    }

    .pricing-item-list-silver h2 {
        font-size: 28px;
    }

    .pricing-item-list-silver sub {
        font-size: 16px;
    }

    .pricing-item-list-silver ul li {
        margin-bottom: 10px;
    }

    .pricing-benefit-list-silver ul {
        gap: 10px;
    }

    .pricing-benefit-list-silver ul li {
        font-size: 14px;
    }

    .pricing-benefit-list-silver ul li img {
        max-width: 16px;
        margin-right: 5px;
    }

    .working-process-item-silver {
        width: 100%;
    }

    .team-item-body-silver {
        padding: 15px;
    }

    .team-item-content-silver h3 {
        font-size: 18px;
    }

    .team-social-btn-silver a {
        width: 40px;
        height: 40px;
    }

    .testimonial-item-content-silver p {
        font-size: 16px;
    }

    .testimonial-author-content-silver h3 {
        font-size: 18px;
    }

    .testimonial-btn-silver {
        position: initial;
        justify-content: left;
        margin-top: 30px;
    }

    .testimonial-footer-content-silver {
        gap: 20px;
    }

    .section-footer-text.section-footer-contact {
        width: 100%;
    }

    .testimonial-review-box-silver {
        width: 100%;
        justify-content: center;
    }

    .footer-menu-silver ul {
        gap: 5px 12px;
    }

    .footer-copyright-silver {
        padding: 15px 0;
    }

    .footer-copyright-box-silver {
        justify-content: center;
    }

    .footer-menu-silver.footer-privacy-policy-silver ul li::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .solo-project-gallery__media {
        height: 320px;
    }

    .solo-project-gallery__zoom {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }
}

/* ==========================================================
   CONTACT DOCK
========================================================== */

.solo-contact-dock {
    position: relative;
    z-index: 1040;
}

/* ==========================================================
   DESKTOP CONTACT DOCK
========================================================== */

.solo-contact-dock__desktop {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 1040;

    display: flex;
    flex-direction: column;
    gap: 8px;

    transform: translateY(-50%);
}

.solo-contact-dock__button {
    --solo-contact-visible-width: 78px;

    width: 210px;
    min-height: 74px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 12px 16px;

    border: 0;
    border-radius: 16px 0 0 16px;

    overflow: hidden;

    color: var(--solo-contact-white);
    text-align: left;
    text-decoration: none;

    cursor: pointer;

    box-shadow:
            -12px 14px 34px rgba(5, 27, 39, 0.17);

    transform: translateX(
            calc(100% - var(--solo-contact-visible-width))
    );

    transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            background-color 0.3s ease,
            box-shadow 0.3s ease;
}

.solo-contact-dock__button:hover,
.solo-contact-dock__button:focus-visible {
    color: var(--solo-contact-white);
    text-decoration: none;

    transform: translateX(0);

    box-shadow:
            -18px 18px 42px rgba(5, 27, 39, 0.23);
}

.solo-contact-dock__button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.95);
    outline-offset: -5px;
}

.solo-contact-dock__button--callback {
    background: var(--solo-contact-blue);
}

.solo-contact-dock__button--callback:hover,
.solo-contact-dock__button--callback:focus-visible {
    background: var(--solo-contact-blue-dark);
}

.solo-contact-dock__button--whatsapp {
    background: var(--solo-contact-whatsapp);
}

.solo-contact-dock__button--whatsapp:hover,
.solo-contact-dock__button--whatsapp:focus-visible {
    background: var(--solo-contact-whatsapp-dark);
}

/* Desktop icons */

.solo-contact-dock__icon {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 48px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    color: var(--solo-contact-white);

    transition:
            background-color 0.3s ease,
            transform 0.3s ease;
}

.solo-contact-dock__icon i {
    font-size: 21px;
    line-height: 1;
}

.solo-contact-dock__button--whatsapp
.solo-contact-dock__icon i {
    font-size: 27px;
}

.solo-contact-dock__button:hover
.solo-contact-dock__icon,
.solo-contact-dock__button:focus-visible
.solo-contact-dock__icon {
    background: rgba(255, 255, 255, 0.23);
    transform: scale(1.04);
}

/* Desktop text */

.solo-contact-dock__text {
    min-width: 122px;

    display: flex;
    flex-direction: column;
    gap: 4px;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transform: translateX(9px);

    transition:
            opacity 0.2s ease 0.06s,
            visibility 0.2s ease 0.06s,
            transform 0.3s ease 0.04s;
}

.solo-contact-dock__button:hover
.solo-contact-dock__text,
.solo-contact-dock__button:focus-visible
.solo-contact-dock__text {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}

.solo-contact-dock__text small {
    color: rgba(255, 255, 255, 0.76);

    font-size: 9px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solo-contact-dock__text strong {
    color: var(--solo-contact-white);

    font-family: var(--accent-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.15;
}

/* ==========================================================
   MOBILE CONTACT BAR
========================================================== */

.solo-contact-dock__mobile {
    display: none;
}

/* ==========================================================
   OVERLAY
========================================================== */

.solo-contact-overlay {
    position: fixed;
    inset: 0;
    z-index: 1080;

    background: rgba(6, 18, 25, 0.6);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    transition:
            opacity 0.35s ease,
            visibility 0.35s ease;
}

body.solo-contact-open .solo-contact-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ==========================================================
   CONTACT PANEL
========================================================== */

.solo-contact-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1090;

    width: min(540px, 100%);
    height: 100dvh;

    background: var(--solo-contact-bg);

    box-shadow:
            -32px 0 80px rgba(4, 20, 29, 0.24);

    outline: none;

    visibility: hidden;

    transform: translateX(105%);

    transition:
            transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.55s ease;
}

body.solo-contact-open .solo-contact-panel {
    visibility: visible;
    transform: translateX(0);
}

.solo-contact-panel__inner {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

/* ==========================================================
   PANEL HEADER
========================================================== */

.solo-contact-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;

    flex: 0 0 auto;

    padding: 34px 40px 30px;

    border-bottom: 1px solid rgba(16, 24, 32, 0.1);

    background: var(--solo-contact-white);
}

.solo-contact-panel__heading {
    max-width: 390px;
}

.solo-contact-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 10px;

    color: var(--solo-contact-blue);

    font-family: var(--accent-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.solo-contact-panel__eyebrow::before {
    content: "";

    width: 18px;
    height: 2px;

    background: var(--solo-contact-blue);
}

.solo-contact-panel__heading h2 {
    margin: 0 0 9px;

    color: var(--solo-contact-dark);

    font-family: var(--accent-font);
    font-size: 39px;
    font-weight: 600;
    line-height: 1.04;

    letter-spacing: -0.04em;
}

.solo-contact-panel__heading p {
    max-width: 380px;

    margin: 0;

    color: var(--solo-contact-text);

    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

/* Existing line element is disabled */

.solo-contact-panel__line {
    display: none;
}

/* Close button */

.solo-contact-panel__close {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 43px;

    padding: 0;

    border: 1px solid rgba(16, 24, 32, 0.12);
    border-radius: 50%;

    background: var(--solo-contact-white);
    color: var(--solo-contact-dark);

    cursor: pointer;

    transition:
            color 0.25s ease,
            border-color 0.25s ease,
            background-color 0.25s ease,
            transform 0.3s ease;
}

.solo-contact-panel__close i {
    font-size: 17px;
    line-height: 1;
}

.solo-contact-panel__close:hover,
.solo-contact-panel__close:focus-visible {
    border-color: var(--solo-contact-blue);

    background: var(--solo-contact-blue);
    color: var(--solo-contact-white);

    transform: rotate(90deg);
}

.solo-contact-panel__close:focus-visible {
    outline: 3px solid rgba(0, 84, 122, 0.16);
    outline-offset: 2px;
}

/* ==========================================================
   PANEL BODY
========================================================== */

.solo-contact-panel__body {
    min-height: 0;

    flex: 1;

    overflow-x: hidden;
    overflow-y: auto;

    padding: 22px 40px 28px;

    overscroll-behavior: contain;
}

.solo-contact-panel__body::-webkit-scrollbar {
    width: 5px;
}

.solo-contact-panel__body::-webkit-scrollbar-track {
    background: transparent;
}

.solo-contact-panel__body::-webkit-scrollbar-thumb {
    border-radius: 20px;

    background: rgba(0, 84, 122, 0.28);
}

/* ==========================================================
   FORM
========================================================== */

.solo-contact-form {
    width: 100%;
}

.solo-contact-form__content {
    width: 100%;
}

.solo-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.solo-contact-field {
    min-width: 0;
    margin: 0;
}

.solo-contact-field--full {
    grid-column: 1 / -1;
}

/* Form controls */

.solo-contact-field input,
.solo-contact-field select,
.solo-contact-field textarea {
    width: 100%;
    min-width: 0;

    border: 1px solid var(--solo-contact-border);
    border-radius: 17px;

    outline: none;

    background: var(--solo-contact-white);
    color: var(--solo-contact-dark);

    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;

    transition:
            border-color 0.25s ease,
            box-shadow 0.25s ease,
            background-color 0.25s ease;
}

.solo-contact-field input,
.solo-contact-field select {
    height: 52px;

    padding: 0 16px;
}

.solo-contact-field textarea {
    height: 100px;
    min-height: 100px;

    padding: 16px;

    resize: none;
}

.solo-contact-field input::placeholder,
.solo-contact-field textarea::placeholder {
    color: #737373;
    opacity: 1;
}

.solo-contact-field input:hover,
.solo-contact-field select:hover,
.solo-contact-field textarea:hover {
    border-color: #c4ced5;
}

.solo-contact-field input:focus,
.solo-contact-field select:focus,
.solo-contact-field textarea:focus {
    border-color: var(--solo-contact-blue);

    background: var(--solo-contact-white);

    box-shadow:
            0 0 0 4px rgba(0, 84, 122, 0.08);
}

/* Select */

.solo-contact-select {
    position: relative;
}

.solo-contact-select select {
    padding-right: 46px;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}

.solo-contact-select > i {
    position: absolute;
    top: 50%;
    right: 17px;

    color: #8b9499;

    font-size: 11px;

    pointer-events: none;

    transform: translateY(-50%);
}

/* Validation */

.solo-contact-field.has-error input,
.solo-contact-field.has-error select,
.solo-contact-field.has-error textarea {
    border-color: var(--solo-contact-error);

    background: rgba(214, 56, 56, 0.02);

    box-shadow:
            0 0 0 3px rgba(214, 56, 56, 0.07);
}

.solo-contact-field__error {
    display: block;

    min-height: 0;

    margin: 5px 4px 0;

    color: var(--solo-contact-error);

    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
}

/* ==========================================================
   CONSENTS
========================================================== */

.solo-contact-consents {
    display: flex;
    flex-direction: column;
    gap: 11px;

    margin: 17px 0 18px;
}

.solo-contact-checkbox {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 0;

    cursor: pointer;
}

.solo-contact-checkbox input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.solo-contact-checkbox__box {
    width: 19px;
    height: 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 19px;

    margin-top: 1px;

    border: 1px solid rgba(16, 24, 32, 0.22);
    border-radius: 5px;

    background: var(--solo-contact-white);
    color: var(--solo-contact-white);

    transition:
            border-color 0.25s ease,
            background-color 0.25s ease,
            box-shadow 0.25s ease;
}

.solo-contact-checkbox__box i {
    font-size: 10px;

    opacity: 0;

    transform: scale(0.55);

    transition:
            opacity 0.2s ease,
            transform 0.2s ease;
}

.solo-contact-checkbox input:checked
+ .solo-contact-checkbox__box {
    border-color: var(--solo-contact-blue);
    background: var(--solo-contact-blue);
}

.solo-contact-checkbox input:checked
+ .solo-contact-checkbox__box i {
    opacity: 1;
    transform: scale(1);
}

.solo-contact-checkbox input:focus-visible
+ .solo-contact-checkbox__box {
    box-shadow:
            0 0 0 4px rgba(0, 84, 122, 0.12);
}

.solo-contact-checkbox.has-error
.solo-contact-checkbox__box {
    border-color: var(--solo-contact-error);
}

.solo-contact-checkbox__text {
    color: var(--solo-contact-text);

    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}

.solo-contact-checkbox__text a {
    color: var(--solo-contact-blue);

    font-size: inherit;
    font-weight: 600;

    text-decoration: underline;
    text-underline-offset: 2px;
}

.solo-contact-checkbox__text strong {
    color: var(--solo-contact-error);

    font-size: inherit;
}

.solo-contact-consent-error {
    display: block;

    margin-top: -5px;
    margin-left: 29px;

    color: var(--solo-contact-error);

    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
}

/* ==========================================================
   SUBMIT BUTTON
========================================================== */

.solo-contact-submit {
    position: relative;

    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 13px 63px 13px 20px;

    border: 0;
    border-radius: 14px;

    overflow: hidden;

    background: var(--solo-contact-blue);
    color: var(--solo-contact-white);

    font-family: var(--accent-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    cursor: pointer;

    transition:
            background-color 0.3s ease,
            box-shadow 0.3s ease,
            transform 0.2s ease;
}

.solo-contact-submit:hover,
.solo-contact-submit:focus-visible {
    background: var(--solo-contact-blue-dark);

    box-shadow:
            0 14px 30px rgba(0, 84, 122, 0.22);
}

.solo-contact-submit:focus-visible {
    outline: 3px solid rgba(0, 84, 122, 0.18);
    outline-offset: 3px;
}

.solo-contact-submit:active {
    transform: translateY(1px);
}

.solo-contact-submit__icon {
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;

    width: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.13);
}

.solo-contact-submit__icon i {
    font-size: 13px;

    transition: transform 0.25s ease;
}

.solo-contact-submit:hover
.solo-contact-submit__icon i {
    transform: translateX(3px);
}

.solo-contact-submit__loader {
    display: none;
}

.solo-contact-submit.is-loading {
    pointer-events: none;
    cursor: wait;
}

.solo-contact-submit.is-loading
.solo-contact-submit__label,
.solo-contact-submit.is-loading
.solo-contact-submit__icon {
    display: none;
}

.solo-contact-submit.is-loading
.solo-contact-submit__loader {
    display: inline-flex;
}

/* ==========================================================
   SUCCESS VIEW
========================================================== */

.solo-contact-success {
    min-height: 430px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.solo-contact-success[hidden] {
    display: none;
}

.solo-contact-success__icon {
    width: 72px;
    height: 72px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 50%;

    background: rgba(37, 211, 102, 0.12);
    color: var(--solo-contact-whatsapp);

    font-size: 25px;
}

.solo-contact-success h3 {
    margin: 0 0 10px;

    color: var(--solo-contact-dark);

    font-family: var(--accent-font);
    font-size: 35px;
    font-weight: 600;
    line-height: 1.1;

    letter-spacing: -0.04em;
}

.solo-contact-success p {
    max-width: 350px;

    margin: 0 0 25px;

    color: var(--solo-contact-text);

    font-size: 14px;
    line-height: 1.6;
}

.solo-contact-success__close {
    min-height: 45px;

    padding: 11px 19px;

    border: 1px solid var(--solo-contact-border);
    border-radius: 10px;

    background: var(--solo-contact-white);
    color: var(--solo-contact-dark);

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
            border-color 0.25s ease,
            color 0.25s ease,
            background-color 0.25s ease;
}

.solo-contact-success__close:hover,
.solo-contact-success__close:focus-visible {
    border-color: var(--solo-contact-blue);

    background: var(--solo-contact-blue);
    color: var(--solo-contact-white);
}

/* ==========================================================
   PANEL FOOTER
========================================================== */

.solo-contact-panel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    flex: 0 0 auto;

    padding: 17px 40px;

    border-top: 1px solid rgba(16, 24, 32, 0.09);

    background: var(--solo-contact-white);
}

.solo-contact-panel__footer > span {
    color: rgba(16, 24, 32, 0.45);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.solo-contact-panel__footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--solo-contact-blue);

    font-family: var(--accent-font);
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.solo-contact-panel__footer a:hover {
    color: var(--solo-contact-blue-dark);
}

/* ==========================================================
   TABLET AND MOBILE
========================================================== */

@media only screen and (max-width: 991px) {

    body {
        padding-bottom:
                calc(64px + env(safe-area-inset-bottom));
    }

    .solo-contact-dock__desktop {
        display: none;
    }

    /* Mobile bottom bar */

    .solo-contact-dock__mobile {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1040;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        min-height: 64px;

        padding-bottom: env(safe-area-inset-bottom);

        box-shadow:
                0 -12px 30px rgba(4, 20, 29, 0.18);
    }

    .solo-contact-mobile-button {
        min-width: 0;
        min-height: 64px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;

        padding: 12px 9px;

        border: 0;

        color: var(--solo-contact-white);

        font-family: var(--accent-font);
        font-size: 13px;
        font-weight: 600;
        line-height: 1;

        text-decoration: none;

        cursor: pointer;
    }

    .solo-contact-mobile-button:hover,
    .solo-contact-mobile-button:focus-visible {
        color: var(--solo-contact-white);
        text-decoration: none;
    }

    .solo-contact-mobile-button--callback {
        background: var(--solo-contact-blue);
    }

    .solo-contact-mobile-button--whatsapp {
        background: var(--solo-contact-whatsapp);
    }

    .solo-contact-mobile-button > i {
        font-size: 18px;
        line-height: 1;
    }

    .solo-contact-mobile-button--whatsapp > i {
        font-size: 23px;
    }

    /* Full-screen mobile panel */

    .solo-contact-panel {
        top: 0;
        right: 0;
        bottom: auto;

        width: 100%;
        height: 100dvh;
        max-height: 100dvh;

        border-radius: 0;

        transform: translateY(105%);
    }

    body.solo-contact-open .solo-contact-panel {
        transform: translateY(0);
    }

    .solo-contact-panel__inner {
        height: 100dvh;
        max-height: 100dvh;
    }

    /* Mobile header */

    .solo-contact-panel__top {
        padding:
                max(16px, env(safe-area-inset-top))
                16px
                16px;

        border-bottom:
                1px solid rgba(16, 24, 32, 0.1);
    }

    .solo-contact-panel__eyebrow {
        margin-bottom: 8px;

        font-size: 10px;
        line-height: 1;
    }

    .solo-contact-panel__eyebrow::before {
        width: 13px;
    }

    .solo-contact-panel__heading h2 {
        margin-bottom: 7px;

        font-size: 28px;
        line-height: 1.05;
    }

    .solo-contact-panel__heading p {
        max-width: 315px;

        font-size: 12px;
        line-height: 1.45;
    }

    .solo-contact-panel__close {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .solo-contact-panel__close i {
        font-size: 16px;
    }

    /* Mobile body */

    .solo-contact-panel__body {
        display: flex;

        flex: 1;

        min-height: 0;

        overflow-x: hidden;
        overflow-y: auto;

        padding: 13px 12px 15px;
    }

    .solo-contact-form {
        width: 100%;
        min-height: 0;
    }

    .solo-contact-form__content {
        width: 100%;

        display: flex;
        flex-direction: column;
    }

    /* Mobile form */

    .solo-contact-form__grid {
        gap: 12px;
    }

    .solo-contact-field input,
    .solo-contact-field select {
        height: 48px;

        padding-right: 14px;
        padding-left: 14px;

        border-radius: 14px;

        font-size: 13px;
        line-height: 1.3;
    }

    .solo-contact-field textarea {
        height: 82px;
        min-height: 82px;

        padding: 14px;

        border-radius: 14px;

        font-size: 13px;
        line-height: 1.45;
    }

    .solo-contact-field input::placeholder,
    .solo-contact-field textarea::placeholder {
        font-size: 13px;
    }

    .solo-contact-select > i {
        right: 15px;

        font-size: 11px;
    }

    .solo-contact-field__error {
        margin-top: 3px;

        font-size: 10px;
        line-height: 1.35;
    }

    /* Mobile consent text */

    .solo-contact-consents {
        gap: 12px;

        margin: 14px 0 15px;
    }

    .solo-contact-checkbox {
        gap: 9px;
    }

    .solo-contact-checkbox__box {
        width: 18px;
        height: 18px;

        flex-basis: 18px;

        margin-top: 0;
    }

    .solo-contact-checkbox__box i {
        font-size: 9px;
    }

    .solo-contact-checkbox__text {
        font-size: 11px;
        line-height: 1.45;
    }

    .solo-contact-consent-error {
        margin-top: -5px;
        margin-left: 27px;

        font-size: 10px;
        line-height: 1.35;
    }

    /* Mobile submit */

    .solo-contact-submit {
        min-height: 48px;

        padding-top: 11px;
        padding-bottom: 11px;

        border-radius: 12px;

        font-size: 13px;
    }

    .solo-contact-submit__icon {
        top: 5px;
        right: 5px;
        bottom: 5px;

        width: 38px;
    }

    .solo-contact-panel__footer {
        display: none;
    }

    .solo-contact-success {
        min-height: 100%;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media only screen and (max-width: 575px) {

    .solo-contact-panel__top {
        gap: 12px;
    }

    .solo-contact-panel__heading p {
        max-width: 285px;
    }
}

/* ==========================================================
   NARROW MOBILE
========================================================== */

@media only screen and (max-width: 359px) {

    .solo-contact-form__grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .solo-contact-field--full {
        grid-column: auto;
    }

    .solo-contact-field input,
    .solo-contact-field select {
        height: 44px;
    }

    .solo-contact-field textarea {
        height: 68px;
        min-height: 68px;
    }

    .solo-contact-checkbox__text {
        font-size: 10.5px;
    }
}

/* ==========================================================
   SHORT MOBILE SCREENS
========================================================== */

@media only screen and (max-width: 991px) and (max-height: 700px) {

    .solo-contact-panel__top {
        padding-top:
                max(11px, env(safe-area-inset-top));

        padding-bottom: 10px;
    }

    .solo-contact-panel__eyebrow {
        margin-bottom: 5px;
    }

    .solo-contact-panel__heading h2 {
        margin-bottom: 4px;

        font-size: 25px;
    }

    .solo-contact-panel__heading p {
        font-size: 11px;
        line-height: 1.35;
    }

    .solo-contact-panel__body {
        padding-top: 9px;
        padding-bottom: 10px;
    }

    .solo-contact-form__grid {
        gap: 8px;
    }

    .solo-contact-field input,
    .solo-contact-field select {
        height: 43px;
    }

    .solo-contact-field textarea {
        height: 64px;
        min-height: 64px;
    }

    .solo-contact-consents {
        gap: 8px;

        margin: 9px 0 10px;
    }

    .solo-contact-checkbox__text {
        font-size: 10.5px;
        line-height: 1.35;
    }

    .solo-contact-submit {
        min-height: 44px;
    }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .solo-contact-dock__button,
    .solo-contact-dock__icon,
    .solo-contact-dock__text,
    .solo-contact-panel,
    .solo-contact-overlay,
    .solo-contact-panel__close,
    .solo-contact-submit,
    .solo-contact-submit__icon i {
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================
   ENGLISH CONTACT DOCK
========================================================== */

html.site-lang-en .solo-contact-dock__button {
    width: 238px;
}

html.site-lang-en .solo-contact-dock__text {
    min-width: 150px;
}

html.site-lang-en .solo-contact-dock__text small {
    font-size: 9px;
    letter-spacing: 0.055em;
}

html.site-lang-en .solo-contact-dock__text strong {
    font-size: 14px;
    letter-spacing: -0.01em;
}