@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Font Awesome 7 Free - Webfonts */
@font-face {
    font-family: "Font Awesome 7 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 7 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-regular-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 7 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}

.fa-brands,
.fab {
    font-family: "Font Awesome 7 Brands" !important;
    font-weight: 400;
}

.fa-solid,
.fas {
    font-family: "Font Awesome 7 Free" !important;
    font-weight: 900;
}

.fa-regular,
.far {
    font-family: "Font Awesome 7 Free" !important;
    font-weight: 400;
}

/* Varialbes */
:root {
    --font-default: "Poppins", sans-serif;
    --fontawesome: "Font Awesome 7 Free";
    --black: #000000;
    --dark: #0c0c0c;
    --dark-secondary: #24282b;
    --white: #ffffff;
    --color-primary: #a20a09;
    --color-secondary: #023373;
    --color-accent: #0161b7;
    --color-danger: #de1003;
    --color-brand-dark: #004b96;
    --color-white: #fff;
    --color-text: #232323;
    --color-style-two: #ee2852;
    --color-style-three: #ca1579;
    --color-heading: #232323;
    --color-paragraph: #666666;
    --border-default: #e7e7e7;
    --box-shadow-primary: 0 0 25px rgb(0 0 0 / 8%);
    --box-shadow-secondary: 0 10px 30px 0 rgb(44 130 237 / 40%);
    --box-shadow-tertiary: 0px 2px 12px 0px #e7e7e7;
    --box-shadow-dark: 0px 0px 0px;
    --bg-gray: linear-gradient(
        90deg,
        rgba(237, 245, 255, 1) 0%,
        rgba(204, 223, 247, 1) 100%
    );
    --bg-gradient: linear-gradient(90deg, #8f0a09 0%, #023373 100%);

    --bg-gradient-secondary: linear-gradient(135deg, #023373 0%, #0161b7 100%);

    --radius: 25px;
}

/*
** General Styles for HTML tags
*/
/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrapper {
    height: 100%;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 5px;
    max-width: 100%;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a img {
    border: none;
}

a:active {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
    opacity: 1;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a:hover {
    outline: none;
    text-decoration: none;
    color: var(--color-primary);
    opacity: 1;
}

.torch-red a:hover {
    color: var(--color-style-two);
}

button {
    outline: medium none;
}

iframe {
    border: none;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eeeeee;
}

pre {
    display: block;
    margin: 0 0 30px;
    padding: 9.5px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333333;
    border: 1px solid #ededed;
    border-radius: inherit;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143;
}

input {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    min-height: 50px;
}

input:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

textarea:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

select:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

ul {
    list-style-type: none;
}

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

b {
    font-weight: 600;
}

strong {
    font-weight: 600;
}

.row {
    --bs-gutter-x: 30px;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    overflow-x: clip;
    background-color: var(--white);
    color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

a,
.btn,
button {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    outline: medium none;
    text-decoration: none;
    font-weight: 600;
}

p {
    color: var(--color-paragraph);
    margin: 0 0 25px;
    text-transform: none;
    font-weight: 400;
    font-family: var(--font-default);
}

.form-group {
    margin-bottom: 20px;
}

/* Default CSS */

.container-medium {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px;
}

.container-full {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px;
}

.container-fill {
    padding: 0 15px;
    margin: auto;
    max-width: 100%;
    padding: 0;
}

@media (min-width: 576px) {
    .container-medium {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-medium {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-medium {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-medium {
        max-width: 1400px;
        width: 80%;
    }
}

@media (min-width: 576px) {
    .container-full {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-full {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-full {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-full {
        max-width: 1400px;
        width: 90%;
    }
}

@media (min-width: 576px) {
    .container-fill {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-fill {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-fill {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-fill {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .container-fill {
        padding: 0 15px;
    }
}

.fixed-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.bg-cover {
    background-position: center center;
    background-size: cover;
}

.bg-fixed {
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
}

.bg-gray {
    background: linear-gradient(
        90deg,
        rgba(237, 245, 255, 1) 0%,
        rgba(204, 223, 247, 1) 100%
    );
}

.bg-light {
    background-color: var(--white);
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-theme {
    background-color: var(--color-primary);
}

.bg-gradient {
    background: var(--bg-gradient) !important;
}

.torch-red .bg-gradient {
    background: var(--bg-gradient-secondary) !important;
}

.gradient-bg {
    background-image: linear-gradient(
        90deg,
        var(--color-secondary) 23%,
        var(--color-primary) 100%
    );
    background-color: var(--color-primary);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light a {
    color: var(--white);
}

.shadow {
    position: relative;
    z-index: 1;
    box-shadow: inherit !important;
}

.shadow.dark::after {
    background: var(--black) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.shadow.dark-hard::after {
    background: var(--black) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.75;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.shadow.theme::after {
    background: var(--color-primary) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.shadow.theme-hard::after {
    background: var(--color-primary) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
    position: relative;
}

.default-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.default-padding-top {
    padding-top: 120px;
}

.default-padding-bottom {
    padding-bottom: 50px;
}

.default-padding-bottom.bottom-less {
    margin-bottom: -30px;
}

.default-padding-top.bottom-less {
    margin-bottom: -30px;
}

.top-border {
    border-top: 1px solid #e7e7e7;
}

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

/* Button */

.btn {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: var(--radius);
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.btn-md {
    padding: 17px 42px;
}

.btn-md.btn-theme {
    padding: 17px 40px;
}

.btn-md i {
    font-size: 18px;
    position: relative;
    top: 3px;
    margin-left: 30px;
}

.btn-md i::after {
    position: absolute;
    left: -19px;
    top: 8px;
    content: "";
    border: 1px solid var(--white);
    width: 30px;
    height: 1px;
}

.btn-sm {
    padding: 14px 40px;
    font-size: 14px;
}

a:hover,
a:active {
    opacity: 1;
    text-decoration: none;
}

.btn.btn-gradient {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.btn.btn-gradient::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
        to right,
        var(--color-primary),
        var(--color-secondary),
        var(--color-primary)
    );
    background-size: 220% 150%;
    text-transform: uppercase;
    display: inline-block;
    color: var(--white) !important;
    background-color: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.torch-red .btn.btn-gradient::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
        to right,
        var(--color-style-two),
        var(--color-style-three),
        var(--color-style-two)
    );
    background-size: 220% 150%;
    text-transform: uppercase;
    display: inline-block;
    color: var(--white) !important;
    background-color: var(--color-style-two);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-gradient:hover::after,
.btn.btn-gradient:active {
    background-position: -70% 0;
    color: var(--white);
}

.btn.btn-light.effect {
    color: var(--color-heading);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.btn.btn-light.effect::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--white);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-light.effect:hover {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn.btn-light.effect:hover::after {
    width: 0;
}

.btn.btn-dark.effect {
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px 0 rgb(44 130 237 / 40%);
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.btn.btn-dark.effect::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #202942;
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-dark.effect:hover {
    border: 2px solid #202942;
    color: #202942;
    background: transparent;
}

.btn.btn-dark.effect:hover::after {
    width: 0;
}

.btn-light.border {
    background: var(--white);
    border: 2px solid #e7e7e7 !important;
}

.btn.btn-theme.effect {
    color: var(--white);
    border: 2px solid #35b4f1;
    overflow: hidden;
    position: relative;
}

.btn.btn-theme.effect::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #35b4f1;
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-theme.effect::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.shadow .btn.btn-theme.effect::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--white);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-theme.effect:hover {
    border: 2px solid var(--color-primary);
    color: var(--white);
    background: transparent;
}

.shadow .btn.btn-theme.effect:hover {
    border: 2px solid var(--white);
    color: var(--color-heading);
    background: transparent;
}

.btn.btn-theme.effect:hover::after {
    width: 0;
}

.btn.btn-theme.effect:hover::before {
    width: 100%;
}

.torch-red .btn.btn-theme.effect {
    color: var(--white);
    border: 2px solid var(--color-style-two);
    overflow: hidden;
    position: relative;
}

.torch-red .btn.btn-theme.effect::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-style-two);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.torch-red .btn.btn-theme.effect::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.torch-red .shadow .btn.btn-theme.effect::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--white);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.torch-red .btn.btn-theme.effect:hover {
    border: 2px solid var(--color-primary);
    color: var(--white);
    background: transparent;
}

.torch-red .shadow .btn.btn-theme.effect:hover {
    border: 2px solid var(--white);
    color: var(--color-style-two);
    background: transparent;
}

.torch-red .btn.btn-theme.effect:hover::after {
    width: 0;
}

.torch-red .btn.btn-theme.effect:hover::before {
    width: 100%;
}

.btn-theme-border {
    border: 2px solid var(--color-primary);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-theme-border::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn-theme-border.circle::after {
    border-radius: var(--radius);
}

.btn-theme-border:hover::after {
    width: 100%;
}

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

.btn-light-border {
    border: 2px solid var(--white);
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.btn-light-border::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--white);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn-light-border.circle::after {
    border-radius: var(--radius);
}

.btn-light-border:hover::after {
    width: 100%;
}

.btn-light-border:hover {
    color: var(--color-heading);
}

.btn-theme-effect {
    border: 2px solid var(--color-primary);
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.btn-theme-effect::after {
    position: absolute;
    left: -10%;
    top: -10%;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn-theme-effect.circle::after {
    border-radius: var(--radius);
}

.btn-theme-effect:hover::after {
    width: 0;
}

.btn-theme-effect:hover {
    color: var(--color-heading);
}

/* End Button */

.relative {
    position: relative;
    z-index: 1;
}

.bg-fixed {
    background-attachment: fixed !important;
    background-position: center center !important;
    background-size: cover !important;
}

.bg-cover {
    background-position: center center !important;
    background-size: cover !important;
}

.overflow-hidden {
    overflow: hidden;
}

button,
button:focus {
    border: none !important;
    box-shadow: inherit !important;
    outline: inherit !important;
}

/* Start Site Heading */
.site-heading h4 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    display: inline-block;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.torch-red .site-heading h4 {
    color: var(--color-style-two);
    background: var(--bg-gradient-secondary);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-heading p {
    margin: 0;
    margin-top: 10px;
}

.site-heading h2 {
    display: block;
    font-weight: 600;
    position: relative;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .site-heading h2 {
        font-size: 50px;
    }

    .title {
        font-size: 50px;
        line-height: 1.1;
    }
}

.site-heading .devider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    z-index: 1;
    left: 10px;
}

.torch-red .site-heading .devider {
    background: var(--color-style-two);
}

.site-heading.light .devider {
    background: var(--white);
}

.site-heading .devider:before {
    position: absolute;
    left: -15px;
    top: 0;
    content: "";
    height: 2px;
    width: 10px;
    background: var(--color-primary);
}

.torch-red .site-heading .devider:before {
    background: var(--color-style-two);
}

.area-title {
    font-size: 40px;
    line-height: 1.2;
}

.site-heading {
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: -5px;
}

.left-heading {
    margin-bottom: 60px;
}

.left-heading h4 {
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: -5px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left-heading h2 {
    font-weight: 600;
    margin-bottom: 0;
}

.carousel-shadow .owl-stage-outer {
    margin: -15px -15px;
    padding: 15px;
}

@media only screen and (min-width: 1100px) {
    .left-border::before {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 70px;
        background: #edf5ff;
    }

    .bg-gray.left-border::before {
        background: var(--white);
    }
}

/* ============================================================== 
     # Top Bar 
=================================================================== */

.top-bar-area .container-full {
    padding: 0 30px;
}

.top-bar-area {
    font-family: var(--font-default);
    font-weight: 400;
}

.top-bar-area.transparent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.top-bar-area.transparent i {
    color: var(--white) !important;
}

.top-bar-area.inc-border {
    border-bottom: 1px solid #e7e7e7;
}

.top-bar-area li {
    display: inline-block;
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
    z-index: 1;
}

.top-bar-area li:first-child {
    margin: 0;
    padding: 0;
    border: none;
}

.top-bar-area p {
    margin: 0;
    font-weight: 600;
}

.top-bar-area p a {
    text-decoration: underline;
    font-weight: 600;
}

.top-bar-area.inc-border {
    border-bottom: 1px solid #e7e7e7;
}

.top-bar-area .button a {
    display: inline-block;
    padding: 6px 25px;
    color: var(--white);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.top-bar-area li::after {
    position: absolute;
    left: 0;
    top: 5px;
    content: "";
    height: 19px;
    width: 1px;
    border-left: 1px solid #dddddd;
}

.top-bar-area.transparent li::after {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    height: 80px;
    top: -30px;
}

.top-bar-area li:first-child::after {
    display: none;
}

.top-bar-area .item-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar-area .social ul {
    margin-left: 30px;
}

.top-bar-area .social ul li::after {
    display: none;
}

.top-bar-area .social li {
    margin-left: 10px;
}

.top-bar-area.inc-pad {
    padding: 10px 0;
}

.top-bar-area.inc-padding {
    padding: 10px 0;
}

.top-bar-area .button i {
    margin-right: 5px;
}

.top-bar-area .info li i {
    margin-right: 5px;
    color: #104cba;
}

.top-bar-area.fixed {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
}

.top-bar-area.fixe .row {
    align-items: center;
}

.top-bar-area.fixed {
    padding: 20px 0;
}

.top-bar-area .address-info li {
    text-align: left;
}

.top-bar-area .address-info li .icon,
.top-bar-area .address-info li .info {
    display: inline-block;
}

.top-bar-area .address-info li .icon i {
    margin-right: 10px;
}

.top-bar-area .info a {
    margin-left: 20px;
}

.top-bar-area.fixed .container {
    padding-right: 30px;
}

.top-bar-area.bg-dark .info li i,
.top-bar-area.bg-theme .info li i,
.top-bar-area.bg-gradient .info li i {
    color: var(--white);
}

.top-bar-area.inc-logo {
    padding: 15px 0;
}

.top-bar-area .info-colums ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar-area .info-colums ul .info span {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}

.top-bar-area .info-colums li i {
    font-size: 35px;
}

.top-bar-area .info-colums ul .info {
    font-size: 14px;
    text-align: left;
}

.top-bar-area .info-colums .info,
.top-bar-area .info-colums .icon {
    display: inline-block;
}

.top-bar-area .info-colums ul li {
    text-align: left;
}

.top-bar-area .info-colums ul li .info {
    line-height: 24px;
}

.top-bar-area .info-colums ul li .icon {
    margin-right: 15px;
}

.top-bar-area .info-colums ul li::after {
    height: 90%;
    top: 5%;
}

.top-bar-area.bg-theme .info-colums ul li::after {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-area .info-colums ul li .icon i {
    color: #104cba;
}

.top-bar-area.bg-theme .info-colums ul li .icon i {
    color: var(--white);
}

.top-bar-area.bg-theme {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================================== 
     # Bradcrumb 
=================================================================== */
.breadcrumb-area {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.breadcrumb-area.top-pad-extra {
    padding-top: 240px;
}

.breadcrumb-area .row {
    position: relative;
    z-index: 1;
}

.breadcrumb-area .breadcrumb {
    background: transparent none repeat scroll 0 0;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-area h1 {
    display: block;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 40px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.breadcrumb > li + li::before {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    padding: 0 5px;
    color: var(--white);
    display: none;
}

.breadcrumb-area .breadcrumb li i {
    margin-right: 5px;
}

.breadcrumb-area .breadcrumb li {
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.breadcrumb-area .breadcrumb li::after {
    content: "";
    height: 2px;
    left: -10px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    background: var(--white);
    width: 15px;
}

.breadcrumb-area .breadcrumb li:first-child::after {
    display: none;
}

.breadcrumb-area .breadcrumb a,
.breadcrumb-area .breadcrumb li {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--font-default);
}

/* ============================================================== 
     # Banner 
=================================================================== */
body,
.banner-area,
.banner-area div {
    height: 100%;
}

.banner-area.auto-height,
.banner-area.auto-height div {
    height: auto;
}

.banner-area.auto-height .content {
    padding: 150px 0;
}

.banner-area .box-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.banner-area .box-table {
    display: table;
    width: 100%;
}

.banner-area .box-cell,
.banner-area .box-cell div {
    height: auto;
}

.banner-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-area .content {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

/* Animation delays */
.banner-area .carousel-item h1:first-child,
.banner-area .carousel-item h2:first-child,
.banner-area .carousel-item h3:first-child,
.banner-area .carousel-item h4:first-child,
.banner-area .carousel-item h5:first-child,
.banner-area .carousel-item h6:first-child {
    animation-delay: 0.5s;
}

.banner-area .carousel-item h1:nth-child(2),
.banner-area .carousel-item h2:nth-child(2),
.banner-area .carousel-item h3:nth-child(2),
.banner-area .carousel-item h4:nth-child(2),
.banner-area .carousel-item h5:nth-child(2),
.banner-area .carousel-item h6:nth-child(2) {
    animation-delay: 0.7s;
}

.banner-area .carousel-item p {
    animation-delay: 0.5s;
}

.banner-area .carousel-item ul {
    animation-delay: 0.6s;
}

.banner-area .carousel-item a,
.banner-area .carousel-item button {
    animation-delay: 0.7s;
}

/* Carousel Fade Effect */
.carousel-fade .carousel-inner .carousel-item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .carousel-item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
    z-index: 2;
}
/* Slider Zoom Effect */
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.2, 1.2);
    }
}

@-moz-keyframes zoom {
    from {
        -moz-transform: scale(1, 1);
    }

    to {
        -moz-transform: scale(1.2, 1.2);
    }
}

@-o-keyframes zoom {
    from {
        -o-transform: scale(1, 1);
    }

    to {
        -o-transform: scale(1.2, 1.2);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.2, 1.2);
    }
}

.carousel-inner .carousel-item > .slider-thumb {
    -webkit-animation: zoom 20s;
    animation: zoom 20s;
}

.banner-area .carousel-zoom .slider-thumb {
    height: 100%;
    position: absolute;
    width: 100%;
}

.banner-area .carousel-control {
    background: transparent none repeat scroll 0 0;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    margin-top: -25px;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 60px;
    z-index: 9;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--white) !important;
    border-radius: 50%;
    color: var(--white);
    opacity: 0;
    transition: all 0.35s ease-in-out;
}

.banner-area .carousel-control.shadow {
    background: transparent none repeat scroll 0 0;
    color: var(--white);
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    opacity: 1;
    padding: 0;
    position: absolute;
    text-shadow: inherit;
    top: 50%;
    width: 50px;
    z-index: 1;
}

.banner-area .carousel-control.shadow::after {
    background: #1e2726 none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.banner-area .carousel-control.left {
    left: -80px;
}

.banner-area .carousel-control.left::after {
    position: absolute;
    left: 25px;
    top: 50%;
    content: "";
    height: 1px;
    width: 80px;
    background: var(--white);
}

.banner-area .carousel-control.left::before {
    position: absolute;
    left: 20px;
    top: 22px;
    content: "";
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid var(--white);
}

.banner-area:hover .carousel-control.left {
    left: 50px;
    opacity: 1;
}

.banner-area:hover .carousel-control.shadow.left {
    left: 20px;
}

.banner-area .carousel-control.right {
    right: -80px;
}

.banner-area:hover .carousel-control.right {
    right: 50px;
    opacity: 1;
}

.banner-area .carousel-control.right::after {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    height: 1px;
    width: 80px;
    background: var(--white);
}

.banner-area .carousel-control.right::before {
    position: absolute;
    right: 20px;
    top: 23px;
    content: "";
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--white);
}

.banner-area:hover .carousel-control.shadow.right {
    right: 20px;
}

/* Carousel Contril Right Position */
.banner-area .carousel-control.position-right {
    position: absolute;
    right: -100px;
    left: auto !important;
    margin: 0;
    top: 50%;
    transform: translateX(-50%);
}

.banner-area .carousel-control.position-right.right {
    margin-top: -80px;
}

.banner-area:hover .carousel-control.position-right.left,
.banner-area:hover .carousel-control.position-right.right {
    right: 0;
    left: auto !important;
}

.carousel-control.light-bg::after,
.carousel-control.light-bg::before {
    display: none;
}

.carousel-control.light-bg {
    background: var(--white);
    color: var(--color-primary);
    box-shadow: 0 0 10px #cccccc !important;
}

.banner-area .container {
    position: relative;
}

/* Carousel Indicators */

.banner-area .carousel-indicator {
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 100%;
}

.banner-area .carousel-indicators {
    position: absolute;
    right: auto;
    left: 0;
    width: auto;
    height: auto;
    top: auto;
    bottom: 0;
    margin: 0;
    padding: 30px 0;
}

.banner-area .carousel-indicators.right {
    padding: 80px 0;
    left: auto;
    right: 0;
}

.banner-area .carousel-indicators button {
    display: block;
    height: 20px;
    width: 20px;
    margin: 10px 5px;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: transparent;
    position: relative;
    z-index: 1;
}

.banner-area .carousel-indicators.theme button {
    border: 2px solid #e7e7e7 !important;
    opacity: 1;
}

.banner-area .carousel-indicators button.active {
    border: 2px solid var(--white) !important;
}

.banner-area .carousel-indicators.theme button.active {
    border: 2px solid var(--color-primary) !important;
}

.torch-red .banner-area .carousel-indicators.theme button.active {
    border: 2px solid var(--color-style-two) !important;
}

.banner-area .carousel-indicators button::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: var(--white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.banner-area .carousel-indicators.theme button::after {
    background: var(--color-primary);
}

.torch-red .banner-area .carousel-indicators.theme button::after {
    background: var(--color-style-two);
}

.double-items > .row div {
    height: auto;
}

/* Content */
.banner-area .top-right-shape {
    position: absolute;
    right: 0;
    top: 0;
    height: 100% !important;
    width: 60%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: right top;
}

.banner-area .top-left-shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 60% !important;
    width: 60%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: left top;
}

.banner-area .shape-thumb {
    margin-right: -50px;
}

.banner-area .shape-thumb img {
    padding: 50px;
}

.banner-area.top-pad-140p .carousel-item {
    padding-top: 140px;
}

.banner-area.inc-shape::after {
    position: absolute;
    right: -100px;
    top: -200px;
    content: "";
    height: 600px;
    width: 800px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 57%,
        var(--color-secondary) 100%
    );
    z-index: -1;
    border-radius: var(--radius);
    transform: rotate(45deg);
    opacity: 0.1;
}

.banner-area.text-default h4 {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 25px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        var(--color-secondary) 37%
    );
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.torch-red .banner-area.text-default h4 {
    color: var(--color-style-two);
    background: linear-gradient(
        90deg,
        var(--color-style-two) 0%,
        var(--color-style-three) 37%
    );
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-area.text-default h2 {
    font-weight: 600;
    font-size: 70px;
    margin: 0;
    line-height: 1.1;
}

.banner-area.text-default a {
    margin-top: 40px;
}

.banner-area.inc-video h2 {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
}

.banner-area.inc-video h4 {
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 30px;
}

.banner-area h2 span {
    font-weight: 200;
}

.banner-area.inc-video a.btn {
    margin-top: 23px;
}

.banner-area p {
    padding-right: 30%;
    font-size: 18px;
    line-height: 36px;
    font-weight: 300;
}

.banner-area.text-center p {
    padding-left: 15%;
    padding-right: 15%;
}

.banner-area.inc-video a span {
    position: absolute;
    left: 80px;
    top: 0;
    min-width: 129px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: inherit;
}

.banner-area.inc-video a.video-play-button {
    margin-bottom: 50px;
}

.banner-area.inc-video .content {
    overflow: inherit;
}

.banner-area.top-pad-50 .content {
    padding-top: 50px;
}

.banner-area.top-pad-80 .content {
    padding-top: 80px;
}

.banner-area .shape-right-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 60%;
    width: 40%;
    z-index: 9;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.banner-area.text-big h2 {
    font-size: 150px;
    line-height: 120px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner-area.text-big h2 span {
    font-weight: 100;
    font-size: 80px;
    display: block;
    line-height: 1.2;
}

.banner-area.text-big a.btn {
    margin-top: 20px;
}

.banner-area .fixed-shape {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100% !important;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.5;
}

.banner-area.auto-height .shape-thumb img {
    padding: 50px;
    margin-top: 120px;
    padding-bottom: 0;
}

.banner-area.auto-height .content {
    padding: 0;
    padding-top: 120px;
}

/* ============================================================== 
     # Video Button Play
=================================================================== */
.video-play-button {
    color: var(--color-primary);
    font-size: 30px;
    left: 50%;
    padding-left: 7px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--white) repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button.theme:before,
.video-play-button.theme:after {
    background: var(--color-primary) repeat scroll 0 0;
}

.orange .video-play-button.theme:before,
.orange .video-play-button.theme:after {
    background: #ff5621 repeat scroll 0 0;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--white) repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
            scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-play-button i {
    display: block;
    position: relative;
    z-index: 3;
    color: var(--color-primary);
}

.torch-red .video-play-button i {
    color: var(--color-style-two);
}

.video-play-button.theme i {
    color: var(--white);
}

.video-play-button.relative {
    position: relative;
    display: inline-block;
    left: 30px;
    height: 68px;
    width: 68px;
    line-height: 68px;
    text-align: center;
    margin-top: 0 !important;
    top: 55px;
    margin-left: 10px;
}

.video-play-button.relative::before,
.video-play-button.relative::after {
    height: 68px;
    width: 68px;
    line-height: 68px;
}

.video-play-button.relative i {
    line-height: 70px;
    font-size: 25px;
}

/* Nice Select CSS */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: var(--white);
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 50px;
    line-height: 50px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 15px;
    z-index: 1;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    overflow-y: auto !important;
    height: 200px;
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #96aac1;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: var(--white);
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    border-radius: var(--radius);
    -moz-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    -o-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    transition:
        all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

/* ============================================================== 
     # About 
=================================================================== */

@media only screen and (min-width: 1367px) {
    .about-area .container {
        margin-left: calc((100% - 1140px) / 2);
        padding: 0;
        width: auto;
        min-width: auto;
        max-width: inherit;
    }
}

@media (min-width: 1601px) {
    .about-area .container {
        margin-left: calc((100% - 1320px) / 2);
        padding: 0;
        width: auto;
        min-width: auto;
        max-width: inherit;
    }
}

.about-area {
    position: relative;
    z-index: 1;
}

.about-area::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    background: var(--white);
    z-index: -1;
}

.about-area .fixed-shape {
    position: absolute;
    left: 0;
    top: 80px;
    height: 100%;
    width: 60%;
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

.about-area .about-items .row {
    margin-left: 0;
}

.about-area .thumb {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-area .thumb .success-rate {
    position: absolute;
    display: flex;
    align-items: center;
}

.about-items .thumb .successr-ate {
    position: absolute;
    left: -80px;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    padding: 30px;
    top: 80px;
    border-radius: var(--border-radius);
}

.torch-red .about-items .thumb .successr-ate {
    background: var(--color-style-two);
}

.about-items .thumb .successr-ate i {
    display: inline-block;
    font-size: 60px;
    margin-right: 20px;
}

.about-items .thumb .successr-ate h2 {
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

.about-area .info > h4 {
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: -5px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.torch-red .about-area .info > h4 {
    color: var(--color-style-two);
    background: var(--bg-gradient-secondary);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-area .info h2 {
    font-weight: 600;
    margin-bottom: 30px;
}

.about-area .info p {
    color: #a0a2a6;
}

.about-area .info {
    padding-right: 50px;
}

.about-area .info ul {
    margin-right: -15px;
    margin-top: 35px;
    overflow: hidden;
}

.about-area .info li {
    float: left;
    width: 50%;
    padding: 0 15px;
    position: relative;
    padding-left: 60px;
}

.about-area .info li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f00c";
    font-family: var(--fontawesome);
    font-weight: 900;
    height: 40px;
    width: 40px;
    background: var(--white);
    border-radius: 50%;
    color: var(--color-primary);
    text-align: center;
    line-height: 40px;
    font-size: 16px;
}

.torch-red .about-area .info li::after {
    color: var(--color-style-two);
}

.about-area .info li h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.about-area .info li p {
    margin-bottom: 0;
}

.about-area .info > a {
    margin-top: 40px;
}

/* ============================================================== 
     # About Version Two  
=================================================================== */
.about-us-area .about-items .thumb {
    padding-left: 50px;
    position: relative;
    z-index: 1;
}

.about-us-area .about-items .thumb h2 {
    position: absolute;
    left: 0;
    bottom: 50px;
    margin: 0;
    background: var(--white);
    padding: 37px;
    padding-top: 30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-paragraph);
    border-radius: var(--radius);
}

.about-us-area .about-items .thumb h2 strong {
    font-size: 62px;
    color: var(--color-primary);
}

.about-us-area .about-items .thumb::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 50%;
    width: 25px;
    background: var(--color-primary);
    z-index: -1;
    border-radius: var(--radius);
}

.about-us-area .about-items .thumb img {
    border-radius: var(--radius);
}

.about-us-area .info {
    padding-left: 35px;
}

.about-us-area .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

.about-us-area .author {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.about-us-area .author img {
    height: 80px;
}

.about-us-area .author .signature {
    border-right: 1px solid #999999;
    padding-right: 20px;
    margin-right: 20px;
}

.about-us-area .author h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.about-us-area .about-items .info ul {
    margin-top: 30px;
}

.about-us-area .about-items .info ul li {
    display: block;
    padding-left: 25px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    font-family: var(--font-default);
    color: var(--color-heading);
    font-weight: 500;
}

.about-us-area .about-items .info ul li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "N";
    font-family: "ElegantIcons";
    height: 100%;
    width: 100%;
    color: var(--color-primary);
}

/* ============================================================== 
     # About Version Three  
=================================================================== */
.about-content-area .content-box .thumb {
    padding-right: 35px;
}

.about-content-area .thumb-box .shape {
    position: absolute;
    height: 300px;
    left: -150px;
    top: -80px;
    width: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: -1;
}

.about-content-area .thumb-box {
    position: relative;
}

.about-content-area .thumb-box img:first-child {
    width: 80%;
    border-radius: var(--radius);
}

.about-content-area .thumb-box img:last-child {
    position: relative;
    width: 80%;
    right: 0;
}

.about-content-area .thumb-box img:nth-child(2) {
    position: relative;
    right: 0;
    width: 50%;
    float: right;
    top: -200px;
    margin-bottom: -200px;
    border: 5px solid var(--white);
    border-radius: 50%;
}

.about-content-area .thumb-box .experience {
    position: absolute;
    right: -50px;
    bottom: 50px;
    background: var(--color-primary);
    padding: 30px 50px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
}

.about-content-area .thumb-box .experience h2 {
    font-size: 120px;
    color: var(--white);
    font-weight: 800;
    line-height: 1;
    padding-right: 200px;
    margin: 0;
    margin-top: -10px;
}

.about-content-area .thumb-box .experience h2 strong {
    font-size: 22px;
    font-weight: 600;
    display: block;
}

.about-content-area .thumb-box .experience .video-play-button {
    position: absolute;
    right: 60px;
    left: auto;
}

.about-content-area .thumb-box .experience::after {
    position: absolute;
    right: -110px;
    top: -55px;
    content: "";
    height: 300px;
    width: 300px;
    background: var(--white);
    z-index: -1;
    border-radius: 50%;
}

.about-content-area .content-box .info h2 {
    font-weight: 600;
    margin-bottom: 30px;
}

.about-content-area .content-box .info ul li {
    display: flex;
    margin-top: 30px;
}

.about-content-area .content-box .info ul li i {
    display: inline-block;
    font-size: 40px;
    margin-right: 25px;
    color: var(--color-primary);
}

.about-content-area .content-box .info ul li h4 {
    font-weight: 600;
}

.about-content-area .content-box .info ul li p {
    margin: 0;
}

.about-content-area .content-box .info .call {
    border-top: 1px solid #e7e7e7;
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    align-items: center;
}

.about-content-area .content-box .info .call i {
    display: inline-block;
    height: 70px;
    width: 70px;
    line-height: 75px;
    background: var(--color-primary);
    text-align: center;
    border-radius: 50%;
    margin-right: 25px;
    color: var(--white);
    font-size: 30px;
    position: relative;
    z-index: 1;
    margin-left: 7px;
    margin-top: 7px;
}

.about-content-area .content-box .info .call i::after {
    position: absolute;
    left: -10%;
    top: -10%;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.3;
}

.about-content-area .content-box .info .call h5 {
    font-weight: 600;
    margin-bottom: 3px;
}

/* ============================================================== 
     # Features  
=================================================================== */
.features-area .features-content .top {
    display: flex;
    align-items: center;
}

.features-area .features-content .top h4 {
    margin: 0;
    font-weight: 600;
}

.features-area .features-content .top {
    margin-bottom: 20px;
}

.features-area .features-content .top span {
    font-family: var(--font-default);
    font-size: 40px;
    font-weight: 800;
    position: relative;
    padding-right: 70px;
    color: var(--color-primary);
    text-shadow: -5px 5px 0px #eceefe;
}

.torch-red .features-area .features-content .top span {
    color: var(--color-style-two);
}

.features-area .features-content .top span::after {
    position: absolute;
    left: 65px;
    top: 50%;
    content: "";
    height: 1px;
    width: 35px;
    background: #cccccc;
}

.features-area .item a {
    display: inline-block;
    margin-top: 10px;
}

.features-area .item a {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border: 2px solid #e7e7e7;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    position: relative;
}

.features-area .item a::before,
.features-area .item a::after {
    box-sizing: inherit;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.features-area .item a::before {
    border: 2px solid transparent;
}

.features-area .item:hover a::before {
    border-top-color: var(--color-primary);
    border-right-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    transition:
        border-top-color 0.15s linear,
        border-right-color 0.15s linear 0.1s,
        border-bottom-color 0.15s linear 0.2s;
}

.torch-red .features-area .item:hover a::before {
    border-top-color: var(--color-style-two);
    border-right-color: var(--color-style-two);
    border-bottom-color: var(--color-style-two);
}

.features-area .item a::after {
    border: 0 solid transparent;
}

.features-area .item:hover a::after {
    border-top: 2px solid var(--color-primary);
    border-left-width: 2px;
    border-right-width: 2px;
    transform: rotate(270deg);
    transition:
        transform 0.4s linear 0s,
        border-left-width 0s linear 0.35s;
}

.torch-red .features-area .item:hover a::after {
    border-top: 2px solid var(--color-style-two);
}

.features-area .item:hover a {
    border-color: transparent;
}

.features-area .item a i {
    position: relative;
    top: 2px;
}

.features-area .single-item .item {
    padding: 60px 30px;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    position: relative;
}

.features-area .single-item .item > i {
    display: inline-block;
    position: absolute;
    right: -60px;
    bottom: -60px;
    font-size: 120px;
    opacity: 0.06;
    transition: all 0.35s ease-in-out;
    opacity: 0;
}

.features-area .single-item .item:hover > i,
.features-area .single-item:nth-child(2n) .item > i {
    opacity: 0.07;
    right: -20px;
    bottom: -20px;
    color: var(--color-primary);
}

.features-area .single-item:nth-child(2n) .item,
.features-area .single-item .item:hover {
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
}

/* ============================================================== 
     # Services  
=================================================================== */

.services-area {
    position: relative;
    z-index: 1;
}

.services-area .right-shape {
    position: absolute;
    right: 0;
    top: 120px;
    z-index: -1;
}

.services-area .services-items .item .info > i {
    display: inline-block;
    font-size: 45px;
    margin-bottom: 30px;
    color: var(--white);
    height: 90px;
    width: 90px;
    line-height: 105px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 57%,
        rgba(4, 215, 242, 1) 100%
    );
    text-align: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.torch-red .services-area .services-items .item .info > i {
    background: var(--color-style-two);
}

.services-area .services-items .item .info > i::after {
    position: absolute;
    right: 8px;
    bottom: 0;
    content: "";
    height: 20px;
    width: 20px;
    background: var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    border: 3px solid var(--white);
}

.torch-red .services-area .services-items .item .info > i::after {
    background: var(--color-style-two);
}

.services-area .services-items .item h4 {
    font-weight: 600;
    font-size: 20px;
}

.services-area .services-items {
    position: relative;
    z-index: 1;
}

.services-area .services-items .single-item {
    margin-bottom: 30px;
}

.services-area .services-items .single-item .item {
    padding: 60px 30px;
    background: var(--white);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    border-radius: var(--radius);
}

.services-area.inc-thumbnail .services-items .single-item .item {
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
    padding: 0;
}

.services-area.inc-thumbnail .services-items .single-item .item .info {
    padding: 30px;
    padding-top: 0;
    position: relative;
    top: -45px;
    margin-bottom: -45px;
}

.services-area .services-items .single-item .item::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 0;
    width: 100%;
    background: linear-gradient(
        to top,
        var(--color-primary) 0%,
        var(--color-primary) 50%,
        var(--color-secondary) 100%
    );
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.torch-red .services-area .services-items .single-item .item::after {
    background: var(--color-style-two);
}

.services-area .services-items .single-item .item i,
.services-area .services-items .single-item .item h4,
.services-area .services-items .single-item .item p,
.services-area .services-items .single-item .item span {
    transition: all 0.35s ease-in-out;
}

.services-area .services-items .single-item .item:hover i,
.services-area .services-items .single-item .item:hover h4,
.services-area .services-items .single-item .item:hover p,
.services-area .services-items .single-item .item:hover span {
    color: var(--white);
}

.services-area .services-items .single-item .item:hover i {
    background: var(--white);
    color: var(--color-primary);
}

.torch-red .services-area .services-items .single-item .item:hover i {
    color: var(--color-style-two);
}

.services-area .services-items .single-item .item:hover span,
.services-area .services-items .single-item .item:hover a {
    background: transparent;
}

.services-area .services-items .single-item .item:hover span {
    opacity: 0.3;
}

.services-area .services-items .item:hover .info .bottom::after {
    opacity: 0;
}

.services-area .services-items .single-item .item:hover a {
    color: var(--white);
}

.services-area .services-items .single-item .item:hover::after {
    height: 100%;
}

.services-area .services-items .info .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.services-area .services-items .info .bottom::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 1px;
    width: 100%;
    background: #e7e7e7;
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.services-area .services-items .info .bottom a {
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    color: var(--color-heading);
    text-transform: uppercase;
    background: var(--white);
    padding-left: 20px;
    font-size: 14px;
}

.services-area .services-items .info .bottom span {
    font-family: var(--font-default);
    font-size: 36px;
    font-weight: 900;
    padding-right: 15px;
    position: relative;
    z-index: 1;
    color: #e9e9e9;
    background: var(--white);
    line-height: 1;
}

.services-area .services-items .info .bottom a i {
    position: relative;
    top: 1px;
}

/* ============================================================== 
     # Services 
=================================================================== */

.services-area .fixed-shape {
    position: absolute;
    right: 0;
    top: 0;
    height: 80%;
    width: 46%;
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    z-index: -1;
}

@media screen and (min-width: 1800px) {
    .services-area .fixed-shape {
        height: 80%;
        width: 80%;
    }
}

@media screen and (min-width: 2201px) {
    .services-area .fixed-shape {
        height: 130%;
        width: 130%;
    }
}

.services-area .services-heading {
    margin-bottom: 60px;
}

.services-area .services-heading h2 {
    font-weight: 600;
    margin-bottom: 0;
}

.services-area .services-heading h4 {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    display: inline-block;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-area ul.achivement {
    float: right;
}

.services-area ul.achivement li {
    display: inline-block;
    margin-right: 80px;
    float: left;
    font-family: var(--font-default);
}

.services-area ul.achivement li:last-child {
    padding: 0;
    margin: 0;
    border: none;
}

.services-area ul.achivement li .counter {
    position: relative;
}

.services-area ul.achivement li .counter {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.services-area ul.achivement li .counter .operator {
    font-size: 40px;
    margin-left: 2px;
}

.services-area ul.achivement li .medium {
    font-weight: 600;
    color: var(--white);
    text-align: right;
    float: right;
}

.services-area .services-content .single-item {
    margin-bottom: 30px;
}

.services-area .services-content .item {
    padding: 60px 30px;
    background: var(--white);
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services-area .services-content .item i {
    display: inline-block;
    font-size: 50px;
    margin-bottom: 30px;
    margin-top: 25px;
    color: var(--color-primary);
    background: linear-gradient(
        to right,
        var(--color-primary),
        var(--color-primary),
        var(--color-primary),
        #9a009c,
        #9a009c
    );
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.services-area .services-content .item i::after {
    position: absolute;
    left: -21px;
    top: -25px;
    content: "";
    height: 80px;
    width: 81px;
    background: linear-gradient(
        -62.5deg,
        transparent,
        rgba(237, 245, 255, 0.9)
    );
    z-index: -1;
    border-radius: 50%;
    transform: rotate(65deg);
    transition: all 0.35s ease-in-out;
}

.services-area .services-content .item h4 {
    font-weight: 600;
    font-size: 18px;
}

.services-area .services-content .item p {
    margin-bottom: -5px;
}

/* ============================================================== 
     # Thumb Services 
=================================================================== */

.thumb-services-area .right-shape {
    position: absolute;
    right: 0;
    top: 120px;
}

.thumb-services-area .single-item {
    margin-bottom: 30px;
}

.thumb-services-area .services-items .item {
    background-size: cover;
    background-position: center;
    padding: 60px 37px;
    position: relative;
    z-index: 1;
}

.thumb-services-area .services-items .item::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--white);
    z-index: -1;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
    transition: all 0.35s ease-in-out;
}

.thumb-services-area .services-items .item .info h4 {
    font-weight: 600;
}

.thumb-services-area .services-items .item .info > i {
    display: inline-block;
    font-size: 45px;
    margin-bottom: 30px;
    color: var(--white);
    height: 90px;
    width: 90px;
    line-height: 105px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 57%,
        rgba(4, 215, 242, 1) 100%
    );
    text-align: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease-in-out;
}

.thumb-services-area .services-items .item .info > i::after {
    position: absolute;
    right: 8px;
    bottom: 0;
    content: "";
    height: 20px;
    width: 20px;
    background: var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    border: 3px solid var(--white);
    transition: all 0.35s ease-in-out;
}

.thumb-services-area .services-items .single-item .item::before {
    opacity: 0.6;
    transition: all 0.35s ease-in-out;
    background: var(--black);
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 0;
    width: 100%;
    z-index: -1;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
    transition: all 0.35s ease-in-out;
}

.thumb-services-area .services-items .single-item .item:hover::after,
.thumb-services-area .services-items .single-item:first-child .item::after {
    opacity: 0;
}

.thumb-services-area .services-items .single-item .item:hover::before,
.thumb-services-area .services-items .single-item:first-child .item::before {
    height: 100%;
}

.thumb-services-area .services-items .single-item:first-child .item .info > i,
.thumb-services-area .services-items .single-item .item:hover .info > i {
    background: var(--white);
    color: var(--color-primary);
    transition: all 0.35s ease-in-out;
}

.thumb-services-area .services-items .single-item .item h4,
.thumb-services-area .services-items .single-item .item p,
.thumb-services-area .services-items .single-item .item a {
    transition: all 0.35s ease-in-out;
}

.thumb-services-area .services-items .single-item:first-child .item h4,
.thumb-services-area .services-items .single-item:first-child .item p,
.thumb-services-area .services-items .single-item:first-child .item a,
.thumb-services-area .services-items .single-item .item:hover h4,
.thumb-services-area .services-items .single-item .item:hover p,
.thumb-services-area .services-items .single-item .item:hover a {
    color: var(--white);
}

.thumb-services-area .services-items .item .bottom a {
    margin-top: 5px;
    color: var(--color-heading);
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
}

.thumb-services-area .services-items .item .bottom a i {
    font-size: 12px;
    margin-right: 3px;
}

.thumb-services-area .services-items .single-item:first-child .item .bottom a {
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================================== 
     # Services Default
=================================================================== */

.default-services-area .item {
    padding: 30px;
}

.default-services-area .item .info i {
    display: inline-block;
    font-size: 45px;
    margin-bottom: 30px;
    background: rgba(18, 115, 235, 0.1);
    height: 90px;
    width: 90px;
    line-height: 100px;
    color: var(--color-primary);
    border-radius: var(--radius);
    text-align: center;
}

.torch-red .default-services-area .item .info img {
    background: rgba(238, 40, 82, 0.07);
    width: 100px;
    height: 100px;
    color: var(--color-style-two);
    border-radius: var(--radius);
}

.torch-red .default-services-area .item .info .svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(238, 40, 82, 0.07);
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.torch-red .default-services-area .item .info .svg-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-style-two);
}

.torch-red .default-services-area .item .info .svg-icon svg path {
    fill: var(--color-style-two);
}

.default-services-area .item .info p {
    margin: 0;
}

.default-services-area .services-items {
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
}

/* ============================================================== 
     # Service Version Four
=================================================================== */

.thumbs-services-area .single-item {
    margin-bottom: 30px;
}

.thumbs-services-area .item img {
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.thumbs-services-area .item {
    position: relative;
    z-index: 1;
    margin: 0 15px;
}

.thumbs-services-area .item::after {
    position: absolute;
    left: -15px;
    top: 80px;
    right: -15px;
    background: var(--dark-secondary);
    content: "";
    bottom: 0;
    z-index: -1;
    border-radius: var(--radius);
}

.thumbs-services-area .item .info {
    padding: 30px;
    padding-top: 0;
}

.thumbs-services-area .item .info p {
    color: #cccccc;
}

.thumbs-services-area .item .info > a {
    text-transform: uppercase;
    font-size: 13px;
    color: #cccccc;
    display: inline-block;
    margin-top: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 8px 25px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.thumbs-services-area .item .info > a i {
    margin-left: 3px;
    position: relative;
    top: 1px;
}

.thumbs-services-area .item:hover .info > a {
    color: var(--white);
    border: 2px solid var(--color-primary);
}

.thumbs-services-area .item .info > a::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.thumbs-services-area .item:hover .info > a::after {
    width: 100%;
}

.thumbs-services-area .thumb-services-carousel.owl-carousel .owl-dots {
    margin-top: 40px;
    margin-bottom: -8px;
}

.thumbs-services-area
    .thumb-services-carousel.owl-carousel
    .owl-dots
    .owl-dot
    span {
    display: block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.thumbs-services-area
    .thumb-services-carousel.owl-carousel
    .owl-dots
    .owl-dot.active
    span::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 10px;
    width: 10px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: var(--color-primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* ============================================================== 
     # Services Details Area
=================================================================== */

.services-details-items h2,
.services-details-items h3,
.services-details-items h4,
.services-details-items h5,
.services-details-items h6 {
    font-weight: 600;
}

.services-details-items .services-sidebar .single-widget {
    margin-top: 50px;
}

.services-details-items .services-sidebar .single-widget:first-child {
    margin-top: 0;
}

.services-details-items .services-sidebar .widget-title {
    font-weight: 800;
    margin-top: -5px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
    font-size: 20px;
    display: inline-block;
    padding-bottom: 15px;
}

.services-details-items .services-sidebar .widget-title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid var(--color-primary);
}

.services-details-items .services-sidebar .services-list a {
    display: block;
    padding: 18px 25px;
    background: rgba(237, 245, 255, 1);
    margin-top: 15px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    overflow: hidden;
    border-radius: var(--radius);
}

.services-details-items .services-sidebar .services-list a::after {
    position: absolute;
    right: 20px;
    top: 50%;
    content: "";
    transform: translateY(-50%);
    height: 13px;
    width: 13px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    transition: all 0.35s ease-in-out;
}

.services-details-items .services-sidebar .services-list .current-item a::after,
.services-details-items .services-sidebar .services-list a:hover::after {
    border-color: var(--white);
}

.services-details-items .services-sidebar .services-list a::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.services-details-items
    .services-sidebar
    .services-list
    li.current-item
    a::before {
    width: 100%;
}

.services-details-items .services-sidebar .services-list li.current-item a,
.services-details-items .services-sidebar .services-list li a:hover {
    color: var(--white);
}

.services-details-items .services-sidebar .services-list a:hover::before {
    width: 100%;
}

.services-details-items .services-sidebar {
    padding-left: 35px;
}

.services-details-items .services-sidebar .single-widget.quick-contact {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.services-details-items .services-sidebar .single-widget.quick-contact::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-heading);
    opacity: 0.7;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content {
    padding: 50px 30px;
    position: relative;
    z-index: 1;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content
    i {
    display: inline-block;
    font-size: 25px;
    color: var(--white);
    margin-bottom: 35px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content
    i::after {
    position: absolute;
    left: -10%;
    top: -10%;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.3;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content
    p {
    color: var(--white) D1;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content
    h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    margin-top: 25px;
}

.services-details-items .services-sidebar .single-widget.brochure ul {
    margin-top: 15px;
}

.services-details-items .services-sidebar .single-widget.brochure a {
    display: flex;
    align-items: center;
    margin-top: 15px;
    background: var(--white);
    padding: 18px 25px;
    border-radius: var(--radius);
    border: 2px solid rgb(205 223 247);
}

.services-details-items .services-sidebar .single-widget.brochure a i {
    font-size: 30px;
    font-weight: 600;
    color: var(--color-primary);
    margin-right: 16px;
}

.services-details-items
    .services-sidebar
    .single-widget.brochure
    li:first-child
    a {
    margin-top: 0;
}

.services-details-items .services-sidebar .single-widget.brochure a:hover {
    color: var(--color-primary);
}

.services-details-items .services-single-content h2 {
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
}

.services-details-area .features .col-lg-6 {
    display: flex;
}

.services-details-area .features i {
    display: inline-block;
    font-size: 50px;
    color: var(--color-primary);
    margin-right: 25px;
}

.services-details-area .features h4 {
    font-weight: 600;
}

.services-details-area .features p {
    margin: 0;
}

.services-details-area .features {
    margin: 20px 0;
}

.services-details-area .services-single-content ul {
    list-style: disc;
    margin-left: 20px;
}

.services-details-area .services-single-content ul li {
    line-height: 30px;
    list-style: disc;
}

/* ============================================================== 
     # Fun Factor  
=================================================================== */
.fun-factor-area .fun-fact-items {
    position: relative;
    z-index: 1;
    padding: 120px 50px;
}

.fun-factor-area .fun-fact-items::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 400%;
    background: var(--color-primary);
    z-index: -1;
}

/* ============================================================== 
     # Business Growth Area
=================================================================== */

.business-groth-area .info {
    padding-right: 35px;
    position: relative;
    z-index: 1;
}

.business-groth-area .info h4 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: -5px;
    display: inline-block;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.business-groth-area .info h2 {
    font-weight: 600;
    margin-bottom: 30px;
}

.business-groth-area .info::after {
    position: absolute;
    content: "";
    background: url(assets/img/shape/14.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: -200px;
    top: -200px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.1;
}

.business-groth-area .info a {
    margin-top: 20px;
}

/* ============================================================== 
     # Why Choose Us  
=================================================================== */
.choose-us-area {
    position: relative;
    z-index: 1;
}

.choose-us-area::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 120px;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(237, 245, 255, 1) 0%,
        rgba(204, 223, 247, 1) 100%
    );
    z-index: -1;
}

.choose-us-area .item-box {
    padding-left: 15px;
    margin-right: 15px;
}

.choose-us-area .item-box .thumb {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.choose-us-area .info {
    padding-top: 240px;
    padding-left: 50px;
}

.choose-us-area .thumb {
    position: relative;
    z-index: 1;
}

.choose-us-area .thumb .transform-text {
    position: absolute;
    left: -260px;
    bottom: 50%;
    transform: rotate(-90deg);
    margin-bottom: -22%;
}

.choose-us-area .thumb .transform-text h2 {
    margin: 0;
    font-size: 200px;
    font-weight: 900;
    opacity: 0.2;
    color: var(--color-primary);
}

.torch-red .choose-us-area .thumb .transform-text h2 {
    color: var(--color-style-two);
}

.choose-us-area .info .award {
    display: flex;
    align-items: center;
    font-family: var(--font-default);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-heading);
    margin-top: 30px;
}

.choose-us-area .info .award i {
    display: inline-block;
    font-size: 70px;
    margin-right: 30px;
    border-right: 1px solid #dddddd;
    padding-right: 25px;
    background: linear-gradient(
        to right,
        var(--color-primary),
        var(--color-secondary),
        var(--color-primary)
    );
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.torch-red .choose-us-area .info .award i {
    color: var(--color-style-two);
    -webkit-background-clip: inherit;
    -moz-background-clip: inherit;
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background: transparent;
}

.choose-us-area .info .award span {
    line-height: 30px;
}

.choose-us-area .info h4 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-block;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.torch-red .choose-us-area .info h4 {
    color: var(--color-style-two);
    background: var(--bg-gradient-secondary);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.choose-us-area .info h2 {
    font-weight: 600;
    margin-bottom: 30px;
}

/* ============================================================== 
     # Partner  
=================================================================== */
.partner-area .item-box {
    padding: 120px 0;
    padding-right: 50px;
    position: relative;
    z-index: 1;
}

.partner-area .item-box img {
    width: auto;
    margin: auto;
}

.partner-area .item-box::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 400%;
    background: var(--color-primary);
    z-index: -1;
}

.torch-red .partner-area .item-box::after {
    background: var(--dark);
}

.torch-red .partner-area .item-box.red::after {
    background: var(--color-style-two);
}

.partner-area .item-box::before {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 500px;
    background: url(../img/shape/4.png);
    opacity: 0.2;
}

.partner-area {
    position: relative;
    z-index: 1;
}

.partner-area::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 120px;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(237, 245, 255, 1) 0%,
        rgba(204, 223, 247, 1) 100%
    );
    z-index: -1;
}

.partner-area.bg-gray::after {
    background: var(--white);
}

.partner-area.shadow-less::after {
    display: none;
}

.partner-area.shape-less::after {
    display: none;
}

.partner-area .info {
    padding-right: 50px;
}

.partner-area .info h2 {
    font-weight: 600;
    margin-top: -8px;
}

.partner-area .info p {
    margin-bottom: -5px;
}

/* ============================================================== 
     # Team  
=================================================================== */

.team-area .fixed-shape {
    position: absolute;
    left: 0;
    top: 120px;
    height: 100%;
    width: 100%;
}

.team-area .fixed-shape img {
    width: 100%;
}

.team-area .team-items {
    position: relative;
    z-index: 1;
}

.team-area .team-items::after {
    position: absolute;
    left: -80px;
    top: -80px;
    content: "";
    height: 150px;
    width: 150px;
    background: url(assets/img/shape/3.png);
    z-index: -1;
}

.team-area::after {
    position: absolute;
    right: -150px;
    bottom: -120px;
    content: "";
    height: 600px;
    width: 600px;
    border: 100px solid var(--white);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.3;
}

.team-area {
    position: relative;
    z-index: 1;
}

.team-area .single-item {
    margin-bottom: 30px;
}

.team-area .item {
    position: relative;
}

.team-area .team-items .thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 3px solid var(--color-primary);
    border-radius: var(--radius);
}

.torch-red .team-area .team-items .thumb {
    border-bottom: 3px solid var(--color-style-two);
}

.team-area .team-items .thumb .share {
    position: absolute;
    right: 30px;
    bottom: 0;
    display: inline-block;
    padding: 17px;
    padding-bottom: 10px;
    background: var(--color-primary);
    border-radius: 25px 25px 0 0;
    color: var(--white);
    transition: all 0.35s ease-in-out;
}

.torch-red .team-area .team-items .thumb .share {
    background: var(--color-style-two);
}

.team-area .team-items .item:hover .thumb .share {
    transform: translateY(60px);
}

.team-area .item .info {
    padding: 30px;
    padding-bottom: 0;
}

.team-area .team-items .thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-area .team-items .thumb img {
    transition: all 0.35s ease-in-out;
}

.team-area .team-items .item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.team-area .item .info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.team-area .item .info span {
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: -10px;
    font-size: 13px;
    font-family: var(--font-default);
}

.share-button i {
    transition: 0.3s ease;
}

.team-area .team-items .item .share-icon {
    opacity: 0;
}

.team-area .team-items .item:hover .share-icon {
    opacity: 1;
}

.team-area .team-items .item:hover .share-icon:first-child {
    transform: translateY(-30px) rotate(0);
}

.team-area .team-items .item:hover .share-icon:nth-child(2) {
    transform: translateY(-85px) rotate(0);
}

.team-area .team-items .item:hover .share-icon:nth-child(3) {
    transform: translateY(-140px) rotate(0);
}

.team-area .team-items .item:hover .share-icon:nth-child(4) {
    transform: translateY(-195px) rotate(0);
}

.share-icon {
    position: absolute;
    bottom: 0;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: var(--radius);
    transform: translateX(0) rotate(180deg);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.team-area .team-items .social a {
    color: var(--white);
}

.team-area .team-items .social a.facebook {
    background: #3b5998 none repeat scroll 0 0;
}

.team-area .team-items .social a.twitter {
    background: #1da1f2 none repeat scroll 0 0;
}

.team-area .team-items .social a.pinterest {
    background: #bd081c none repeat scroll 0 0;
}

.team-area .team-items .social a.g-plus {
    background: #db4437 none repeat scroll 0 0;
}

.team-area .team-items .social a.linkedin {
    background: #0077b5 none repeat scroll 0 0;
}

.team-area .team-items .social a.instagram {
    background: #3f729b none repeat scroll 0 0;
}

/* ============================================================== 
     # Team Single  
=================================================================== */

.team-single-area .team-content-top {
    background: var(--white);
    padding: 40px;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
}

.team-single-area .team-content-top .right-info {
    padding-left: 35px;
    padding-right: 50px;
}

.team-single-area .team-content-top .right-info h2 {
    font-weight: 600;
}

.team-single-area .team-content-top .right-info span {
    display: block;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 25px;
}

.team-single-area .right-info ul {
    margin-top: 25px;
    border-top: 1px solid #e7e7e7;
    padding-top: 17px;
}

.team-single-area .right-info ul li {
    margin-top: 10px;
    color: var(--color-heading);
}

.team-single-area .right-info ul li a {
    font-weight: 400;
}

.team-single-area .right-info ul li a:hover {
    color: var(--color-primary);
}

.team-single-area .right-info .social {
    display: flex;
    margin-top: 25px;
    font-weight: 600;
    align-items: center;
}

.team-single-area .right-info .social h4 {
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 25px;
}

.team-single-area .right-info .social ul {
    margin: 0;
    padding: 0;
    border: none;
}

.team-single-area .right-info .social .share-link {
    position: relative;
    z-index: 1;
    margin-left: 15px;
}

.team-single-area .right-info .social .share-link > i {
    display: inline-block;
    height: 45px;
    background: var(--white);
    box-shadow: 0 0 10px #cccccc;
    line-height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-primary);
}

.team-single-area .right-info .social ul {
    display: flex;
    list-style-type: none;
    grid-gap: 10px;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out 0s;
}

.team-single-area .right-info .social .share-link:hover ul {
    left: 58px;
    opacity: 1;
    pointer-events: auto;
}

.team-single-area .right-info .social ul li {
    display: inline-block;
    margin: 0;
    margin-right: 10px;
}

.team-single-area .right-info .social ul li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 47px;
    background: #f1f1f1;
    text-align: center;
    border-radius: 50%;
}

.team-single-area .bottom-info {
    margin-top: 80px;
}

.team-single-area .bottom-info h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

.team-single-area .bottom-info p:last-child {
    margin-bottom: 0;
}

.team-single-area .bottom-info .skill-items {
    padding-left: 35px;
}

/* ============================================================== 
     # Testimonials  
=================================================================== */

.testimonials-area .fixed-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80%;
    width: 50%;
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.testimonials-area .testimonial-items {
    position: relative;
    z-index: 1;
}

.testimonials-area .testimonial-items::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 60%;
    z-index: -1;
    background: rgba(0, 0, 0, 0)
        linear-gradient(
            to left,
            rgba(0, 0, 0, 0) 0%,
            rgba(255, 255, 255, 1) 96%
        )
        repeat scroll 0 0;
    border-radius: var(--radius);
}

.testimonials-area .item {
    padding: 120px 50px;
    position: relative;
    z-index: 1;
}

.testimonials-area .item::after {
    position: absolute;
    left: 50px;
    top: 10px;
    content: "\f10d";
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    font-size: 80px;
    opacity: 0.07;
    z-index: -1;
}

.testimonials-area .item .provider {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.testimonials-area .item .provider img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.testimonials-area .item .provider h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonials-area .row > .info h4 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
}

.torch-red .testimonials-area .row > .info h4 {
    color: var(--color-style-two);
}

.testimonials-area .row > .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

.testimonials-area .row > .info p {
    margin: 0;
}

.testimonials-area .item .provider span {
    font-family: var(--font-default);
    font-weight: 600;
    color: var(--color-primary);
}

.torch-red .testimonials-area .item .provider span {
    color: var(--color-style-two);
}

.testimonials-area .row > .info {
    padding-left: 50px;
    border-left: 1px solid #c7c7c7;
}

.testimonials-area .testimonials-carousel .owl-nav {
    position: absolute;
    right: 30px;
    bottom: 135px;
}

.testimonials-area .testimonials-carousel .owl-nav .owl-prev,
.testimonials-area .testimonials-carousel .owl-nav .owl-next {
    background: transparent;
    color: var(--color-heading);
    font-size: 25px;
    margin: 0;
}

/* ============================================================== 
     # Expertise  
=================================================================== */

.expertise-area {
    position: relative;
    z-index: 1;
}

.expertise-area .info {
    padding-right: 35px;
}

.expertise-area .info h4 {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 500;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.torch-red .expertise-area .info h4 {
    color: var(--color-style-two);
    background: var(--bg-gradient-secondary);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expertise-area .info h2 {
    font-weight: 600;
    margin-bottom: 0;
}

.skill-items .progress-box {
    margin-bottom: 40px;
}

.skill-items .progress-box:last-child {
    margin-bottom: 0;
}

.skill-items .progress-box h5 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.skill-items .progress-box h5 span {
    position: absolute;
    font-size: 50px;
    line-height: 1;
    top: -21px;
    left: 0;
    z-index: -1;
    opacity: 0.05;
    font-weight: 900;
}

.skill-items .skill-items {
    margin-top: 40px;
}

.skill-items .progress-box .progress {
    background: transparent;
    border-bottom: 2px solid #e7e7e7;
    box-shadow: inherit;
    border-radius: inherit;
    overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar {
    height: 6px;
    border-radius: var(--radius);
    background: var(--bg-gradient);
    top: 12px;
    position: relative;
    overflow: inherit;
}

.torch-red .skill-items .progress-box .progress .progress-bar {
    background: var(--color-style-two);
}

.skill-items .progress-box .progress .progress-bar span {
    position: absolute;
    right: 0;
    top: -40px;
    display: block;
    font-size: 15px;
    color: var(--color-heading);
    font-weight: 600;
    font-family: var(--font-default);
}

.torch-red .skill-items .progress-box .progress .progress-bar span {
    top: -50px;
}

.torch-red .skill-items .progress-box .progress .progress-bar {
    position: relative;
    z-index: 1;
}

.torch-red .skill-items .progress-box .progress .progress-bar::after {
    position: absolute;
    right: 13px;
    top: -28px;
    content: "\f106";
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    color: var(--color-style-two);
    font-size: 20px;
}

.expertise-area .expertise-content .item {
    padding: 50px;
    padding-top: 450px;
    position: relative;
    z-index: 1;
}

.expertise-area .expertise-content .item:nth-child(odd) {
    border-left: 0.4px solid rgba(255, 255, 255, 0.6);
}

.expertise-area .expertise-content .single-item {
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.expertise-area .expertise-content .single-item:last-child {
    border: none;
}

.expertise-content {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 15px;
    border-radius: var(--radius);
}

.expertise-content .fixed-shape {
    position: absolute;
    left: -180px;
    bottom: -120px;
    height: 350px;
    width: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.expertise-area .expertise-content::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 0 0 25px 25px;
    background: rgba(0, 0, 0, 0)
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 130%)
        repeat scroll 0 0;
}

.expertise-content h4 {
    font-weight: 600;
}

.expertise-content p {
    margin: 0;
}

.expertise-content .content i {
    display: inline-block;
    font-size: 35px;
    margin-bottom: 25px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    border-radius: 50%;
    color: var(--color-primary);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.expertise-area .expertise-content .content {
    position: absolute;
    transition: all 0.35s ease-in-out;
    transform: translateY(5px);
    left: 50px;
    right: 50px;
    bottom: 50px;
}

.expertise-area .expertise-content .item:hover .content {
    transform: translateY(-90px);
}

.expertise-content a {
    display: inline-block;
    text-align: center;
    border-radius: var(--radius);
    z-index: 1;
    bottom: 65px;
    position: absolute;
    opacity: 0;
    transform: translateX(-30px);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--white) !important;
    font-size: 14px;
    color: var(--color-heading);
    padding: 12px 35px;
}

.expertise-area .expertise-content .item:hover a {
    opacity: 1;
    transform: translateX(0);
}

.expertise-area .expertise-content .item a:hover {
    background: rgba(255, 255, 255, 1);
}

/* ============================================================== 
     # Faq
=================================================================== */

.faq-content-area .faq-content .accordion-item {
    border: none;
    border-bottom: 1px solid #e7e7e7;
}

.faq-content-area .faq-content .accordion-item .accordion-body {
    padding: 0;
    padding-bottom: 30px;
}

.faq-content-area .faq-content .accordion-item button.accordion-button {
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 20px 0;
    color: var(--color-heading);
    font-size: 20px;
}

.faq-content-area .faq-content .accordion-item .accordion-body a {
    color: var(--color-primary);
}

/* ============================================================== 
     # Faq Area 
=================================================================== */

.faq-area .faq-items .fixed-thumb {
    position: absolute;
    left: -195px;
    bottom: 0;
    width: 350px;
}

.faq-area .faq-items {
    position: relative;
    z-index: 1;
    padding-left: 50px;
}

.faq-area .faq-items .faq-content {
    padding: 120px 0;
    z-index: 9;
}

.faq-area .faq-items::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 400%;
    background: var(--color-primary);
    z-index: -1;
}

.faq-area .faq-items .icon i {
    position: absolute;
    right: -170px;
    top: 50%;
    font-size: 300px;
    opacity: 0.1;
    transform: translateY(-50%);
}

.faq-area {
    position: relative;
    z-index: 1;
}

.faq-area::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 120px;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(237, 245, 255, 1) 0%,
        rgba(204, 223, 247, 1) 100%
    );
    z-index: -1;
}

.faq-area .faq-items .faq-content .accordion-item {
    background: transparent;
    border: none;
}

.faq-area .faq-items .faq-content .accordion-item .accordion-body {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    padding-top: 20px;
}

.faq-area .faq-items .faq-content .accordion-item button.accordion-button {
    background: transparent;
    color: var(--white);
    padding: 15px 0;
    box-shadow: none;
    border: none;
    font-size: 20px;
    position: relative;
    z-index: 1;
    padding-left: 50px;
}

.faq-area
    .faq-items
    .faq-content
    .accordion-item
    button.accordion-button::after {
    display: none;
}

.faq-area
    .faq-items
    .faq-content
    .accordion-item
    button.accordion-button:before {
    font-family: "Font Awesome 7 Free";
    content: "\f068";
    position: absolute;
    left: 0;
    top: 11px;
    font-weight: 600;
    background: #ffffff;
    color: #1273eb;
    font-size: 12px;
    height: 28px;
    width: 28px;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
}

.faq-area
    .faq-items
    .faq-content
    .accordion-item
    button.accordion-button.collapsed:before {
    content: "\f067";
    font-weight: 600;
}

/* ============================================================== 
     # Gallery 
=================================================================== */

.gallery-area {
    position: relative;
    z-index: inherit;
}

.gallery-area .fixed-shape {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.03;
}

.gallery-area #portfolio-grid {
    margin: -15px;
}

.gallery-area .gallery-items.colums-3 .pf-item {
    float: left;
    padding: 15px;
    width: 33.3333%;
}

.gallery-area .gallery-items.colums-2 .pf-item {
    float: left;
    padding: 15px;
    width: 50%;
}

.gallery-area .gallery-items.colums-4 .pf-item {
    float: left;
    padding: 15px;
    width: 25%;
}

.gallery-area .gallery-items.colums-6 .pf-item {
    float: left;
    padding: 15px;
    width: 16.6666%;
}

.gallery-area .gallery-items .pf-item.wide {
    width: 66.6667%;
}

.gallery-area .pf-item .item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-area .pf-item .item .content {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: all 0.35s ease-in-out;
    bottom: 0;
    opacity: 0;
}

.gallery-area .pf-item .item .content::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 80%;
    background: var(--black);
    z-index: -1;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

.gallery-area .pf-item .item:hover .content::after {
    width: 100%;
    opacity: 0.6;
}

.gallery-area .pf-item .item .content .info {
    transition: all 0.35s ease-in-out;
    transform: translateX(80px);
}

.gallery-area .pf-item .item:hover .content .info {
    transform: translateX(0);
}

.gallery-area .pf-item .item .content .button a {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 44px;
    background: var(--color-primary);
    text-align: center;
    color: var(--white);
    border-radius: 50%;
    transform: translateY(-30px);
}

.torch-red .gallery-area .pf-item .item .content .button a {
    background: var(--color-style-two);
    color: var(--white);
}

.gallery-area .pf-item .item:hover .content .button a {
    transform: translateY(0);
}

.gallery-area .pf-item .item .content a i {
    position: relative;
    top: 5px;
}

.gallery-area .pf-item .item .content h4 {
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--white);
}

.gallery-area .pf-item .item .content h4 a {
    color: var(--white);
}

.gallery-area .pf-item .item .content span {
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-family: var(--font-default);
    font-weight: 500;
    font-size: 13px;
    color: #cccccc;
}

.gallery-area .pf-item .item:hover .content {
    bottom: 0;
    opacity: 1;
}

/* ============================================================== 
     # Projects 
=================================================================== */

.projects-area {
    position: relative;
    z-index: inherit;
}

.projects-area .fixed-shape {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.03;
}

.projects-area .single-item .thumb img {
    max-width: 120%;
}

.projects-area .single-item .content {
    background: var(--white);
    padding: 80px;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
    position: relative;
    z-index: 1;
}

.projects-area .single-item .content::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 150px;
    width: 150px;
    background: url(assets/img/shape/1.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.projects-area .single-item span {
    display: block;
    font-family: var(--font-default);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.projects-area .single-item h2,
.projects-area .single-item h3,
.projects-area .single-item h4 {
    font-weight: 600;
    margin-bottom: 30px;
}

.projects-area .single-item a {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    text-align: center;
    color: var(--white);
    margin-top: 20px;
}

.torch-red .projects-area .single-item a {
    background: var(--color-style-two);
}

.projects-area .single-item a i {
    font-size: 25px;
    position: relative;
    top: 8px;
}

.projects-area .single-item .thumb {
    background-size: cover;
    background-position: center;
    max-width: 120%;
}

.projects-area .single-item .info {
    padding-left: 0;
    position: relative;
}

.projects-area .owl-item,
.projects-area .owl-item:not(.center) {
    opacity: 0.4;
}

.projects-area .owl-item.active.center {
    opacity: 1;
}

.projects-area .projects-carousel .owl-nav {
    margin: 0;
}

.projects-area .projects-carousel .owl-nav .owl-prev,
.projects-area .projects-carousel .owl-nav .owl-next {
    background: transparent none repeat scroll 0 0;
    color: var(--color-heading);
    font-size: 30px;
    height: 40px;
    left: 0;
    line-height: 40px;
    margin: -20px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 40px;
    transition: all 0.35s ease-in-out;
    opacity: 0;
}

.projects-area .projects-carousel:hover .owl-nav .owl-prev,
.projects-area .projects-carousel:hover .owl-nav .owl-next {
    opacity: 1;
}

.projects-area .projects-carousel .owl-nav .owl-next {
    left: auto;
    right: 0;
}

.projects-area .projects-carousel:hover .owl-nav .owl-prev {
    left: 50px;
}

.projects-area .projects-carousel:hover .owl-nav .owl-next {
    right: 50px;
}

/* ============================================================== 
     # Project Details
=================================================================== */

.project-details-area .top-info {
    position: relative;
    margin-top: 50px;
}

.project-details-area .top-info .left-info {
    padding-right: 35px;
}

.project-details-area .top-info p:last-child {
    margin-bottom: 0;
}

.project-details-area .project-info {
    background: rgba(237, 245, 255, 1);
    padding: 40px;
    border-bottom: 2px solid var(--color-primary);
}

.project-details-area .project-info h2,
.project-details-area .project-info h3,
.project-details-area .project-info h4,
.project-details-area .project-info h5 {
    font-weight: 600;
    margin-bottom: 25px;
}

.project-details-area .project-info > ul li {
    font-family: var(--font-default);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-heading);
}

.project-details-area .project-info > ul li i {
    display: inline-block;
    margin-right: 14px;
    color: #086ad8;
    font-size: 16px;
}

.project-details-area .project-info > ul {
    display: inline-block;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-gap: 30px 30px;
}

.project-details-area .project-info > ul li span {
    font-family: var(--font-default);
    font-weight: 600;
    position: relative;
    font-size: 14px;
    display: block;
    margin-top: 2px;
    color: var(--color-paragraph);
}

.project-details-area .project-info .share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed #bbbbbb;
    margin-top: 20px;
    padding-top: 20px;
}

.project-details-area .project-info .share ul li {
    display: inline-block;
    margin-right: 8px;
}

.project-details-area .project-info .share ul li a {
    display: inline-block;
    color: var(--white);
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.project-details-area .project-info .share ul li.facebook a {
    background: #3b5998 none repeat scroll 0 0;
}

.project-details-area .project-info .share ul li.twitter a {
    background: #1da1f2 none repeat scroll 0 0;
}

.project-details-area .project-info .share ul li.pinterest a {
    background: #bd081c none repeat scroll 0 0;
}

.project-details-area .project-info .share ul li.g-plus a {
    background: #db4437 none repeat scroll 0 0;
}

.project-details-area .project-info .share ul li.linkedin a {
    background: #0077b5 none repeat scroll 0 0;
}

.project-details-area .project-info .share h4 {
    margin: 0;
    padding-right: 50px;
}

.project-details-area .main-content {
    margin-top: 50px;
}

.project-details-area .main-content h2,
.project-details-area .main-content h3,
.project-details-area .main-content h4,
.project-details-area .main-content h5 {
    font-weight: 600;
    margin-bottom: 25px;
}

.project-details-area .main-content .row img {
    margin-top: 30px;
}

.project-details-area .top-info h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

/* ============================================================== 
     # Terms Policy 
=================================================================== */
.terms-policy-area h1,
.terms-policy-area h2,
.terms-policy-area h3,
.terms-policy-area h4,
.terms-policy-area h5,
.terms-policy-area h6 {
    font-weight: 600;
}

.terms-policy-area p {
    margin-bottom: 20px;
}

.terms-policy-area p:last-child {
    margin-bottom: 0;
}

.terms-policy-area i {
    position: fixed;
    top: 50%;
    right: 50px;
    font-size: 200px;
    z-index: -1;
    opacity: 0.05;
    margin-top: -50px;
}

.terms-policy-area i.fa-copy {
    font-weight: 500;
}

.terms-policy-area ul li {
    display: flex;
    margin-top: 20px;
}

.terms-policy-area ul li span {
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    background: var(--color-primary);
    color: var(--white);
    font-weight: 600;
    min-width: 30px;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 12px;
}

.terms-policy-area ul li:first-child {
    margin: 0;
}

.terms-policy-area ul {
    margin: 25px 0;
}

/* ============================================================== 
     # Career
=================================================================== */

.earna-career ul.job-list {
    text-align: center;
    margin-bottom: 50px;
}

.earna-career ul.job-list li {
    display: inline-block;
    margin: 0 30px;
    text-align: center;
}

.earna-career ul.job-list li:last-child {
    padding: 0;
    margin: 0;
    border: none;
}

.earna-career ul.job-list li .counter {
    position: relative;
}

.earna-career ul.job-list li .counter {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 50px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.earna-career ul.job-list li .counter .operator {
    font-size: 30px;
    margin-left: 2px;
    line-height: 1;
    position: relative;
    top: -10px;
}

.earna-career ul.job-list li .medium {
    font-weight: 500;
    color: var(--color-paragraph);
    font-size: 14px;
}

.earna-career .job-lists .item {
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
    padding: 50px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
}

.earna-career .job-lists .item:last-child {
    margin-bottom: 0;
}

.earna-career .job-lists .item .info {
    padding-right: 30px;
}

.earna-career .job-lists .item .info h4 {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 24px;
    margin-right: 50px;
}

.earna-career .job-lists .item .info h4 span {
    background: rgba(18, 115, 235, 0.2);
    color: rgba(18, 115, 235, 1);
    font-weight: 500;
    font-size: 12px;
    padding: 5px 10px;
    position: relative;
    z-index: 1;
    top: -18px;
}

.earna-career .job-lists .item .info h4 span::after {
    position: absolute;
    left: 5px;
    bottom: -8px;
    content: "";
    border-left: 2px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(18, 115, 235, 0.2);
}

.earna-career .job-lists .item .info .top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.earna-career .job-lists .item .info .top i {
    display: inline-block;
    font-size: 40px;
    margin-right: 9px;
    color: var(--color-primary);
}

.earna-career .job-lists .item .info .top i.fa-wordpress {
    font-weight: 500;
}

.earna-career .job-lists .item .info ul li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.earna-career .job-lists .item .info ul li::after {
    position: absolute;
    right: -15px;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    background: var(--color-paragraph);
    border-radius: 50%;
    margin-top: -2px;
}

.earna-career .job-lists .item .info ul li:last-child::after {
    display: none;
}

/* ============================================================== 
     # Blog Area  
=================================================================== */
.blog-area .blog-items .single-item {
    margin-bottom: 30px;
}

.blog-area .blog-items .item {
    box-shadow: 0 5px 30px 0 rgb(214 215 216 / 57%);
}

.blog-area .blog-items .item .thumb img {
    border-radius: var(--radius);
}

.blog-area .blog-items .info {
    padding-top: 40px !important;
    background: var(--white);
    border-radius: 0 0 25px 25px;
    height: 250px;
}

.blog-area .blog-items .info h2,
.blog-area .blog-items .info h3,
.blog-area .blog-items .info h4,
.blog-area .blog-items .info h5 {
    font-weight: 600;
    line-height: 1.4;
}

.blog-area .blog-items .info h2 a,
.blog-area .blog-items .info h3 a,
.blog-area .blog-items .info h4 a,
.blog-area .blog-items .info h5 a {
    font-weight: 600;
}

.blog-area .blog-items .info {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.blog-area .blog-items .info > a {
    margin-top: 8px;
}

.blog-area .blog-items .thumb {
    position: relative;
    padding: 15px;
    background: var(--white);
    border-radius: 25px 25px 0 0;
}

.blog-area .blog-items .thumb .date {
    background: var(--white);
    position: absolute;
    left: 30px;
    bottom: -10px;
    color: var(--color-heading);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius);
    text-transform: capitalize;
    border: 1px solid var(--white);
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
    font-family: var(--font-default);
}

.blog-area .blog-items h2 a:hover,
.blog-area .blog-items h3 a:hover,
.blog-area .blog-items h4 a:hover,
.blog-area .blog-items h5 a:hover,
.blog-area .blog-items .meta a:hover {
    color: var(--color-primary);
}

.torch-red .blog-area .blog-items h2 a:hover,
.torch-red .blog-area .blog-items h3 a:hover,
.torch-red .blog-area .blog-items h4 a:hover,
.torch-red .blog-area .blog-items h5 a:hover,
.torch-red .blog-area .blog-items .meta a:hover {
    color: var(--color-style-two);
}

.blog-area .meta {
    display: block;
    margin-bottom: 15px;
}

.blog-area .meta ul li {
    position: relative;
    z-index: 1;
    font-size: 16px;
    text-transform: uppercase;
    padding-right: 60px;
    display: flex;
    align-items: center;
    font-family: var(--font-default);
}

.blog-area .meta ul li img {
    height: 35px;
    width: 35px !important;
    border-radius: 50%;
    margin-right: 10px;
}

.blog-area .meta ul li:last-child {
    padding-right: 0;
}

.blog-area .meta ul {
    display: flex;
    align-items: center;
}

.blog-area .meta ul li::after {
    position: absolute;
    right: 15px;
    top: 50%;
    content: "";
    height: 1px;
    width: 30px;
    background: #dddddd;
}

.blog-area .meta ul li:last-child::after {
    display: none;
}

.blog-area .meta ul li a {
    margin-left: 3px;
    display: inline-block;
    line-height: 1.4;
}

.blog-area .meta ul li:first-child a {
    color: #1272eb;
}

.torch-red .blog-area .meta ul li:first-child a {
    color: var(--color-style-two);
}

.blog-area .meta ul li a:hover {
    color: var(--color-primary);
}

.torch-red .blog-area .meta ul li a:hover {
    color: var(--color-style-two);
}

.blog-area .info p:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-area .meta ul li img {
        display: none;
    }
}

/* Pagination */
.pagi-area .pagination {
    text-align: center;
    display: block;
    margin-top: 30px;
}

.pagi-area .pagination li.page-item {
    float: none;
    display: inline-block;
}

.pagi-area .pagination li a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    margin: 0 2px;
    margin-top: 5px;
    color: var(--color-heading);
    font-weight: 600;
}

.pagi-area .pagination li.active a {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Sidebar */

.blog-area.left-sidebar .blog-content {
    float: right;
}

.blog-area.left-sidebar .sidebar {
    padding-right: 35px;
}

.blog-area.right-sidebar .sidebar {
    padding-left: 35px;
}

.blog-area .sidebar .title {
    display: block;
}

.blog-area .sidebar .title h4 {
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: -5px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
    font-size: 20px;
    display: inline-block;
    padding-bottom: 15px;
}

.blog-area .sidebar .title h4::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid var(--color-primary);
}

.blog-area .sidebar input[type="text"] {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    box-shadow: inherit;
    min-height: 60px;
}

.blog-area .sidebar form {
    position: relative;
}

.blog-area .sidebar button[type="submit"] {
    background: transparent;
    border: medium none;
    color: var(--color-heading);
    font-weight: 600;
    letter-spacing: 1px;
    min-height: 50px;
    width: 50px;
    position: absolute;
    right: 5px;
    text-transform: uppercase;
    top: 5px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    border-radius: inherit;
    font-size: 18px;
    border-left: 1px solid #e7e7e7 !important;
}

.blog-area .sidebar input[type="submit"]:hover {
    background: var(--color-primary) none repeat scroll 0 0;
}

.blog-area .sidebar .sidebar-item {
    float: left;
    margin-bottom: 50px;
    width: 100%;
}

.blog-area .sidebar .sidebar-item:last-child {
    margin-bottom: 0;
}

.blog-area .sidebar .sidebar-item.category .sidebar-info,
.blog-area .sidebar .sidebar-item.archives .sidebar-info {
    margin-top: -5px;
}

.blog-area .sidebar .sidebar-item.category li {
    display: block;
    position: relative;
    margin-top: 13px;
}

.blog-area .sidebar .sidebar-item.category li a {
    display: flex;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--color-paragraph);
    align-items: center;
    justify-content: space-between;
}

.blog-area .sidebar .sidebar-item li a:hover {
    color: var(--color-primary);
}

.blog-area .sidebar .sidebar-item.category li a span {
    font-size: 12px;
    margin-left: 5px;
    background: #f1f1f1;
    min-width: 40px;
    padding: 3px;
    text-align: center;
    color: var(--color-heading);
    border-radius: var(--radius);
}

.blog-area .sidebar .sidebar-item.category li:first-child a span {
    top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child {
    margin-top: 0;
    padding-top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child a::after {
    top: 0;
}

.blog-area .sidebar .sidebar-item.category li:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item.recent-post li a {
    color: var(--color-heading);
    display: block;
    font-weight: 600;
}

.sidebar-item.recent-post li a:last-child {
    display: inline-block;
}

.sidebar-item.recent-post .meta-title {
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 13px;
}

.sidebar-item.recent-post .meta-title i {
    margin-right: 3px;
    font-weight: 100;
}

.sidebar-item.recent-post li a:hover {
    color: var(--color-primary);
}

.sidebar-item.recent-post li a span {
    display: inline-block;
    color: #002359;
}

.sidebar-item.recent-post li span {
    display: inline-block;
    font-size: 14px;
    color: var(--color-paragraph);
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--font-default);
}

.sidebar-item.recent-post .meta-title a {
    color: #999999;
}

.sidebar-item.recent-post li {
    color: #cdd0d3;
}

.sidebar-item.recent-post li {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.sidebar-item.recent-post li:last-child {
    border: medium none;
    margin: 0;
    padding: 0;
}

.sidebar-item.recent-post li:last-child {
    margin: 0;
}

.sidebar-item.recent-post li .thumb {
    display: table-cell;
    padding: 0;
    padding-top: 5px;
    vertical-align: top;
    width: 80px;
}

.sidebar-item.recent-post .thumb img {
    width: 100%;
    border-radius: inherit;
}

.sidebar-item.recent-post li .info {
    box-shadow: inherit;
    color: #837f7e;
    display: table-cell;
    line-height: 26px;
    padding: 0;
    padding-left: 25px;
    vertical-align: top;
    padding-top: 0 !important;
}

.sidebar-item.recent-post li .info a {
    text-decoration: inherit;
    font-weight: 600;
    font-size: 18px;
    margin-top: 0;
}

.blog-area .sidebar-item.gallery ul {
    margin: -7px;
    overflow: hidden;
}

.sidebar-item.gallery ul li {
    box-sizing: border-box;
    float: left;
    padding: 7px;
    width: 33.333%;
}

.sidebar-item.gallery ul li img {
    min-height: 70px;
    width: 100%;
}

.sidebar-item.archives ul li {
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-item.archives ul li:last-child {
    margin-bottom: 0;
}

.sidebar-item.archives ul li a {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 1;
    padding-left: 25px;
    font-size: 14px;
    color: var(--color-paragraph);
}

.sidebar-item.archives ul li a::after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "\f07b";
    font-family: "Font Awesome 7 Free";
    height: 8px;
    left: 0;
    position: absolute;
    width: 8px;
    font-weight: 600;
}

.sidebar-item.social-sidebar ul {
    margin-bottom: -10px;
    overflow: hidden;
}

.sidebar-item.social-sidebar li {
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebar-item.social-sidebar li a {
    background: #002359 none repeat scroll 0 0;
    border: medium none;
    color: var(--white);
    display: inline-block;
    height: 50px;
    line-height: 54px;
    margin-bottom: 5px;
    text-align: center;
    width: 50px;
    font-size: 14px;
}

.sidebar-item.social-sidebar li a:hover {
    color: var(--white) !important;
}

.sidebar-item.social-sidebar li.facebook a {
    background: #3b5998 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.twitter a {
    background: #1da1f2 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.pinterest a {
    background: #bd081c none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.g-plus a {
    background: #db4437 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.linkedin a {
    background: #0077b5 none repeat scroll 0 0;
}

.sidebar-item.tags ul {
    margin-top: -8px;
}

.sidebar-item.tags ul li {
    display: inline-block;
}

.sidebar-item.tags ul li a {
    border: 1px solid #e7e7e7;
    display: inline-block;
    font-weight: 600;
    margin-top: 8px;
    margin-right: 2px;
    padding: 9px 25px;
    text-transform: capitalize;
    font-size: 13px;
    border-radius: var(--radius);
    color: var(--color-paragraph);
    background: #fafafa;
}

.sidebar-item.tags ul li a:hover {
    color: var(--color-primary);
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    opacity: 0.7;
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info h4 {
    color: var(--white);
    font-weight: 600;
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info p {
    color: var(--white);
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info a {
    display: inline-block;
    color: var(--white);
    border: 1px dashed rgba(255, 255, 255, 0.7);
    padding: 10px 25px;
    margin-top: 9px;
}

.blog-area .blog-items.content-less .item .info > a {
    margin-top: 10px;
}

/* Blog Single */
.blog-area.single .item .content-box span {
    background: var(--color-primary) none repeat scroll 0 0;
    color: var(--white);
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 20px;
    text-transform: uppercase;
}

.blog-area.single .item .content-box h2,
.blog-area.single .item .content-box h3,
.blog-area.single .item .content-box h4 {
    font-weight: 600;
}

.blog-area.single .content-box .cats {
    float: left;
    margin-right: 5px;
}

.blog-area.single .content-box .meta .date {
    float: right;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-area.single .content-box .meta {
    overflow: hidden;
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
}

.blog-area .blog-items .info > ul li {
    margin-bottom: 5px;
    color: var(--color-heading);
    position: relative;
    z-index: 1;
    padding-left: 15px;
    display: block;
}

.blog-area .blog-items .info > ul {
    margin-bottom: 25px;
    margin-top: 25px;
}

.blog-area .blog-items .info > ul li::after {
    position: absolute;
    left: 0;
    top: 10px;
    content: "";
    height: 5px;
    width: 5px;
    background: #333333;
    border-radius: 50%;
}

.blog-area.single .item {
    margin-bottom: 0;
}

.blog-area .item blockquote {
    position: relative;
    z-index: 1;
    border: none;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 85px;
    color: var(--color-heading);
    font-weight: 600;
    line-height: 32px;
    background: #ecf6fa;
    padding: 50px;
    font-family: var(--font-default);
}

.blog-area .item blockquote cite {
    display: block;
    margin-top: 15px;
    color: #999999;
    font-weight: 600;
    font-style: normal;
}

.blog-area .item blockquote::before {
    position: absolute;
    left: 0;
    top: 5%;
    content: "";
    height: 90%;
    width: 3px;
    background: var(--color-primary);
}

.blog-area .item blockquote::after {
    position: absolute;
    right: 50px;
    content: "\f10d";
    font-family: "Font Awesome 7 Free";
    color: var(--color-paragraph);
    bottom: 50px;
    font-weight: 600;
    opacity: 0.1;
    font-size: 80px;
}

.blog-area .item blockquote p {
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 34px;
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
}

.blog-area .blog-content .post-tags,
.blog-area .blog-content .share {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
    padding-bottom: 6px;
}

.blog-area .blog-content .share li {
    display: inline-block;
    margin-left: 15px;
}

.blog-area .blog-content .share li a {
    display: inline-block;
    color: var(--color-primary);
}

.blog-area .blog-content .share li.facebook a {
    color: #3b5998;
}

.blog-area .blog-content .share li.twitter a {
    color: #1da1f2;
}

.blog-area .blog-content .share li.pinterest a {
    color: #bd081c;
}

.blog-area .blog-content .share li.g-plus a {
    color: #db4437;
}

.blog-area .blog-content .share li.linkedin a {
    color: #0077b5;
}

.blog-area .blog-content .post-tags .tags a {
    background: #f7f7f7;
    padding: 10px 15px;
    font-size: 14px;
    margin-right: 3px;
    margin-bottom: 5px;
    display: inline-block;
}

.blog-area.single .post-pagi-area {
    margin-top: 50px;
    overflow: hidden;
}

.blog-area.single .post-pagi-area a {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    color: #999999;
    border-radius: var(--radius);
}

.blog-area.single .post-pagi-area h5 {
    margin: 0;
    margin-top: 5px;
    font-weight: 600;
    transition: all 0.35s ease-in-out;
    font-size: 18px;
}

.blog-area.single .post-pagi-area h5:hover {
    color: var(--color-primary);
}

.blog-area.single.color-yellow .post-pagi-area a:hover {
    color: #ff9800;
}

.blog-area.single .post-pagi-area a:last-child {
    float: right;
}

.blog-area.single .post-pagi-area a:first-child i {
    margin-right: 3px;
}

.blog-area.single .post-pagi-area a:last-child i {
    margin-left: 3px;
}

.comments-area .commen-item .comments-info p {
    display: block;
    margin: 0;
}

.blog-area .contact-comments .submit {
    margin-bottom: 0;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Comments */

.blog-area .comments-form {
    margin-top: 50px;
}

.blog-area .blog-comments .comments-list {
    margin-bottom: 50px;
}

.blog-area .blog-comments .comments-list:last-child {
    margin-bottom: 0;
}

.comments-list .commen-item .avatar {
    height: 120px;
    width: 120px;
    min-width: 120px;
}

.comments-list .commen-item .content {
    position: relative;
}

.comments-list .commen-item .avatar img {
    height: 90px;
    width: 90px;
    border-radius: var(--radius);
}

.comments-list .commen-item {
    margin-top: 30px;
    display: flex;
    border-top: 1px solid #e7e7e7;
    padding-top: 30px;
}

.comments-list .commen-item:first-child {
    border: none;
    margin: 0;
    padding: 0;
}

.comments-list .commen-item:last-child {
    margin-bottom: 0;
}

.comments-list .commen-item.reply {
    margin-left: 80px;
}

.comments-area {
    margin-top: 40px;
}

.comments-area .comments-title h2,
.comments-area .comments-title h3,
.comments-area .comments-title h4 {
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.comments-list .commen-item .content h3,
.comments-list .commen-item .content h4,
.comments-list .commen-item .content h5 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comments-list .commen-item .content .reply a {
    font-size: 14px;
    background: #0a1015;
    color: var(--white);
    display: inline-block;
    padding: 8px;
    font-weight: 600;
}

.comments-list .commen-item .content .reply a:hover {
    background: var(--color-primary);
}

.comments-list .commen-item .content .reply i {
    font-size: 12px;
}

.comments-list .commen-item .content p:last-child {
    margin-bottom: 0;
}

.comments-list .commen-item .content .title {
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.comments-list .commen-item .content .title span {
    font-weight: 400;
    color: var(--color-primary);
    display: block;
    margin-top: 0;
    font-size: 13px;
}

.comments-list .commen-item .content .title span i {
    font-weight: 600;
    margin-right: 5px;
}

.comments-list .commen-item .content .title span i.fa-reply {
    font-weight: 600;
    margin-right: 3px;
}

.comments-list .commen-item .content .title span a {
    margin-left: 10px;
}

.comments-info a {
    border: 1px solid #e7e7e7;
    color: #002359;
    display: inline-block;
    font-size: 12px;
    margin-top: 5px;
    padding: 1px 20px;
    background: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    border-radius: var(--radius);
}

.comments-info a:hover {
    color: var(--color-primary);
}

.comments-info a i {
    margin-right: 10px;
}

.comments-form input,
.comments-form textarea {
    border: none;
    box-shadow: inherit;
    padding: 15px;
    background: #ecf6fa;
    font-size: 14px;
}

.comments-form textarea {
    min-height: 180px;
    padding: 15px;
}

.blog-area.full-blog.single-blog .form-group.submit {
    margin-bottom: 0;
}

.comments-form button,
.comments-form button:focus {
    background: transparent;
    margin-top: 15px;
    border: 2px solid var(--color-primary);
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: var(--white);
    transition: all 0.35s ease-in-out;
    padding: 14px 40px;
    font-size: 15px;
    border-radius: var(--radius);
    font-weight: 600;
}

.comments-form button::after {
    position: absolute;
    left: -10%;
    top: -10%;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.comments-form button:hover::after {
    width: 0;
}

.comments-form button:hover {
    color: var(--color-heading);
}

.comments-form .title h2,
.comments-form .title h3,
.comments-form .title h4 {
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.blog-area .contact-comments .comments {
    margin-top: 20px;
}

.blog-area.single .blog-items .item .contact-comments .col-md-6 {
    float: left;
    padding: 0 15px;
}

/* Pagination */

.pagination li {
    display: inline-block;
    margin-top: 7px;
}

ul.pagination {
    display: block;
    margin-top: 30px;
}

.pagination li a {
    display: inline-block;
    padding: 15px 20px;
    border-radius: var(--radius);
    margin: 0 2px;
    color: var(--color-primary);
    font-weight: 800;
}

.pagination li.page-item.active a {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* ============================================================== 
     # Contact Area  
=================================================================== */

.contact-area.extra-margin {
    margin: 120px 0;
}

.contact-area {
    position: relative;
    z-index: 1;
}

.contact-area::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 120px;
    background: var(--white);
    z-index: -1;
}

.contact-area::before {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 120px;
    background: var(--white);
    z-index: -1;
}

.contact-area .info .content {
    padding: 50px;
    background: var(--white);
    position: relative;
    z-index: 1;
    padding-left: 80px;
    padding-top: 80px;
}

.contact-area .info .content::after {
    position: absolute;
    right: -30px;
    top: 30px;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.contact-area .info h2 {
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-area .info ul {
    display: block;
    margin-top: 35px;
}

.contact-area .info ul li {
    display: flex;
    margin-top: 30px;
}

.contact-area .info ul li:first-child {
    margin-top: 0;
}

.contact-area .info ul li i {
    display: inline-block;
    height: 60px;
    width: 60px;
    min-width: 60px;
    line-height: 60px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 57%,
        rgba(4, 215, 242, 1) 100%
    );
    text-align: center;
    color: var(--white);
    border-radius: 50%;
    margin-right: 20px;
    font-size: 20px;
}

.contact-area .info ul li p {
    margin: 0;
}

.contact-area .form-box input,
.contact-area .form-box textarea {
    padding: 20px;
    padding-left: 0;
    border: none;
    box-shadow: inherit;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    border-radius: inherit;
}

.contact-area .form-box input::-webkit-input-placeholder,
.contact-area .form-box textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--white);
}

.contact-area .form-box input::-moz-placeholder,
.contact-area .form-box textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--white);
}

.contact-area .form-box input:-ms-input-placeholder,
.contact-area .form-box textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--white);
}

.contact-area .form-box input:-moz-placeholder,
.contact-area .form-box textarea:-moz-placeholder {
    /* Firefox 18- */
    color: var(--white);
}

.contact-area .form-box textarea {
    min-height: 180px;
}

.contact-area .form-box button {
    display: inline-block;
    padding: 15px 42px;
    border-radius: var(--radius);
    background: var(--white);
    font-weight: 600;
    color: var(--color-primary);
}

.contact-area .form-box button i {
    margin-left: 3px;
}

.contact-area .form-box img.loader {
    margin-left: 10px;
}

/* Google Maps */

.google-maps iframe {
    border: medium none;
    height: 550px;
    margin-bottom: -10px;
    width: 100%;
}

.maps-area {
    overflow: hidden;
}

/* ============================================================== 
     # Contact Version Two
=================================================================== */

.contact-us-area .info h2 {
    font-weight: 600;
}

.contact-us-area .info ul li {
    display: flex;
    margin-top: 30px;
}

.contact-us-area .info ul li:first-child {
    margin-top: 0;
}

.contact-us-area .info ul li p {
    margin: 0;
}

.contact-us-area .info ul li i {
    display: inline-block;
    font-size: 30px;
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius);
    margin-right: 20px;
}

.contact-us-area .info ul {
    margin-top: 50px;
}

.contact-us-area .info ul li h5 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-us-area form {
    background: var(--white);
    box-shadow: 0 5px 30px 0 rgb(214 215 216 / 57%);
    padding: 60px;
    border-radius: var(--radius);
}

.contact-us-area form input,
.contact-us-area form textarea {
    border: none;
    background: #f4f4f4;
    padding: 20px;
    font-size: 15px;
    border-radius: var(--radius);
}

.contact-us-area form textarea {
    min-height: 180px;
}

.contact-us-area form button {
    padding: 15px 42px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    background: transparent;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    color: var(--white);
}

.contact-us-area form button::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
        to right,
        var(--color-primary),
        var(--color-primary)
    );
    background-size: 220% 150%;
    text-transform: uppercase;
    display: inline-block;
    color: var(--white) !important;
    background-color: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
    border-radius: var(--radius);
}

.contact-us-area form button:hover::after,
.contact-us-area form button:active {
    background-position: -70% 0;
    color: var(--white);
}
/* ============================================================== 
     # Login Register
=================================================================== */
form.white-popup-block {
    background: var(--white) none repeat scroll 0 0;
    border-radius: var(--radius);
    margin: auto;
    overflow: hidden;
    padding: 50px 30px;
    position: relative;
    width: 50%;
}

form.white-popup-block button.mfp-close {
    color: red;
}

form.white-popup-block li {
    display: inline-block;
    margin-bottom: 6px;
    margin-right: 3px;
    margin-left: 3px;
}

form.white-popup-block li a {
    background: #002147 none repeat scroll 0 0;
    border: medium none;
    border-radius: 50%;
    color: var(--white);
    display: inline-block;
    font-size: 15px;
    height: 45px;
    line-height: 48px;
    text-align: center;
    width: 45px;
}

form.white-popup-block li.facebook a {
    background: #3b5998 none repeat scroll 0 0;
}

form.white-popup-block li.twitter a {
    background: #1da1f2 none repeat scroll 0 0;
}

form.white-popup-block li.pinterest a {
    background: #bd081c none repeat scroll 0 0;
}

form.white-popup-block li.g-plus a {
    background: #db4437 none repeat scroll 0 0;
}

form.white-popup-block li.linkedin a {
    background: #0077b5 none repeat scroll 0 0;
}

form.white-popup-block .col-md-6:last-child {
    border-left: 1px solid #e7e7e7;
}

form.white-popup-block .col-md-6:last-child {
    border-left: 1px solid;
}

form.white-popup-block h3,
form.white-popup-block h4 {
    font-weight: 600;
    margin-bottom: 30px;
}

form.white-popup-block .login-social h3,
form.white-popup-block .login-social h4 {
    margin-bottom: 20px;
}

form.white-popup-block .login-social {
    padding-right: 30px;
    text-align: center;
}

form.white-popup-block .login-social > i {
    display: inline-block;
    height: 90px;
    width: 90px;
    line-height: 90px;
    background: rgba(18, 115, 235, 0.1);
    color: rgba(18, 115, 235, 1);
    font-size: 36px;
    border-radius: 50%;
    margin-bottom: 30px;
}

form.white-popup-block .login-social > i.fa-user-plus {
    font-size: 30px;
    position: relative;
    padding-left: 6px;
}

form.white-popup-block .login-custom {
    border-left: 1px solid #e7e7e7;
    padding-left: 35px;
}

form.white-popup-block input {
    border: none;
    box-shadow: inherit;
    background: rgba(237, 245, 255, 1);
    padding-left: 25px;
}

form.white-popup-block .lost-pass-link {
    float: right;
}

form.white-popup-block .lost-pass-link:hover {
    text-decoration: underline;
}

form.white-popup-block label {
    float: left;
}

form.white-popup-block label input {
    float: left;
    margin-right: 10px;
    min-height: 25px;
}

form.white-popup-block button[type="submit"] {
    background: var(--color-primary) none repeat scroll 0 0;
    border: medium none;
    color: var(--white);
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
    padding: 12px 55px;
    text-transform: uppercase;
    border-radius: var(--radius);
}

form.white-popup-block .link-bottom {
    display: block;
    float: left;
    margin-bottom: 0;
    margin-top: 15px;
    width: 100%;
}

form.white-popup-block .link-bottom a:hover {
    text-decoration: underline;
}

.login-area form.white-popup-block {
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    width: auto;
}

.login-area .form-group {
    width: 100%;
}

/* ============================================================== 
     # Error Page  
=================================================================== */

.error-page-area {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.error-page-area .error-box h1 {
    color: var(--color-paragraph);
    font-size: 300px;
    font-weight: 900;
    line-height: 215px;
    z-index: -1;
    margin-bottom: 30px;
}

.error-page-area h2 {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.error-page-area a {
    margin-top: 15px;
}

.error-box .search {
    margin-top: 30px;
    text-align: center;
}

.error-box .search form {
    margin: auto;
    position: relative;
    width: 400px;
}

.error-box .search .input-group {
    width: 100%;
}

.error-box .search form input {
    border: 1px solid #e7e7e7;
    box-shadow: inherit;
    border-radius: var(--radius);
    min-height: 60px;
    padding: 25px;
}

.error-box .search form button {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    line-height: 60px;
    padding: 0 25px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

/* ============================================================== 
     # Footer  
=================================================================== */

footer {
    position: relative;
    z-index: 1;
}

footer::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 400px;
    width: 400px;
    background: url(assets/img/map.svg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.3;
}

footer .widget-title,
footer img {
    width: 200px;
}

footer .f-items .f-item.about {
    margin-right: 10px;
}

footer .f-items .f-item form {
    position: relative;
    margin-top: 30px;
}

footer .f-items .f-item form input {
    background: var(--dark-secondary);
    color: var(--white);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

footer .f-items .f-item form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #adb5bd;
}

footer .f-items .f-item form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #adb5bd;
}

footer .f-items .f-item form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #adb5bd;
}

footer .f-items .f-item form input:-moz-placeholder {
    /* Firefox 18- */
    color: #adb5bd;
}

footer .f-items .f-item form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background: transparent;
    color: var(--color-primary);
    font-size: 25px;
}

.torch-red footer .f-items .f-item form button {
    color: var(--color-style-two);
}

footer .f-items .f-item form button::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 30px;
    width: 1px;
    margin-top: -15px;
    opacity: 0.1;
    border-left: 1px solid var(--white);
}

footer .f-items .f-item form button i {
    position: relative;
    top: 4px;
}

footer p {
    color: #a0a2a6 !important;
}

footer a {
    font-weight: 500;
}

footer .f-items .f-item.link li {
    margin-bottom: 12px;
}

footer .f-items .f-item.link li:last-child {
    margin-bottom: 0;
}

footer .f-items .f-item.link li a:hover {
    color: var(--white);
    margin-left: 10px;
}

footer .f-items .f-item.link li a {
    font-weight: 400;
    color: #a0a2a6;
    transition: all 0.3s ease;
    font-size: 13px;
}

footer .f-items .f-item.link li a i {
    font-size: 12px;
    margin-right: 3px;
}

footer .f-items .f-item .address li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

footer .f-items .f-item .address li .content,
footer .f-items .f-item .address li .content a {
    color: #a0a2a6;
}

footer .f-items .f-item .address li i {
    display: inline-block;
    margin-right: 20px;
    color: var(--white);
    font-size: 24px;
    color: var(--color-primary);
    position: relative;
    top: 5px;
}

.torch-red footer .f-items .f-item .address li i {
    color: var(--color-style-two);
}

footer .f-items .f-item .address li:last-child {
    margin-bottom: -8px;
}

footer .f-items .f-item .address li strong {
    display: block;
    font-family: var(--font-default);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

/* Footer Services */
.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footerServicesMore {
    margin-top: 5px;
}

.footer-show-more {
    background: transparent;
    border: none;
    color: var(--color-style-two);
    font-size: 13px;
    padding: 10px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-show-more:hover {
    color: var(--white);
}

.footer-show-more .less-text {
    display: none;
}

.footer-show-more[aria-expanded="true"] .more-text {
    display: none;
}

.footer-show-more[aria-expanded="true"] .less-text {
    display: inline;
}

/* ========================
   Desktop Navbar - Always White Background
   ======================== */
@media (min-width: 1024px) {
    nav.navbar.validnavs.navbar-fixed.no-background {
        background: #fff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    }

    nav.navbar.validnavs.no-background.white ul.nav > li > a {
        color: var(--color-heading) !important;
    }

    nav.navbar.validnavs.no-background.white ul.nav > li > a:hover,
    nav.navbar.validnavs.no-background.white ul.nav > li.active > a {
        color: var(--color-primary) !important;
    }

    nav.navbar.validnavs.no-background.white .attr-nav > ul > li > a {
        color: var(--color-white) !important;
    }

    .navbar.no-background .attr-right .attr-nav li .call h5 {
        color: var(--color-heading) !important;
    }

    .navbar.no-background .attr-right .attr-nav li .call h5 a {
        color: var(--color-heading) !important;
    }

    .navbar.no-background .attr-right .attr-nav li .call h5 a:hover {
        color: var(--color-primary) !important;
    }

    .navbar.no-background.white .attr-right .attr-nav li .call p {
        color: var(--color-default) !important;
        opacity: 1;
    }

    .navbar.no-background .attr-right .attr-nav li .call i {
        color: var(--color-primary);
    }

    nav.navbar.validnavs.navbar-fixed.no-background .logo-display {
        display: none !important;
    }

    nav.navbar.validnavs.navbar-fixed.no-background .logo-scrolled {
        display: block !important;
    }
}

/* Dropdown Styles - Desktop */
@media (min-width: 1024px) {
    .navbar-nav .dropdown {
        position: relative !important;
    }

    /* Dropdown hover - link highlight */
    .navbar-nav .dropdown.on > a {
        color: var(--color-primary) !important;
    }

    /* Dropdown menu visual styling - JS handles show/hide via fadeIn/fadeOut */
    .navbar-nav .dropdown-menu {
        padding: 15px !important;
        border: none !important;
        border-radius: 15px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
        background: #fff !important;
    }

    /* Dropdown link styles */
    nav.navbar.validnavs ul li.dropdown ul.dropdown-menu li a {
        color: var(--color-heading);
        padding: 8px 12px !important;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

    nav.navbar.validnavs ul li.dropdown ul.dropdown-menu li a:hover {
        background: rgba(0, 0, 0, 0.04);
        color: var(--color-primary) !important;
        padding-left: 16px !important;
    }

    /* Invisible bridge between trigger and dropdown to prevent flickering */
    .navbar-nav > li.dropdown > .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 20px;
        background: transparent;
    }

    /* Megamenu bridge */
    .navbar-nav > li.dropdown.megamenu-fw > .dropdown-menu::before {
        top: -20px;
        height: 20px;
    }
}

/* Megamenu Services */
nav.validnavs .dropdown.megamenu-fw {
    position: static !important;
}

nav.validnavs .dropdown.megamenu-fw .dropdown-menu.megamenu-services {
    padding: 0 !important;
    border-radius: 25px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 1100px !important;
    max-width: calc(100vw - 30px) !important;
}

.megamenu-services-wrapper {
    display: flex;
    min-height: 480px;
}

.megamenu-services-list {
    flex: 0 0 50%;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.megamenu-services-list::-webkit-scrollbar {
    width: 4px;
}

.megamenu-services-list::-webkit-scrollbar-track {
    background: transparent;
}

.megamenu-services-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.megamenu-services-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.megamenu-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--color-heading);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.megamenu-service-item i {
    font-size: 10px;
    color: var(--color-style-two);
    transition: transform 0.3s ease;
}

.megamenu-service-item:hover,
.megamenu-service-item.active {
    background: var(--color-style-two);
    color: var(--white);
}

.megamenu-service-item:hover i,
.megamenu-service-item.active i {
    color: var(--white);
    transform: translateX(3px);
}

.megamenu-services-preview {
    flex: 0 0 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
}

.megamenu-services-preview .preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.megamenu-services-preview .preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.megamenu-services-preview .preview-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.megamenu-services-preview .preview-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.megamenu-services-preview .preview-content h5 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white);
}

.megamenu-services-preview .preview-content p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Service Details Page */
.service-share .share-box {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.service-share .share-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-share .share-icon.facebook {
    background: #3b5998;
}
.service-share .share-icon.twitter {
    background: #1da1f2;
}
.service-share .share-icon.linkedin {
    background: #0077b5;
}
.service-share .share-icon.whatsapp {
    background: #25d366;
}

.service-share .share-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.service-info-box .info-list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.service-info-box .info-list ul li:last-child {
    border-bottom: none;
}

.service-info-box .info-list ul li i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-style-two);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
}

/* Other Services Section */
.other-services-section .section-title h4 {
    color: var(--color-style-two);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.other-services-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
}

.other-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.other-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.other-service-card .service-thumb {
    height: 200px;
    overflow: hidden;
}

.other-service-card .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.other-service-card:hover .service-thumb img {
    transform: scale(1.1);
}

.other-service-card .service-content {
    padding: 25px;
}

.other-service-card .service-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.other-service-card .service-content h5 a {
    color: var(--color-heading);
    transition: color 0.3s ease;
}

.other-service-card .service-content h5 a:hover {
    color: var(--color-style-two);
}

.other-service-card .service-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.other-service-card .read-more {
    color: var(--color-style-two);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.other-service-card .read-more:hover {
    gap: 12px;
}

/* Footer Bottom */
footer .footer-bottom {
    overflow: hidden;
}

footer .footer-bottom p {
    margin-bottom: 0;
    font-size: 13px;
}

footer .footer-bottom li {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    z-index: 1;
    padding-left: 25px;
}

footer .footer-bottom li::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    background: var(--white);
    border-radius: 50%;
    margin-top: -3px;
    opacity: 0.5;
}

footer .footer-bottom li:first-child::before {
    display: none;
}

footer .footer-bottom-box {
    padding: 10px 0;
    padding-right: 80px;
    position: relative;
    z-index: 1;
}

footer .footer-bottom-box::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 400%;
    background: var(--dark-secondary);
    z-index: -1;
    opacity: 0.8;
    clip-path: polygon(0 0, 99% 0, 100% 100%, 10% 100%);
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.earna-preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9000;
}

.earna-preloader .animation-preloader {
    z-index: 1000;
}

.earna-preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--color-primary);
    height: 150px;
    margin: 0 auto 3.5em auto;
    width: 150px;
}

.torch-red .earna-preloader .animation-preloader .spinner {
    border-top-color: var(--color-style-two);
}

.earna-preloader .animation-preloader .txt-loading {
    font: bold 5em var(--font-default);
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.earna-preloader .animation-preloader .txt-loading .letters-loading {
    color: rgba(0, 0, 0, 0.2);
    position: relative;
}

.earna-preloader .animation-preloader .txt-loading .letters-loading:before {
    -webkit-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite;
    color: var(--black);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: var(--font-default);
    position: absolute;
    top: -3px;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
}

.earna-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.earna-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(3):before {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.earna-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.earna-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.earna-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.earna-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.earna-preloader
    .animation-preloader
    .txt-loading
    .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.earna-preloader.dark .animation-preloader .spinner {
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: var(--white);
}

.earna-preloader.dark .animation-preloader .txt-loading .letters-loading {
    color: rgba(255, 255, 255, 0.2);
}

.earna-preloader.dark
    .animation-preloader
    .txt-loading
    .letters-loading:before {
    color: var(--white);
}

.earna-preloader p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #3b3b3b;
}

.earna-preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.earna-preloader .loader .row {
    height: 100%;
}

.earna-preloader .loader .loader-section {
    padding: 0px;
}

.earna-preloader .loader .loader-section .bg {
    background-color: var(--white);
    height: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.earna-preloader .loader.dark_bg .loader-section .bg {
    background: #111339;
}

.earna-preloader.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.earna-preloader.loaded .loader-section .bg {
    width: 0;
    -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .earna-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }

    .earna-preloader .animation-preloader .txt-loading {
        font: bold 3.5em var(--font-default);
    }
}

@media screen and (max-width: 500px) {
    .earna-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .earna-preloader .animation-preloader .txt-loading {
        font: bold 2em var(--font-default);
    }
}

/* ============================================================== 
     # Home Style Six 
=================================================================== */
.top-bar-style-two {
    background: var(--bg-gradient);
    padding: 10px 30px;
    border-radius: 0 0 25px 25px;
}

.top-bar-style-two .info li i {
    font-weight: 100;
    color: var(--white);
}

nav.navbar.bootsnav {
    background-color: var(--white);
    border-radius: 0;
    border: none;
    box-shadow: 0 20px 25px 0 rgb(0 0 0 / 4%);
    -moz-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 20px 25px 0 rgb(0 0 0 / 4%);
    -o-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.04);
}

.btn.btn-theme.effect {
    border: 2px solid var(--color-primary);
}

.btn.btn-theme.effect::after {
    background: var(--color-primary);
}

.btn.btn-theme.effect::before {
    background: var(--color-style-two);
}

.btn.btn-theme.effect:hover {
    border: 2px solid var(--color-style-two);
}

.banner-style-six .content h2 {
    font-size: 75px;
    font-weight: 600;
    margin-bottom: 25px;
}

.banner-style-six .content a {
    margin-top: 15px;
}

.banner-style-six .content p {
    color: var(--color-heading);
    font-weight: 400;
}

.banner-style-six .carousel-control i {
    font-weight: 100;
    font-size: 30px;
    position: relative;
    top: 5px;
    color: var(--color-heading);
}

.banner-style-six .content h2 strong {
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.banner-style-six .content h2 strong::after {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 12px;
    content: "";
    height: 7px;
    background: var(--color-style-two);
    z-index: -1;
}

.banner-style-six .content h2 strong::before {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 5px;
    content: "";
    height: 3px;
    background: var(--color-style-two);
    z-index: -1;
    transform: rotate(-1deg);
}

.banner-area .fixed-shape img {
    height: 100%;
    width: auto;
    float: right;
}

.banner-area.banner-style-six .fixed-shape {
    bottom: -100px;
    top: auto;
}

.banner-area.banner-style-six.auto-height .content {
    padding-top: 200px;
    padding-bottom: 200px;
}

.navbar .attr-nav .call i.fa-user-headset {
    font-weight: 100;
    -webkit-text-fill-color: var(--color-heading);
}

.about-service-list {
    background-color: var(--color-style-two);
    padding: 50px;
    background: linear-gradient(
        30deg,
        var(--color-primary) 5%,
        var(--color-style-two) 90%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60%;
}

.about-style-six.d-flex {
    position: relative;
}

.about-style-six .thumb {
    max-width: 120%;
    margin-left: -20%;
    border-right: 5px solid var(--white);
}

.about-service-list li {
    margin-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    padding-top: 30px;
}

.about-service-list li i {
    display: inline-block;
    font-size: 50px;
    font-weight: 100;
    margin-right: 30px;
}

.about-service-list li p {
    margin: 0;
    opacity: 0.9;
}

.about-service-list li:first-child {
    margin-top: 0;
    padding: 0;
    border: none;
}

.about-service-list li h4 {
    font-weight: 600;
}

.about-service-list img {
    width: 60px;
    min-width: 80px;
    margin-bottom: 30px;
}

.shape-inner {
    position: absolute;
    z-index: -1;
    right: -65px;
    top: -80px;
    margin-left: -120px;
    transform: rotate(5deg);
}

.shape-inner img {
    height: 100px;
}

.compnay-author {
    display: flex;
    align-items: center;
}

.compnay-author img {
    height: 100px;
    margin-right: 30px;
    border-right: 1px solid #e7e7e7;
    padding-right: 30px;
    margin-top: 30px;
}

.compnay-author h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.compnay-author span strong {
    color: var(--color-primary);
}

.about-style-six-info .title {
    font-weight: 600;
    margin-bottom: 30px;
}

.circle-progress-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    grid-column-gap: 50px;
}

.circle-progress-items .circle {
    position: relative;
    z-index: 1;
}

.circle-progress-items .circle strong {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-default);
    color: var(--color-heading);
    font-size: 20px;
}

.circle-progress-items h5 {
    font-weight: 600;
    margin: 0;
    margin-top: 15px;
}

.services-style-six .item {
    padding: 60px 37px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 5px 30px 0 rgb(214 215 216 / 57%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: var(--radius);
}

.services-style-six {
    margin-bottom: 30px;
}

.services-style-six .item i {
    display: inline-block;
    font-size: 40px;
    margin-bottom: 30px;
    height: 90px;
    width: 90px;
    line-height: 90px;
    text-align: center;
    color: var(--color-primary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.services-style-six .item p {
    margin: 0;
}

.services-style-six .item i::before {
    line-height: inherit;
}

.services-style-six .item i::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.1;
}

.services-style-six:nth-child(2) .item i {
    color: #ff5a0f;
}

.services-style-six:nth-child(2) .item i::after {
    background: #ff5a0f;
}

.services-style-six:nth-child(4) .item i {
    color: #00ddc1;
}

.services-style-six:nth-child(4) .item i::after {
    background: #00ddc1;
}

.services-style-six:nth-child(3) .item i {
    color: #ff35b7;
}

.services-style-six:nth-child(3) .item i::after {
    background: #ff35b7;
}

.services-style-six .item img {
    height: 80px;
    margin-bottom: 30px;
}

.service-six-grid:nth-child(2) {
    margin-top: 60px;
}

.shape-box {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: right;
}

.shape-box .shape-item {
    position: absolute;
    height: 700px;
    width: 200px;
    background: var(--white);
    z-index: -1;
    right: 0;
    transform: skewX(30deg);
    opacity: 0.5;
}

.services-style-six-area {
    position: relative;
    z-index: 1;
}

.shape-box .shape-item:nth-child(2) {
    top: 300px;
    right: 50px;
}

.shape-box .shape-item:nth-child(3) {
    top: 700px;
}

.half-bg-light {
    position: relative;
    z-index: 1;
}

.half-bg-light::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 30%;
    width: 100%;
    background: var(--white);
    z-index: -1;
}

.compnay-owner-carousel-carousel .item {
    position: relative;
}

.compnay-owner-carousel-carousel .item .company-owner-info {
    max-width: 33.333%;
    position: absolute;
    left: 7%;
    bottom: -85px;
    background: var(--white);
}

.compnay-owner-carousel-carousel .item .company-owner-info .content {
    padding: 50px;
    position: relative;
    z-index: 1;
}

.compnay-owner-carousel-carousel .item .company-owner-info .content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    font-family: var(--font-default);
}

.compnay-owner-carousel-carousel .item .company-owner-info .content::after {
    position: absolute;
    left: 50px;
    top: 30px;
    content: "";
    height: 80px;
    width: 80px;
    background: url(assets/img/shape/quote.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    z-index: -1;
    opacity: 0.15;
}

.compnay-owner-carousel-carousel .item .company-owner-info .provider {
    background: linear-gradient(
        30deg,
        var(--color-primary) 5%,
        var(--color-style-two) 90%
    );
    padding: 15px 30px;
}

.compnay-owner-carousel-carousel .item .company-owner-info .provider h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 3px;
}

.compnay-owner-carousel-carousel .item .company-owner-info .provider span {
    color: var(--white);
    opacity: 0.9;
}

.compnay-owner-carousel-carousel .owl-stage-outer {
    padding-bottom: 85px;
}

.compnay-owner-carousel-carousel.owl-carousel.owl-theme .owl-nav {
    position: absolute;
    margin: 0;
    bottom: 0;
    right: 0;
}

.compnay-owner-carousel-carousel.owl-carousel.owl-theme .owl-nav > div {
    margin: 0;
    margin-left: 10px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* ============================================================== 
     # Home Seven CSS 
=================================================================== */

@keyframes infiUpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes infiUpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.banner-area.banner-style-seven.auto-height .content {
    padding: 0;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 1;
    height: 600px;
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: inherit;
}

.banner-area.banner-style-seven.auto-height .carousel-item {
    padding: 160px 0;
}

.banner-area.banner-style-seven.auto-height .content::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    mix-blend-mode: multiply;
    opacity: 0.8;
    border-radius: 50%;
}

.banner-area.banner-style-seven.auto-height .content p {
    padding: 0 15%;
}

.banner-style-seven h2 {
    padding: 0 15%;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-style-seven p {
    opacity: 1 !important;
    z-index: 1;
    position: relative;
    animation: inherit;
    font-weight: 400;
    animation: infinite;
}

.banner-style-seven a {
    margin-top: 15px;
}

.banner-area.banner-style-seven.auto-height .content::before {
    position: absolute;
    right: 0;
    top: 100px;
    content: "";
    height: 200px;
    width: 200px;
    background: url(assets/img/shape/17.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    transition: all 0.35s ease-in-out;
    opacity: 0;
}

.banner-area.banner-style-seven.auto-height
    .carousel-item.active
    .content::before {
    opacity: 1;
    top: 0;
    transition-delay: 300ms;
}

.banner-area .carousel-indicators.left.center {
    bottom: auto;
    top: 50%;
    height: auto;
    width: auto;
    transform: translateY(-50%);
    display: block;
    left: 5%;
}

.banner-area.banner-style-seven .carousel-indicator {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    left: 50px;
}

.banner-area .carousel-indicators.left.center button {
    display: block;
}

.heading-left {
    margin-bottom: 60px;
}

.heading-left .sub-title {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.heading-left .title {
    font-weight: 600;
    margin-bottom: 0;
}

.services-style-seven .item {
    display: flex;
    margin-bottom: 30px;
    padding: 50px 37px;
    transition: all 0.35s ease-in-out;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services-style-seven .item::before {
    position: absolute;
    bottom: -10px;
    right: -50px;
    content: "";
    background: url(assets/img/shape/20.png);
    height: 60px;
    width: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.35s ease-in-out;
    opacity: 0;
}

.services-style-seven .item:hover::before,
.services-style-seven:first-child .item::before {
    opacity: 1;
    right: 0;
}

.services-style-seven .item::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 70%;
    width: 100%;
    transition: all 0.35s ease-in-out;
    background: var(--color-primary);
    z-index: -1;
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
}

.services-style-seven .item i {
    display: inline-block;
    font-size: 50px;
    min-width: 70px;
    color: var(--color-primary);
}

.services-style-seven .item p {
    margin: 0;
}

.services-style-seven:first-child .item::after,
.services-style-seven .item:hover::after {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.services-style-seven .item i,
.services-style-seven .item p,
.services-style-seven .item a {
    transition: all 0.35s ease-in-out;
}

.services-style-seven:first-child .item i,
.services-style-seven:first-child .item p,
.services-style-seven:first-child .item a,
.services-style-seven .item:hover i,
.services-style-seven .item:hover p,
.services-style-seven .item:hover a {
    color: var(--white);
}

.services-style-seven:first-child .item p {
    opacity: 0.9;
}

.services-style-seven-area {
    background-size: cover;
    background-position: left top;
}

/* About */
.about-style-seven h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

.about-style-seven h4 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    display: inline-block;
    background: linear-gradient(
        90deg,
        var(--color-primary) 30%,
        rgb(115 4 242) 100%
    );
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-style-seven .thumb {
    position: relative;
    margin-right: 50px;
}

.about-style-seven .author {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.about-style-seven .author img {
    height: 70px;
    margin-right: 20px;
}

.about-style-seven .author h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.about-style-seven ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    margin-top: 23px;
}

.about-style-seven ul li {
    position: relative;
    z-index: 1;
    font-weight: 500;
    padding-left: 28px;
    line-height: 32px;
    font-family: var(--font-default);
    color: var(--color-heading);
}

.about-style-seven ul li::after {
    position: absolute;
    left: 0;
    top: 8px;
    content: "\f00c";
    font-family: "Font Awesome 7 Free";
    height: 18px;
    width: 18px;
    text-align: center;
    line-height: 18px;
    background: var(--color-primary);
    color: var(--white);
    font-size: 12px;
    border-radius: 50%;
    font-weight: 900;
}

.about-style-seven .video {
    position: absolute;
    bottom: 50px;
    right: -30px;
    overflow: hidden;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.about-style-seven .video i {
    display: inline-block;
    height: 80px;
    width: 80px;
    background: var(--color-primary);
    text-align: center;
    line-height: 80px;
    color: var(--white);
    font-weight: 100;
    font-size: 30px;
}

.about-style-seven .video i::before {
    position: relative;
    left: 7px;
}

.about-style-seven .video a {
    display: inline-block;
    background: var(--white);
}

.about-style-seven .video span {
    padding: 0 25px;
    position: relative;
    top: -5px;
    padding-right: 35px;
}

.about-style-seven .thumb img:nth-child(2) {
    position: absolute;
    left: -80px;
    bottom: 50px;
    height: 150px;
    border: none;
    border-radius: inherit;
}

.about-style-seven .thumb img {
    border: 5px solid var(--white);
    border-radius: 50%;
}

.shape-left-top {
    position: absolute;
    left: 0;
    top: -80px;
    max-width: 15%;
}

/* Process */
.process-style-two img {
    height: 80px;
    margin-bottom: 30px;
}

.process-style-two h4 {
    font-weight: 600;
    margin: 0;
    padding-right: 30%;
}

.process-style-two .item {
    position: relative;
    border: 1px solid #e7e7e7;
    padding: 50px;
    border-radius: var(--radius);
}

.process-style-two .item span {
    position: absolute;
    margin-left: 30px;
    font-family: var(--font-default);
    font-weight: 800;
    font-size: 50px;
    top: 60px;
    opacity: 0.15;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-paragraph);
    text-shadow: -5px 5px 0px #eceefe;
    line-height: 1;
}

/* ============================================================== 
     # Responsive CSS 
=================================================================== */
@media (max-width: 1023px) {
    .navbar .attr-nav .call i.fa-user-headset {
        display: none;
    }
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .top-bar-style-two {
        background: no-repeat;
    }

    .top-bar-area.top-bar-style-six-area {
        background: var(--bg-gradient);
    }

    .banner-area.banner-style-six.auto-height .content {
        padding: 120px 0 !important;
        margin: 0;
    }

    .banner-style-six .content h2 {
        font-size: 55px;
    }

    .banner-area.banner-style-seven.auto-height .content {
        margin: auto;
    }

    .about-style-six.d-flex {
        display: block !important;
    }

    .about-style-six .thumb {
        margin: 0;
        max-width: 100%;
        border: none;
        margin-bottom: 30px;
    }

    .about-style-six .shape-inner {
        display: none;
    }

    .about-service-list {
        text-align: center;
        margin-bottom: 50px;
        width: 100%;
        min-width: 100%;
        padding: 50px 30px;
    }

    .compnay-author {
        display: block;
    }

    .about-style-six-info {
        text-align: center;
    }

    .compnay-author img {
        margin: 0;
        padding: 0;
        border: none;
        margin-bottom: 15px;
    }

    .about-style-six .thumb img {
        width: 100%;
    }

    .about-style-seven .thumb img:nth-child(2) {
        left: 0;
    }

    .about-style-seven .thumb {
        margin: 0;
        margin-bottom: 80px;
    }

    .about-style-seven .video {
        right: 0;
    }

    .heading-left {
        text-align: center;
    }

    .process-style-two {
        margin-bottom: 80px;
    }

    .process-style-two-area {
        padding-bottom: 40px;
    }

    .process-style-two-area .text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .services-style-six-area {
        text-align: center;
    }

    .services-style-six-area .right-info {
        margin-top: 50px;
    }

    .service-six-grid:nth-child(2) {
        margin-top: 0;
    }

    .services-style-seven-area {
        text-align: center;
    }

    .heading-left .text-right {
        text-align: center !important;
        margin-top: 20px;
    }

    .services-style-seven .item {
        display: block;
        background: #f9f9f9;
    }

    .services-style-seven .item i {
        margin-bottom: 30px;
    }

    .compnay-owner-carousel-carousel .item .company-owner-info {
        position: relative;
        max-width: 100%;
        left: 0;
        bottom: 0;
        border: 1px solid #e7e7e7;
    }

    .compnay-owner-carousel-carousel .owl-stage-outer {
        padding-bottom: 0;
    }

    .compnay-owner-carousel-carousel.owl-carousel.owl-theme .owl-nav {
        display: none;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .banner-style-six .content h2 {
        font-size: 36px;
    }

    .banner-area.banner-style-six.auto-height .content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .banner-area.banner-style-seven.auto-height .content {
        height: 100%;
        width: 100%;
    }

    .banner-area.banner-style-seven.auto-height .content::after {
        height: 500%;
        width: 500%;
        border-radius: inherit;
        left: -150%;
        top: -150%;
    }

    .banner-area.banner-style-seven.auto-height .carousel-item {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    .banner-area.banner-style-seven.auto-height
        .carousel-item.active
        .content::before {
        display: none;
    }

    .banner-area .carousel-indicators.left.center {
        bottom: 20px;
        top: auto;
        transform: translateY(0);
        left: 0;
        width: 100%;
        right: 0;
        margin: 0;
        padding: 0;
    }

    .banner-area.banner-style-seven .carousel-indicator {
        top: auto;
        transform: inherit;
        bottom: 0;
        left: 0;
    }

    .banner-area .carousel-indicators.left.center button {
        display: inline-block;
    }

    .about-style-six.d-flex {
        display: block !important;
    }

    .about-style-six .thumb {
        margin: 0;
        max-width: 100%;
        border: none;
        margin-bottom: 30px;
    }

    .about-style-six .shape-inner {
        display: none;
    }

    .about-service-list {
        text-align: center;
        margin-bottom: 50px;
        width: 100%;
        min-width: 100%;
        padding: 50px 30px;
    }

    .about-style-seven .thumb img:nth-child(2) {
        left: 0;
        bottom: 0;
        max-width: 50%;
        height: auto;
    }

    .about-style-seven .thumb {
        margin: 0;
        margin-bottom: 70px;
    }

    .about-style-seven .video {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: auto;
        bottom: -30px;
    }

    .about-style-seven .video span {
        display: none;
    }

    .about-style-seven .video i::before {
        left: 4px;
    }

    .about-style-seven ul {
        grid-template-columns: 1fr;
    }

    .about-style-seven ul li {
        line-height: 36px;
    }

    .about-style-seven ul li::after {
        top: 9px;
    }

    .compnay-author {
        display: block;
    }

    .about-style-six-info {
        text-align: center;
    }

    .compnay-author img {
        margin: 0;
        padding: 0;
        border: none;
        margin-bottom: 15px;
    }

    .services-style-six-area {
        text-align: center;
    }

    .services-style-six-area .right-info {
        margin-top: 30px;
    }

    .service-six-grid:nth-child(2) {
        margin-top: 0;
    }

    .services-style-seven-area {
        background-image: none !important;
        text-align: center;
    }

    .heading-left .text-right {
        text-align: center !important;
        margin-top: 20px;
    }

    .services-style-seven .item {
        display: block;
        background: #f9f9f9;
    }

    .services-style-seven .item i {
        margin-bottom: 30px;
    }

    .compnay-owner-carousel-carousel .item .company-owner-info {
        position: relative;
        max-width: 100%;
        left: 0;
        bottom: 0;
        border: 1px solid #e7e7e7;
    }

    .compnay-owner-carousel-carousel .owl-stage-outer {
        padding-bottom: 0;
    }

    .heading-left {
        text-align: center;
    }

    .process-style-two {
        text-align: center;
        margin-top: 50px;
    }

    .process-style-two:first-child {
        margin: 0;
    }

    .process-style-two h4 {
        padding: 0 10%;
    }

    .process-style-two .item span {
        position: inherit;
        display: block;
        top: 0;
        bottom: 0;
        left: 0;
        margin: 0;
        margin-bottom: 25px;
    }
}

/* Custom layout. */
@media only screen and (max-width: 500px) {
}

@media (max-width: 1023px) {
    .navbar .attr-nav .call i {
        display: none;
    }
}

.partner-area .partner-carousel .single-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    padding: 15px;
    margin: 0 auto;
}
.partner-area .partner-carousel .single-item a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Gallery Video Play Icon */
.gallery-items .pf-item .item .thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-items .pf-item .item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-items .pf-item .item .thumb .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.gallery-items .pf-item .item .thumb .video-play-icon i {
    color: var(--white);
    font-size: 20px;
    margin-left: 3px;
}

.gallery-items .pf-item .item:hover .thumb .video-play-icon {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-items .pf-item .item:hover .thumb .video-play-icon i {
    color: var(--color-primary);
}

.sidebar-cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--black);
    opacity: 70%;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.sidebar-cta-logo {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-cta-logo img {
    width: 100%;
    max-width: 150px;
    filter: brightness(0) invert(1);
}

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

.sidebar-cta-content h3 {
    font-size: 40px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 10px;
}

.sidebar-cta-content h3 span {
    font-weight: 700;
}

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

.sidebar-cta-contact-list {
    position: relative;
}

.sidebar-cta-contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

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

.sidebar-cta-contact-item .icon-box {
    position: relative;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius);
    margin-right: 15px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    z-index: 1;
}

.sidebar-cta-contact-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    opacity: 16%;
    height: 100%;
    width: 100%;
    border-radius: var(--radius);
    z-index: 0;
}

.sidebar-cta-contact-item img {
    position: relative;
    max-width: 24px;
    z-index: 1;
}

.cta-contact-item-title h3 a {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .cta-contact-item-title h3 a {
    opacity: 1;
}

.corporate-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
/* ==============================================================
     # Shipment Service Area
=================================================================== */
.shipment-service-area .line {
    width: 100%;
    fill: var(--border-default);
    margin-bottom: 60px;
}
.shipment-service-area .shipment-service-card {
    padding: 40px 30px;
    background-color: #ffe9cf;
    border-radius: var(--radius);
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .shipment-service-area .shipment-service-card {
        padding: 35px 20px;
    }
}
@media (max-width: 767px) {
    .shipment-service-area .shipment-service-card {
        padding: 35px 20px;
    }
}
@media (max-width: 576px) {
    .shipment-service-area .shipment-service-card {
        padding: 30px 20px;
    }
}
.shipment-service-area .shipment-service-card svg {
    fill: var(--color-heading);
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .shipment-service-area .shipment-service-card svg {
        margin-bottom: 20px;
    }
}
@media (max-width: 576px) {
    .shipment-service-area .shipment-service-card svg {
        width: 50px;
    }
}
.shipment-service-area .shipment-service-card .shipment-service-content h5 {
    font-family: var(--font-default);
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 25px;
    color: var(--color-heading);
}
@media (max-width: 767px) {
    .shipment-service-area .shipment-service-card .shipment-service-content h5 {
        margin-bottom: 10px;
    }
}
@media (max-width: 576px) {
    .shipment-service-area .shipment-service-card .shipment-service-content h5 {
        font-size: 20px;
    }
}
.shipment-service-area .shipment-service-card .shipment-service-content p {
    color: var(--color-paragraph);
    font-family: var(--font-default);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .shipment-service-area .shipment-service-card .shipment-service-content p {
        font-size: 15px;
    }
}
.shipment-service-area .shipment-service-card .shipment-service-content p span {
    color: var(--color-heading);
}
.shipment-service-area .shipment-service-card:hover svg {
    animation: bounceIn 1.2s linear;
}
.shipment-service-area .shipment-service-card.two {
    background-color: #f0f0f0;
}
.shipment-service-area .shipment-service-card.three {
    background-color: #dde6ff;
}
.shipment-service-area .shipment-service-card.four {
    background-color: #c6edd4;
}

/* Hover Image Effect for Service Cards */
.shipment-service-area .shipment-service-card.has-hover-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}
.shipment-service-area .shipment-service-card.has-hover-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hover-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: var(--radius);
}
.shipment-service-area .shipment-service-card.has-hover-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: var(--radius);
    pointer-events: none;
}
.shipment-service-area .shipment-service-card.has-hover-img:hover::before {
    opacity: 1;
}
.shipment-service-area .shipment-service-card.has-hover-img:hover::after {
    opacity: 1;
}
.shipment-service-area
    .shipment-service-card.has-hover-img:hover
    .shipment-service-content
    h5,
.shipment-service-area
    .shipment-service-card.has-hover-img:hover
    .shipment-service-content
    p,
.shipment-service-area
    .shipment-service-card.has-hover-img:hover
    .shipment-service-content
    p
    span {
    opacity: 1;
    color: var(--white);
}
.shipment-service-area .shipment-service-card.has-hover-img:hover svg {
    fill: #fff;
}
.shipment-service-area
    .shipment-service-card.has-hover-img
    .shipment-service-content
    h5,
.shipment-service-area
    .shipment-service-card.has-hover-img
    .shipment-service-content
    p {
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
    opacity: 0.8;
}
.shipment-service-area
    .shipment-service-card.has-hover-img
    .shipment-service-content
    .detail-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--color-heading);
    font-family: var(--font-default);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius);
    position: relative;
    z-index: 2;
    transition: 0.3s ease-in;
}
.shipment-service-area
    .shipment-service-card.has-hover-img:hover
    .shipment-service-content
    .detail-btn {
    opacity: 1;
    transform: translateX(20px);
    color: var(--white);
}

/* ==============================================================
     # CTA Section - Eğitim Başvuru
=================================================================== */

.cta-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 30px;
}

.cta-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.cta-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(18, 115, 235, 0.1) 0%,
        rgba(24, 235, 235, 0.05) 100%
    );
    z-index: -1;
}

.cta-section .about-img-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
}

.cta-section .about-img-wrap .img-1 {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cta-section .about-img-wrap .img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section .about-img-wrap .img-1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.cta-section .section-title.white h4 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.cta-section .section-title.white h2 {
    font-weight: 700;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section .section-title.white p {
    color: var(--white) !important;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

.cta-section svg.line {
    width: 100%;
}

.cta-section .btn-and-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .nada-btn {
    display: inline-block;
    text-align: center;
    border-radius: var(--radius);
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--white) !important;
    font-size: 14px;
    color: var(--color-heading);
    padding: 12px 35px;
}

.cta-section .nada-btn:hover {
    color: var(--color-primary);
}

.cta-section .nada-btn svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.cta-section .nada-btn.outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta-section .nada-btn.outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.cta-section .nada-btn.outline i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-section .nada-btn.outline:hover i {
    transform: translateX(5px);
}

/* CTA Section Responsive */
@media (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section .about-img-wrap .img-1 img {
        height: 300px;
    }

    .cta-section .section-title.white h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .cta-section .section-title.white h2 {
        font-size: 24px;
    }

    .cta-section .btn-and-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-section .nada-btn {
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }
}

/* Application Requirements Section */
.app-requirements-area {
    padding: 80px 0;
    background: #f8f9fb;
    position: relative;
}

.app-req-heading h4 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.app-req-heading h2 {
    font-weight: 700;
    font-size: 32px;
    color: var(--color-heading);
    line-height: 1.3;
    margin-bottom: 0;
}

.app-req-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-req-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-req-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.app-req-card:hover::before {
    opacity: 1;
}

.app-req-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(162, 10, 9, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    display: none;
}

.app-req-card-icon i {
    font-size: 22px;
    color: var(--white);
}

.app-req-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
}

.app-req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-req-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: none;
    transition: all 0.25s ease;
}

.app-req-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.app-req-list li:hover {
    color: var(--color-heading);
    padding-left: 4px;
}

.app-req-bullet {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: rgba(162, 10, 9, 0.1);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-req-note {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: 12px;
    padding: 22px 28px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-primary);
}

.app-req-note i {
    color: var(--color-primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.app-req-note p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.app-req-note p strong {
    color: var(--color-heading);
}

@media (max-width: 991px) {
    .app-requirements-area {
        padding: 60px 0;
    }

    .app-req-heading h2 {
        font-size: 26px;
    }

    .app-req-card {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .app-requirements-area {
        padding: 50px 0;
    }

    .app-req-heading h2 {
        font-size: 22px;
    }

    .app-req-card {
        padding: 24px 20px;
    }

    .app-req-note {
        flex-direction: column;
        gap: 10px;
    }
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.blog-img img,
.corporate-image img {
    border-radius: var(--radius);
}
.maps-area-slim {
    width: 100%;
    height: 250px;
}
.maps-area-slim iframe {
    border-radius: var(--radius);
    height: 250px;
}

/* ==============================================================
   # Supporters Bar (Below Headline - Absolute)
=================================================================== */

.supporters-bar {
    position: relative;
    z-index: 10;
    padding: 0 0 30px;
}

.supporters-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.supporters-label {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    white-space: nowrap;
    padding-right: 25px;
    border-right: 2px solid rgba(0, 0, 0, 0.08);
}

.supporters-slider {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.supporter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 0 10px;
}

.supporter-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

@media (max-width: 991px) {
    .supporters-bar {
        margin-top: -35px;
    }

    .supporters-inner {
        padding: 15px 20px;
        gap: 15px;
    }

    .supporters-label {
        font-size: 11px;
        padding-right: 15px;
    }
}

@media (max-width: 575px) {
    .supporters-bar {
        margin-top: -25px;
    }

    .supporters-inner {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }

    .supporters-label {
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 10px;
        width: 100%;
        text-align: center;
    }
}

/* ==============================================================
   # Sponsors Section (Scattered Layout)
=================================================================== */

.sponsors-area {
    background: #f8f9fc;
    overflow: hidden;
}

.sponsors-scatter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    position: relative;
}

.sponsor-item {
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
    padding: 15px;
}

.sponsor-item:nth-child(odd) {
    transform: translateY(20px);
}

.sponsor-item:nth-child(3n + 1) {
    transform: translateY(-10px);
}

.sponsor-item:nth-child(4n) {
    transform: translateY(15px) rotate(-1deg);
}

.sponsor-item:nth-child(5n + 2) {
    transform: translateY(-15px) rotate(1deg);
}

.sponsor-item-inner {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sponsor-item-inner:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.sponsor-item-inner img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.4s ease;
}

.sponsor-item-inner:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.sponsor-item-inner a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) {
    .sponsor-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 991px) {
    .sponsor-item {
        flex: 0 0 calc(100% / 3);
        max-width: calc(100% / 3);
        padding: 10px;
    }

    .sponsor-item-inner {
        height: 90px;
        padding: 20px 15px;
    }

    .sponsor-item:nth-child(odd),
    .sponsor-item:nth-child(3n + 1),
    .sponsor-item:nth-child(4n),
    .sponsor-item:nth-child(5n + 2) {
        transform: none;
    }

    .sponsor-item:nth-child(even) {
        transform: translateY(10px);
    }
}

@media (max-width: 575px) {
    .sponsor-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 8px;
    }

    .sponsor-item-inner {
        height: 80px;
        padding: 15px;
        border-radius: 12px;
    }

    .sponsor-item-inner img {
        max-height: 35px;
    }

    .sponsor-item:nth-child(odd) {
        transform: translateY(8px);
    }

    .sponsor-item:nth-child(even) {
        transform: none;
    }
}

/* ==============================================================
   # References Section
=================================================================== */

.references-section {
    padding: 80px 0;
}

.references-header {
    text-align: center;
    margin-bottom: 50px;
}

.references-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.torch-red .references-badge {
    background: var(--color-primary);
}

.references-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-heading);
    margin: 0;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.reference-item img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

@media (max-width: 1199px) {
    .references-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .references-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .references-section {
        padding: 60px 0;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .references-title {
        font-size: 26px;
    }

    .reference-item {
        padding: 20px;
    }
}

.expertise-content {
    position: relative;
    padding: 60px 30px;
}

.expertise-swiper {
    overflow: hidden;
}

.expertise-swiper .swiper-slide {
    height: auto;
}

.expertise-swiper .item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expertise-content .swiper-button-prev,
.expertise-content .swiper-button-next {
    color: #fff !important;
    top: 50%;
    width: 40px;
    height: 40px;
}

.expertise-content .swiper-button-prev {
    left: 0;
}

.expertise-content .swiper-button-next {
    right: 0;
}

.expertise-content .swiper-button-prev::after,
.expertise-content .swiper-button-next::after {
    font-size: 18px;
}

.expertise-content .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}

.expertise-content .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-style-two);
}

/* Expertise Slider Buttons - Sağ Üst */
.expertise-area {
    position: relative;
}

.expertise-button {
    position: absolute;
    top: 40px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.expertise-button .swiper-button-prev,
.expertise-button .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    background: var(--color-style-two);
    border: 2px solid var(--color-style-two);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.expertise-button .swiper-button-prev:hover,
.expertise-button .swiper-button-next:hover {
    background: transparent;
    border-color: #fff;
}

.expertise-button .swiper-button-prev::after,
.expertise-button .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

/* ================================
   Scattered Testimonials Design
================================ */
.testimonials-scattered {
    position: relative;
    padding: 40px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-style-two)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Scattered Offset Classes */
.testimonial-offset-up {
    margin-top: -30px;
}

.testimonial-offset-down {
    margin-top: 30px;
}

.testimonial-offset-middle {
    margin-top: 0;
}

/* Quote Icon */
.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-style-two)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0.9;
}

.quote-icon i {
    color: var(--white);
    font-size: 20px;
}

/* Testimonial Body */
.testimonial-body {
    flex: 1;
    margin-bottom: 25px;
}

.testimonial-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-thumb {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #f8f8f8;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .author-thumb {
    border-color: var(--color-primary);
}

.author-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.author-info span {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .testimonial-offset-up,
    .testimonial-offset-down,
    .testimonial-offset-middle {
        margin-top: 0;
    }

    .testimonial-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-body p {
        font-size: 14px;
    }

    .author-thumb {
        width: 45px;
        height: 45px;
    }
}

/* Site Heading for Testimonials */
.testimonials-area .site-heading {
    margin-bottom: 20px;
}

.testimonials-area .site-heading h4 {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testimonials-area .site-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.testimonials-area .site-heading p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .testimonials-area .site-heading h2 {
        font-size: 28px;
    }
}

/* ================================
   Mobile Swiper - Testimonials, Gallery, Blog
================================ */
.testimonials-mobile-swiper,
.gallery-mobile-swiper,
.blog-mobile-swiper {
    overflow: hidden;
    padding-bottom: 40px;
}

.testimonials-mobile-swiper .swiper-slide,
.gallery-mobile-swiper .swiper-slide,
.blog-mobile-swiper .swiper-slide {
    height: auto;
}

.testimonials-mobile-swiper .testimonial-card {
    height: 100%;
    margin-top: 0;
}

.gallery-mobile-swiper .pf-item .item {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-mobile-swiper .pf-item .item .thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-mobile-swiper .pf-item .item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-mobile-swiper .single-item .item {
    margin-bottom: 0;
}

.testimonials-mobile-pagination .swiper-pagination-bullet,
.gallery-mobile-pagination .swiper-pagination-bullet,
.blog-mobile-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 8px;
    height: 8px;
}

.testimonials-mobile-pagination .swiper-pagination-bullet-active,
.gallery-mobile-pagination .swiper-pagination-bullet-active,
.blog-mobile-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* ================================
   Modern Education Detail Page
================================ */

/* Education Hero Section */
.education-hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.education-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.education-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 15px 0;
    line-height: 1.3;
}

.education-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.education-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 15px;
}

.stat-item i {
    color: var(--color-primary);
    font-size: 18px;
}

.education-hero-image {
    position: relative;
}

.education-hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Education Content Section */
.education-content-section {
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

/* Custom Tabs */
.custom-tabs {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 10px;
    border: none;
}

.custom-tabs .nav-item {
    flex: 1;
}

.custom-tabs .nav-link {
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.custom-tabs .nav-link:hover {
    background: #f8f9fa;
    color: var(--color-primary);
}

.custom-tabs .nav-link.active {
    background: var(--color-primary);
    color: var(--white);
}

.custom-tabs .nav-link i {
    font-size: 16px;
}

/* Tab Content */
.education-tab-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-subtitle i {
    font-size: 22px;
}

/* Content Text */
.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.content-text h2,
.content-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.content-text ul,
.content-text ol {
    padding-left: 25px;
}

.content-text li {
    margin-bottom: 10px;
}

/* Education Features */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-item i {
    color: #28a745;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Target Audience */
.audience-content {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
}

/* Requirements List */
.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.requirements-list i {
    color: var(--color-primary);
    font-size: 14px;
}

/* Curriculum Accordion */
.curriculum-accordion .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.curriculum-accordion .accordion-button {
    background: #fff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.curriculum-accordion .accordion-button:not(.collapsed) {
    background: var(--color-primary);
    color: var(--white);
    box-shadow: none;
}

.curriculum-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.module-number {
    width: 35px;
    height: 35px;
    background: var(--color-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.curriculum-accordion .accordion-button:not(.collapsed) .module-number {
    background: #fff;
    color: var(--color-primary);
}

.module-title {
    flex: 1;
}

.curriculum-accordion .accordion-body {
    padding: 25px;
    background: #f8f9fa;
}

.module-topics {
    list-style: none;
    padding: 0;
}

.module-topics li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
}

.module-topics li:last-child {
    border-bottom: none;
}

.module-topics i {
    color: var(--color-primary);
    font-size: 14px;
}

/* Instructor Card */
.instructor-card {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-style-two) 100%
    );
    padding: 40px;
    border-radius: 15px;
    color: var(--white);
}

.instructor-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.instructor-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.instructor-avatar i {
    font-size: 40px;
    color: var(--white);
}

.instructor-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.instructor-bio {
    line-height: 1.8;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
}

/* Education Sidebar */
.education-sidebar {
    top: 100px;
}

.sidebar-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

/* Price Card */
.price-card {
    border-top: 4px solid var(--color-primary);
}

.price-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

.price-features {
    padding: 25px 0;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #f8f9fa;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--color-primary);
    font-size: 16px;
    width: 20px;
}

.contact-info {
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.contact-info a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-primary) !important;
}

/* Info Card */
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
}

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

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 2px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    background: var(--color-primary);
    color: var(--white);
    transform: translateX(5px);
}

.category-list li.active a {
    background: var(--color-primary);
    color: var(--white);
    font-weight: 600;
}

.category-list li a i {
    font-size: 12px;
    opacity: 0.6;
}

/* Related Educations Section */
.related-educations-section {
    background: #f8f9fa;
}

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

.section-title h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Education Card */
.education-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.education-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.education-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.education-card:hover .education-card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.education-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.card-meta span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-meta i {
    color: var(--color-primary);
    font-size: 14px;
}

.education-card-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.education-card-content h5 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.education-card-content h5 a:hover {
    color: var(--color-primary);
}

.education-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.card-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.card-footer-info .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 12px;
    color: var(--color-style-two);
}

/* Responsive Design */
@media (max-width: 991px) {
    .education-hero-section {
        padding: 40px 0;
    }

    .education-title {
        font-size: 32px;
    }

    .education-sidebar {
        position: static !important;
        margin-top: 40px;
    }

    .custom-tabs .nav-link {
        font-size: 13px;
        padding: 10px 12px;
    }

    .custom-tabs .nav-link i {
        display: none;
    }

    .education-tab-content {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .education-title {
        font-size: 26px;
    }

    .education-subtitle {
        font-size: 16px;
    }

    .education-meta span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .education-stats {
        gap: 15px;
    }

    .stat-item {
        font-size: 13px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .price-amount {
        font-size: 32px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .custom-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .custom-tabs .nav-item {
        flex: none;
        min-width: 120px;
    }
}

/* ================================
   Free Education Enhancements
================================ */

/* Free Education Card */
.free-education {
    border-top: 4px solid #28a745 !important;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
}

.free-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.free-badge i {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.free-label {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-description {
    font-size: 14px;
    color: #28a745;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.features-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #28a745;
}

/* Pulse Button Animation */
.pulse-button {
    animation: pulse-animation 2s infinite;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Limited Seats Alert */
.limited-seats-alert {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #856404;
    font-weight: 500;
}

.limited-seats-alert i {
    color: #ffc107;
    font-size: 16px;
}

/* Education Highlight Banner */
.education-highlight-banner {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #28a745;
}

.education-highlight-banner h4 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
}

.education-highlight-banner p {
    color: #2e7d32;
    font-size: 14px;
}

/* Quick Stats */
.education-quick-stats {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
}

.stat-box {
    background: #fff;
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.stat-box i {
    font-size: 20px;
    color: var(--white);
}

.stat-box h5 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0 5px 0;
}

.stat-box span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* WhatsApp Link Enhancement */
.contact-info a.text-success {
    background: #25d366;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info a.text-success:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* Enhanced Education Card for Related Section */
.related-educations-section .education-card {
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.related-educations-section .education-card:hover {
    border-color: #28a745;
}

.related-educations-section .card-footer-info .price {
    background: #e8f5e9;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .free-label {
        font-size: 18px;
    }

    .free-badge i {
        font-size: 24px;
    }

    .education-highlight-banner h4 {
        font-size: 16px;
    }

    .stat-box {
        padding: 20px 10px;
    }

    .stat-box i {
        font-size: 24px;
    }

    .stat-box h5 {
        font-size: 20px;
    }
}

/* ================================
   Modern Education Service Cards
================================ */

.education-service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.education-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.education-service-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Service Card Image */
.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.education-service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

/* Service Card Badges */
.service-card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-card-badges .badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.badge-level {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
}

.badge-level.badge-beginner {
    background: rgba(40, 167, 69, 0.95);
    color: var(--white);
}

.badge-level.badge-intermediate {
    background: rgba(255, 193, 7, 0.95);
    color: #1a1a1a;
}

.badge-level.badge-advanced {
    background: rgba(220, 53, 69, 0.95);
    color: var(--white);
}

.badge-format {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
}

.badge-format i {
    margin-right: 4px;
}

/* Service Card Content */
.service-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.education-service-card:hover .service-card-content h5 {
    color: var(--color-primary);
}

.service-card-content .subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Service Meta */
.service-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: auto 0 15px 0;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.meta-item {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--color-primary);
    font-size: 14px;
}

/* Detail Button */
.service-card-content .detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.education-service-card:hover .detail-btn {
    gap: 12px;
}

.detail-btn i {
    transition: transform 0.3s ease;
}

.education-service-card:hover .detail-btn i {
    transform: translateX(5px);
}

/* ================================
   Apply Card (Sidebar)
================================ */

.apply-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    overflow: hidden;
}

.apply-header {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-style-two) 100%
    );
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.apply-header h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--white);
}

.apply-header p {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
}

.apply-features ul {
    list-style: none;
    padding: 25px;
    margin: 0;
}

.apply-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.apply-features li:last-child {
    border-bottom: none;
}

.apply-features i {
    color: var(--color-primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.apply-card .btn {
    margin: 0 25px 25px 25px;
    width: calc(100% - 50px);
}

.contact-info {
    padding: 20px 25px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.whatsapp-link {
    background: #25d366;
    color: #fff !important;
    border-color: #25d366;
}

.whatsapp-link:hover {
    background: #128c7e;
    border-color: #128c7e;
    color: #fff !important;
}

/* Related Educations Updates */
.related-educations-section .card-footer-info {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Responsive */
@media (max-width: 767px) {
    .service-card-image {
        height: 180px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-content h5 {
        font-size: 18px;
    }

    .apply-header {
        padding: 20px;
    }

    .apply-header h4 {
        font-size: 20px;
    }

    .apply-features ul {
        padding: 20px;
    }

    .apply-card .btn {
        margin: 0 20px 20px 20px;
        width: calc(100% - 40px);
    }

    .contact-info {
        padding: 15px 20px;
    }
}

/* ================================
   Service Card Badges - Balanced
================================ */

.shipment-service-card {
    position: relative;
}

.service-badges {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid;
}

.service-badge i {
    font-size: 11px;
}

/* Badge Colors - Subtle */
.service-badge.badge-beginner {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #a5d6a7;
}

.service-badge.badge-intermediate {
    background: #fff3e0;
    color: #e65100;
    border-color: #ffcc80;
}

.service-badge.badge-advanced {
    background: #fce4ec;
    color: #c2185b;
    border-color: #f48fb1;
}

.service-badge.badge-format {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #90caf9;
}

.service-badge.badge-duration {
    background: #f3e5f5;
    color: #6a1b9a;
    border-color: #ce93d8;
}

.shipment-service-card:hover .service-badge {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 767px) {
    .service-badges {
        gap: 6px;
        margin-top: 12px;
    }

    .service-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* ================================
   Service Detail Page - Unique Design
================================ */

/* Hero Section */
.service-detail-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
    padding-right: 30px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 25px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
    color: #666;
    font-size: 15px;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-meta i {
    color: var(--color-primary);
    font-size: 16px;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

/* Content Section */
.service-detail-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 60px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.block-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 35px;
    padding-bottom: 18px;
    border-bottom: 4px solid var(--color-primary);
    display: inline-block;
    letter-spacing: -0.5px;
}

.content-text {
    font-size: 17px;
    line-height: 1.9;
    color: #3a3a3a;
    font-weight: 400;
}

.content-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.content-text h3 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2a2a2a;
}

.content-text h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

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

.content-text ul,
.content-text ol {
    padding-left: 25px;
}

.content-text li {
    margin-bottom: 10px;
}

/* Features Block */
.features-block .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}

.features-block .feature-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.features-block .feature-item i {
    color: var(--color-primary);
    font-size: 20px;
    margin-top: 2px;
}

.features-block .feature-item span {
    flex: 1;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Curriculum Block */
.curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.curriculum-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.curriculum-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.curriculum-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-style-two)
    );
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.curriculum-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.curriculum-content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.curriculum-content li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.curriculum-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

/* Target Content */
.target-content {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 5px solid var(--color-primary);
}

/* Requirements List */
.requirements-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.requirements-list li {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.requirements-list li:hover {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.requirements-list i {
    color: var(--color-primary);
    font-size: 14px;
}

/* Instructor Block */
.instructor-info {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #f0f0f0;
}

.instructor-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-style-two)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instructor-avatar i {
    font-size: 50px;
    color: var(--white);
}

.instructor-details h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.instructor-bio {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* Gallery */
.gallery-block {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background: #e9ecef;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 36px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .service-detail-hero {
        padding: 60px 0;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .block-title {
        font-size: 30px;
    }

    .curriculum-item {
        flex-direction: column;
    }

    .instructor-info {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .instructor-avatar {
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-block {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .service-detail-hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 12px;
    }

    .service-detail-content {
        padding: 50px 0;
    }

    .content-block {
        margin-bottom: 45px;
    }

    .block-title {
        font-size: 26px;
    }

    .content-text {
        font-size: 16px;
    }

    .content-text h2 {
        font-size: 26px;
    }

    .content-text h3 {
        font-size: 22px;
    }

    .requirements-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-block {
        padding: 25px;
    }
}

/* ========================
   Mobile Menu - Megamenu Services
   ======================== */
.collapse-mobile .megamenu-services,
.collapse-mobile
    nav.validnavs
    .dropdown.megamenu-fw
    .dropdown-menu.megamenu-services,
nav.validnavs
    .collapse-mobile
    .dropdown.megamenu-fw
    .dropdown-menu.megamenu-services {
    min-width: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.collapse-mobile .megamenu-services-wrapper {
    flex-direction: column;
    min-height: auto;
}

.collapse-mobile .megamenu-services-preview {
    display: none !important;
}

.collapse-mobile .megamenu-services-list {
    flex: 1;
    padding: 0;
    max-height: none;
    overflow: visible;
    gap: 2px;
}

.collapse-mobile .megamenu-service-item {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
    color: var(--color-heading);
}

.collapse-mobile .megamenu-service-item:hover,
.collapse-mobile .megamenu-service-item.active {
    background: rgba(45, 48, 145, 0.08);
    color: var(--color-primary);
}

.collapse-mobile .megamenu-service-item:hover i,
.collapse-mobile .megamenu-service-item.active i {
    color: var(--color-primary);
}

.collapse-mobile .megamenu-content {
    width: 100% !important;
    min-width: unset !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

.collapse-mobile .megamenu-content > li {
    padding: 0;
}

.collapse-mobile .dropdown.megamenu-fw .dropdown-menu {
    width: 100% !important;
    min-width: unset !important;
    position: static !important;
    transform: none !important;
    left: 0 !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* ========================
   Header Flex Layout & CTA Button
   ======================== */
nav.navbar.validnavs > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav.navbar.validnavs .navbar-collapse.collapse {
    flex: 1;
}

nav.navbar.validnavs .attr-right {
    float: none;
    display: flex;
    align-items: center;
    margin-left: 0;
}

nav.navbar.validnavs .attr-nav ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .attr-right .attr-nav li.nav-cta-btn {
    display: flex;
    align-items: center;
}

.header-cta-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: var(--color-primary) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta-btn:hover {
    background: var(--color-style-two, #1a1f6e) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-cta-btn i {
    font-size: 15px;
}

.navbar.no-background .header-cta-btn {
    background: var(--color-primary) !important;
    color: #fff !important;
}

.navbar.no-background .header-cta-btn:hover {
    background: var(--color-style-two, #1a1f6e) !important;
    color: #fff !important;
}

@media (max-width: 1023px) {
    nav.navbar.validnavs .attr-right {
        float: right;
        margin-left: auto;
    }

    nav.navbar.validnavs .attr-nav ul {
        display: block;
    }

    .navbar .attr-right .attr-nav li.nav-cta-btn {
        display: none;
    }
}

/* ========================
   Mobile Menu Footer
   ======================== */
.mobile-menu-footer {
    display: none;
}

.collapse-mobile .mobile-menu-footer {
    display: block;
    padding: 24px 0 10px;
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.collapse-mobile .mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-style-two, #667eea)
    );
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.collapse-mobile .mobile-menu-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.collapse-mobile .mobile-menu-cta i {
    font-size: 16px;
}

.collapse-mobile .mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.collapse-mobile .mobile-menu-contact a,
.collapse-mobile .mobile-menu-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-heading);
    font-size: 13px;
    text-decoration: none;
    line-height: 1.4;
    border: none !important;
    padding: 0 !important;
}

.collapse-mobile .mobile-menu-contact a:hover {
    color: var(--color-primary);
}

.collapse-mobile .mobile-menu-contact i {
    width: 18px;
    text-align: center;
    color: var(--color-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.collapse-mobile .mobile-menu-address {
    font-size: 12px !important;
    color: #888 !important;
}

.collapse-mobile .mobile-menu-social {
    display: flex;
    gap: 10px;
}

.collapse-mobile .mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    color: var(--color-heading) !important;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none !important;
    padding: 0 !important;
}

.collapse-mobile .mobile-menu-social a:hover {
    background: var(--color-primary);
    color: #fff !important;
}

/* ========== Test Card Styles ========== */
.test-card {
    padding: 40px 30px;
    background-color: #f0f0f0;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.test-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.test-card-content h5 {
    font-family: var(--font-default);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-heading);
    transition: color 0.4s ease;
}

.test-card-content p {
    color: var(--color-paragraph);
    font-family: var(--font-default);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.test-card:hover .test-card-content p {
    color: rgba(255, 255, 255, 0.85);
}

.test-badges {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.test-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.test-badge i {
    font-size: 11px;
}

.test-badge.badge-duration {
    background: #f3e5f5;
    color: #6a1b9a;
    border-color: #ce93d8;
}

.test-badge.badge-questions {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #90caf9;
}

.test-badge.badge-passing {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #a5d6a7;
}

.test-badge.badge-points {
    background: #fff3e0;
    color: #e65100;
    border-color: #ffcc80;
}

.test-card .detail-btn {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    color: var(--black);
    transition: all 0.4s ease;
}

.test-card .detail-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.test-card:hover .detail-btn i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .test-card {
        padding: 35px 20px;
    }
}

@media (max-width: 767px) {
    .test-card {
        padding: 30px 20px;
    }

    .test-card-content h5 {
        font-size: 20px;
    }

    .test-badges {
        gap: 6px;
        margin-top: 12px;
    }

    .test-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* ========== Test Detail Page ========== */
.test-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.test-detail-title {
    font-weight: 700;
    font-size: 28px;
    color: var(--color-heading);
    margin-bottom: 20px;
}

.test-detail-desc {
    color: var(--color-paragraph);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.test-detail-instructions {
    background: #f0f2ff;
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.test-detail-instructions h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.test-detail-instructions h5 i {
    margin-right: 6px;
}

.test-detail-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.test-detail-stats .stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 16px 20px;
    flex: 1;
    min-width: 140px;
}

.test-detail-stats .stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--white);
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.test-detail-stats .stat-info {
    display: flex;
    flex-direction: column;
}

.test-detail-stats .stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1.2;
}

.test-detail-stats .stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Test Start Form Card */
.test-start-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--color-primary);
    position: sticky;
    top: 100px;
}

.test-start-card h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.test-start-card h4 i {
    color: var(--color-primary);
    margin-right: 8px;
}

.test-start-desc {
    color: var(--color-paragraph);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.test-start-card label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-heading);
    margin-bottom: 6px;
    display: block;
}

.test-start-card .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.test-start-card .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 48, 145, 0.1);
}

.btn-test-start {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--color-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-test-start:hover {
    background: #1a1f6e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 48, 145, 0.3);
}

.btn-test-start i {
    transition: transform 0.3s ease;
}

.btn-test-start:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .test-detail-card {
        padding: 30px 20px;
    }

    .test-start-card {
        position: static;
        padding: 30px 20px;
    }

    .test-detail-stats .stat-box {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .test-detail-title {
        font-size: 22px;
    }

    .test-detail-stats .stat-box {
        min-width: 100%;
    }
}

/* Test Consent Checkboxes */
.test-consents {
    background: #f8f9fb;
    border-radius: 10px;
    padding: 16px 20px;
}

.test-consents .form-check {
    padding-left: 28px;
}

.test-consents .form-check-label {
    font-size: 13px;
    color: #555;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.5;
}

.test-consents .form-check-input {
    margin-top: 4px;
    cursor: pointer;
}

.test-consents .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Test Success Message */
.test-success-message {
    text-align: center;
    padding: 20px 0;
}

.test-success-message .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-success-message .success-icon i {
    font-size: 36px;
    color: #2e7d32;
}

.test-success-message h4 {
    font-weight: 700;
    font-size: 20px;
    color: #2e7d32;
    margin-bottom: 12px;
}

.test-success-message p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* ============================================================
   # Program Benefits Section
=================================================================== */

.program-benefits-area {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.benefits-header .site-heading {
    margin-bottom: 50px;
}

.benefits-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-heading);
    margin: 15px 0;
}

.benefits-header h4 {
    font-size: 16px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.benefits-header p {
    font-size: 16px;
    color: var(--color-paragraph);
    line-height: 1.8;
    max-width: 100%;
    margin: 20px 0;
}

.benefits-content {
    margin-top: 50px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow-tertiary);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.benefit-number-badge {
    position: absolute;
    bottom: 0px;
    right: 5px;
    font-size: 110px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.15;
    line-height: 1;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(238, 40, 82, 0.07);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: var(--color-primary);
}

.benefit-content {
    text-align: left;
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.benefit-content p {
    font-size: 15px;
    color: var(--color-paragraph);
    line-height: 1.6;
    margin: 0;
}

.benefits-cta {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-default);
}

.benefits-cta .lead {
    font-size: 18px;
    color: var(--color-heading);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-benefits-area {
        padding: 60px 0;
    }

    .benefits-header h2 {
        font-size: 32px;
    }

    .benefits-header h4 {
        font-size: 14px;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-number-badge {
        font-size: 50px;
        bottom: 12px;
        right: 12px;
    }

    .benefit-content h3 {
        font-size: 16px;
    }

    .benefit-content p {
        font-size: 14px;
    }

    .benefits-cta .lead {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .program-benefits-area {
        padding: 40px 0;
    }

    .benefits-header h2 {
        font-size: 24px;
    }

    .benefits-header p {
        font-size: 14px;
    }

    .benefit-item {
        padding: 18px;
        margin-bottom: 15px;
    }

    .benefit-number-badge {
        font-size: 40px;
        bottom: 10px;
        right: 10px;
    }

    .benefit-content h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .benefit-content p {
        font-size: 13px;
    }

    .benefits-cta .lead {
        font-size: 14px;
    }
}

/* ============================================================
   # Why Truck Driver Section
=================================================================== */

.why-truck-driver-area {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-header {
    margin-bottom: 60px;
}

.why-header .site-heading h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 15px 0 10px;
    line-height: 1.5;
}

.why-header .site-heading h4 {
    font-size: 16px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.why-header .site-heading p {
    font-size: 16px;
    color: var(--color-paragraph);
    line-height: 1.8;
    max-width: 600px;
    margin: 20px auto 0 !important;
}

.highlight-title {
    color: var(--color-primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.sub-heading {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 10px 0 20px !important;
}

.why-header-highlight {
    padding: 15px 20px;
    border-radius: 8px;
    border-left: none;
    margin-top: 15px;
}

.highlight-main {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1.6;
    margin: 0;
}

.highlight-bold {
    color: var(--color-primary);
    font-weight: 700;
}

.highlight-sub {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 8px 0 0;
}

.why-content {
    margin-top: 50px;
}

.why-item {
    background: transparent;
    padding: 20px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.why-item:hover {
    background: #f9f9f9;
    transform: translateX(3px);
}

.why-item.is-odd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.why-item.is-even {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.why-icon {
    display: none;
}

.why-icon i {
    display: none;
}

.why-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 12px;
    line-height: 1.3;
}

.sub-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-items li {
    font-size: 14px;
    color: var(--color-paragraph);
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.sub-items li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.sub-items li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-truck-driver-area {
        padding: 60px 0;
    }

    .why-header .site-heading h2 {
        font-size: 32px;
    }

    .why-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .why-body h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .sub-items li {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .why-truck-driver-area {
        padding: 40px 0;
    }

    .why-header .site-heading h2 {
        font-size: 24px;
    }

    .why-item {
        padding: 20px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
    }

    .why-icon i {
        font-size: 22px;
    }

    .why-body h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .sub-items li {
        font-size: 13px;
        margin-bottom: 8px;
        padding-left: 18px;
    }
}

/* ==============================================================
     # Program Mission CTA Section
=================================================================== */

.program-mission-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mission-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 20px;
    line-height: 1.4;
}

.mission-description {
    font-size: 16px;
    color: var(--color-paragraph);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.mission-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(162, 10, 9, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 32px;
    color: var(--color-primary);
}

.mission-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 15px;
    color: var(--color-paragraph);
    line-height: 1.6;
    margin: 0;
}

.mission-cta {
    padding-top: 40px;
}

.mission-btn {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
}

.mission-btn:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .program-mission-area {
        padding: 60px 0;
    }

    .mission-header h2 {
        font-size: 32px;
    }

    .mission-description {
        font-size: 14px;
    }

    .mission-card {
        padding: 20px;
    }

    .mission-card h4 {
        font-size: 18px;
    }

    .mission-card p {
        font-size: 14px;
    }

    .mission-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

.references-slider {
    overflow: hidden;
    width: 100%;
}

.references-slider .swiper-wrapper {
    display: flex;
}

.references-slider .swiper-slide {
    height: auto;
}