/************ TABLE OF CONTENTS ***************

	01. Template Default CSS
	02. Background CSS
	03. Buttons CSS

**********************************************/


/**----------------------------------------
START: Template Default CSS
----------------------------------------*/

:root {
    --cp-ff-body: 'Euclid Circular B', sans-serif;
    --cp-ff-heading: 'Instrument Sans', serif;
    --cp-ff-p: 'Euclid Circular B', sans-serif;
    --cp-fw-normal: normal;
    --cp-fw-thin: 100;
    --cp-fw-elight: 200;
    --cp-fw-light: 300;
    --cp-fw-regular: 400;
    --cp-fw-medium: 500;
    --cp-fw-sbold: 600;
    --cp-fw-bold: 700;
    --cp-fw-ebold: 800;
    --cp-fw-black: 900;
    --cp-fs-body: 18px;
    --cp-fs-p: 18px;
    --cp-fs-h1: 120px;
    --cp-fs-h2: 64px;
    --cp-fs-h3: 24px;
    --cp-fs-h4: 20px;
    --cp-fs-h5: 18px;
    --cp-fs-h6: 14px;
    --cp-color-common-white: #ffffff;
    --cp-color-common-black: #000000;
    --cp-color-heading-primary: #002E4F;
    --cp-color-text-body: #002E4F;
    --cp-color-text-black: #0E0E0E;
    --cp-color-theme-primary: #DFCA5F;
    --cp-color-bg-1: #002E4F;
    --cp-color-bg-2: #06192F;
    --cp-color-grey-1: #EAEAEA;
    --cp-color-border-1: rgba(255, 255, 255, 0.2);
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-MediumItalic.woff2") format("woff2"), url("../fonts/EuclidCircularB-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-Light.woff2") format("woff2"), url("../fonts/EuclidCircularB-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-LightItalic.woff2") format("woff2"), url("../fonts/EuclidCircularB-LightItalic.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-SemiBoldItalic.woff2") format("woff2"), url("../fonts/EuclidCircularB-SemiBoldItalic.woff") format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-Medium.woff2") format("woff2"), url("../fonts/EuclidCircularB-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-Regular.woff2") format("woff2"), url("../fonts/EuclidCircularB-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-SemiBold.woff2") format("woff2"), url("../fonts/EuclidCircularB-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-BoldItalic.woff2") format("woff2"), url("../fonts/EuclidCircularB-BoldItalic.woff") format("woff");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-Bold.woff2") format("woff2"), url("../fonts/EuclidCircularB-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular B";
    src: url("../fonts/EuclidCircularB-Italic.woff2") format("woff2"), url("../fonts/EuclidCircularB-Italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "NewYork";
    src: url("../fonts/NewYork-regular.ttf");
}

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


/**
	Typography CSS
*/

body {
    background-color: var(--cp-color-common-white);
    font-family: "Euclid Circular B", sans-serif;
    font-size: 18px;
    line-height: 1.625;
    font-weight: 400;
    color: var(--cp-color-text-body);
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a,
a:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--cp-ff-heading);
    color: var(--cp-color-heading-primary);
    margin-top: 0px;
    font-weight: 600;
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

h1 {
    font-size: var(--cp-fs-h1);
}

h2 {
    font-size: var(--cp-fs-h2);
}

h3 {
    font-size: var(--cp-fs-h3);
}

h4 {
    font-size: var(--cp-fs-h4);
}

h5 {
    font-size: var(--cp-fs-h5);
}

h6 {
    font-size: var(--cp-fs-h6);
}

p {
    font-family: var(--cp-ff-p);
    font-size: 18px;
    font-weight: 400;
    color: var(--cp-color-text-body);
    margin-bottom: 15px;
    line-height: 28px;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

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

a:hover {
    color: var(--cp-color-theme-primary);
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
    border: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input {
    outline: none;
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

*::-moz-selection {
    background: var(--cp-color-common-black);
    color: var(--cp-color-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--cp-color-common-black);
    color: var(--cp-color-common-white);
    text-shadow: none;
}

::selection {
    background: var(--cp-color-common-black);
    color: var(--cp-color-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--cp-color-common-black);
    font-size: var(--cp-fs-body);
    opacity: 1;
}

*::placeholder {
    color: var(--cp-color-common-black);
    font-size: var(--cp-fs-body);
    opacity: 1;
}


/**
    Common Classes CSS
*/

.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

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

.z-index-11 {
    z-index: 11;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

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

.b-radius {
    border-radius: 6px;
}

.overflow-x {
    overflow-x: clip;
}

.bg-grey {
    background-color: var(--cp-color-grey-1);
}

.bg-dark-1 {
    background-color: var(--cp-color-bg-1);
}

.bg-dark-2 {
    background-color: var(--cp-color-bg-2);
}

.bd-bottom {
    border-bottom: 1px solid var(--cp-color-border-1);
}

.bg-color-top {
    background-color: #171719;
    width: 100%;
    height: 400px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.bg-color-bottom {
    background-color: #171719;
    width: 100%;
    height: 400px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
}

.bg-pattern {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.overflow-h {
    overflow: hidden;
}

.section-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 992px) {
    .section-heading {
        margin-bottom: 40px;
    }
}

.section-heading .sub-heading {
    font-family: var(--cp-ff-heading);
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    line-height: 1;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .section-heading .sub-heading {
        font-size: 14px;
    }
}

.section-heading .sub-heading img {
    margin-top: -4px;
    margin-right: 10px;
}

.section-heading .section-title {
    font-size: 64px;
    line-height: 1.2;
    font-weight: 600;
    display: block;
    margin-bottom: 0;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    letter-spacing: 0;
}

@media (max-width: 1199px) {
    .section-heading .section-title {
        font-size: 42px;
    }
}

@media only screen and (max-width: 992px) {
    .section-heading .section-title {
        font-size: 42px;
        max-width: 100%;
    }
    .section-heading .section-title br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading .section-title {
        font-size: 36px;
    }
    .section-heading .section-title br {
        display: none;
    }
}

.section-heading .section-title span {
    font-family: "NewYork", sans-serif;
    font-size: 64px;
    font-weight: 200;
    display: inline !important;
    line-height: 1.2;
}

@media (max-width: 1199px) {
    .section-heading .section-title span {
        font-size: 42px;
    }
    .section-heading .section-title span br {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .section-heading .section-title span {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading .section-title span {
        font-size: 32px;
    }
}

.section-heading.white-content .sub-heading {
    color: var(--cp-color-theme-primary);
}

.section-heading.white-content p,
.section-heading.white-content .section-title {
    color: var(--cp-color-common-white);
}

.section-heading.heading-2 .section-title {
    text-transform: inherit;
}

.heading-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 25px;
    margin-bottom: 70px;
}

@media only screen and (max-width: 992px) {
    .heading-space {
        margin-bottom: 50px;
    }
}

.t-up {
    text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
    color: var(--cp-color-common-white);
}

.img-reveal {
    position: relative;
    overflow: hidden;
    visibility: hidden;
    z-index: 1;
}

.img-reveal .img-overlay {
    background-color: var(--cp-color-common-white);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-reveal img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.anim-text {
    overflow: hidden;
}

.running-text {
    background-color: var(--cp-color-theme-primary);
    background-repeat: repeat;
    background-size: 20px;
    padding: 14px 0;
    overflow: hidden;
}

.running-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.running-text ul li {
    font-family: var(--cp-ff-heading);
    display: inline-block;
    white-space: nowrap;
    font-size: 36px;
    color: var(--cp-color-text-black);
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}

.running-text ul li:not(:last-of-type) {
    margin-right: 80px;
    padding-right: 40px;
}

.running-text ul li span {
    font-family: "NewYork", sans-serif;
    font-weight: 400;
}

.running-text ul li:before {
    font-family: "Font Awesome 6 Pro";
    font-size: 30px;
    font-weight: 700;
    content: "\f890";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.sponsor-carousel {
    padding: 70px 0;
    border-bottom: 1px solid #B3C0CA;
}

.sponsor-2 .sponsor-carousel {
    border: none;
    border-top: 1px solid rgba(0, 46, 79, 0.1);
}


/* Site Preloader */

.container-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 900;
}

.container-preloader .preloader-anim {
    position: absolute;
    z-index: 100;
}

.container-preloader .preloader-anim .spinner {
    animation: t-spinner 1s infinite linear;
    border-radius: 50%;
    height: 9em;
    width: 9em;
    border: 10px solid var(--primary);
    border-top-color: var(--white);
    margin: 0 auto 3.5em auto;
}

@media only screen and (max-width: 767px) {
    .container-preloader .preloader-anim .spinner {
        margin: 0 auto 0.2em auto;
    }
}

.container-preloader .preloader-anim .txt-loading {
    font: bold 5em "Montserrat", sans-serif;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.container-preloader .preloader-anim .txt-loading .characters {
    color: var(--cp-color-common-white);
    position: relative;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .container-preloader .preloader-anim .txt-loading .characters {
        font-size: 50px;
    }
}

.container-preloader .preloader-anim .txt-loading .characters:before {
    color: var(--cp-color-theme-primary);
    content: attr(data-text);
    animation: t-characters 4s infinite;
    left: 0;
    top: 0;
    opacity: 0;
    position: absolute;
    transform: rotateY(-90deg);
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(2):before {
    animation-delay: 0.2s;
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(3):before {
    animation-delay: 0.4s;
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(4):before {
    animation-delay: 0.6s;
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(5):before {
    animation-delay: 0.8s;
}

.container-preloader .preloader-anim .txt-loading .characters:nth-child(6):before {
    animation-delay: 1s;
}

.container-preloader .preloader-area {
    background-color: var(--cp-color-bg-2);
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.container-preloader .preloader-area.area-left {
    left: 0;
}

.container-preloader .preloader-area.area-right {
    right: 0;
}

.loaded .preloader-anim {
    opacity: 0;
    transition: 0.3s ease-out;
}

.loaded .preloader-area.area-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .preloader-area.area-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loading {
    left: 50%;
    top: 50%;
    font-size: 100px;
    font-family: var(--cp-ff-heading);
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -60%);
}

@media only screen and (max-width: 767px) {
    .loading {
        font-size: 50px;
    }
}

.loading:before {
    color: #333;
    content: attr(data-loading-text);
}

.loading:after {
    top: 0;
    left: 0;
    width: 0;
    opacity: 1;
    color: var(--cp-color-common-white);
    overflow: hidden;
    position: absolute;
    content: attr(data-loading-text);
    animation: loading 6s infinite;
}

@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}


/*  Custom Cursor */

@media (min-width: 992px) {
    .mt-cursor {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: fixed;
        left: 10px;
        top: 10px;
        user-select: none;
        pointer-events: none;
        visibility: hidden;
        z-index: 10000;
        -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .mt-cursor:before {
        background: var(--cp-color-theme-primary);
        opacity: 1;
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s ease;
    }
    .mt-cursor.cursor-grow:before {
        opacity: 0.7;
        transform: scale(1.5);
        transition: all 0.3s ease;
    }
    .mt-cursor.hide {
        opacity: 0;
        transition: opacity 0.3s ease;
        transition-delay: 0.4s;
    }
    .mt-cursor.hide .inner {
        transform: scale(0.1);
        transition: transform 0.3s ease;
    }
}

.sticky-widget {
    position: -webkit-sticky;
    position: sticky;
    top: 170px;
}

@media only screen and (max-width: 767px) {
    br {
        display: none;
    }
}


/*-- Margin Top --*/

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}


/*-- Margin Bottom --*/

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}


/*-- Margin Left --*/

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}


/*-- Margin Right --*/

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}


/*-- Padding Top --*/

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

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

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}


/*-- Padding Bottom --*/

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

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

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}


/*-- Padding Left --*/

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-155 {
    padding-left: 155px;
}

.pl-160 {
    padding-left: 160px;
}

.pl-165 {
    padding-left: 165px;
}

.pl-170 {
    padding-left: 170px;
}

.pl-175 {
    padding-left: 175px;
}

.pl-180 {
    padding-left: 180px;
}

.pl-185 {
    padding-left: 185px;
}

.pl-190 {
    padding-left: 190px;
}

.pl-195 {
    padding-left: 195px;
}

.pl-200 {
    padding-left: 200px;
}


/*-- Padding Right --*/

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-115 {
    padding-right: 115px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-155 {
    padding-right: 155px;
}

.pr-160 {
    padding-right: 160px;
}

.pr-165 {
    padding-right: 165px;
}

.pr-170 {
    padding-right: 170px;
}

.pr-175 {
    padding-right: 175px;
}

.pr-180 {
    padding-right: 180px;
}

.pr-185 {
    padding-right: 185px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-195 {
    padding-right: 195px;
}

.pr-200 {
    padding-right: 200px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.pt-180 {
    padding-top: 180px;
}

@media only screen and (max-width: 992px) {
    .pt-180 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-180 {
        padding-top: 50px;
    }
}

.pt-150 {
    padding-top: 150px;
}

@media only screen and (max-width: 992px) {
    .pt-150 {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-150 {
        padding-top: 70px;
    }
}

.pt-130 {
    padding-top: 130px;
}

@media only screen and (max-width: 992px) {
    .pt-130 {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-130 {
        padding-top: 60px;
    }
}

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

@media only screen and (max-width: 992px) {
    .pt-120 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-120 {
        padding-top: 60px;
    }
}

.pt-90 {
    padding-top: 90px;
}

@media only screen and (max-width: 992px) {
    .pt-90 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-90 {
        padding-top: 60px;
    }
}

.pt-80 {
    padding-top: 80px;
}

@media only screen and (max-width: 992px) {
    .pt-80 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-80 {
        padding-top: 60px;
    }
}

.pt-70 {
    padding-top: 70px;
}

@media only screen and (max-width: 992px) {
    .pt-70 {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-70 {
        padding-top: 60px;
    }
}

.pb-180 {
    padding-bottom: 180px;
}

@media only screen and (max-width: 992px) {
    .pb-180 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-180 {
        padding-bottom: 60px;
    }
}

.pb-150 {
    padding-bottom: 150px;
}

@media only screen and (max-width: 992px) {
    .pb-150 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-150 {
        padding-bottom: 70px;
    }
}

.pb-130 {
    padding-bottom: 130px;
}

@media only screen and (max-width: 992px) {
    .pb-130 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-130 {
        padding-bottom: 60px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

@media only screen and (max-width: 992px) {
    .pb-120 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

.pb-90 {
    padding-bottom: 90px;
}

@media only screen and (max-width: 992px) {
    .pb-90 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-90 {
        padding-bottom: 60px;
    }
}

.pb-80 {
    padding-bottom: 80px;
}

@media only screen and (max-width: 992px) {
    .pb-80 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-80 {
        padding-bottom: 60px;
    }
}

.pb-70 {
    padding-bottom: 70px;
}

@media only screen and (max-width: 992px) {
    .pb-70 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .pb-70 {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-30 {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-40 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-50 {
        padding-bottom: 50px;
    }
}


/* Scroll To Top */

#scroll-percentage {
    position: absolute;
}

#scroll-percentage {
    height: 60px;
    width: 60px;
    background-color: var(--cp-color-bg-2);
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}

@media only screen and (max-width: 992px) {
    #scroll-percentage {
        right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    #scroll-percentage {
        bottom: 20px;
        right: 20px;
    }
}

#scroll-percentage.active {
    bottom: 50px;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media only screen and (max-width: 992px) {
    #scroll-percentage.active {
        bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    #scroll-percentage.active {
        bottom: 20px;
    }
}

#scroll-percentage-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--cp-color-bg-2);
    color: var(--cp-color-theme-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
}

#scroll-percentage-value i {
    font-size: 20px;
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@-webkit-keyframes wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }
    33.3% {
        transform: translateY(-6px);
    }
    49.95% {
        transform: translateY(4px);
    }
    66.6% {
        transform: translateY(-2px);
    }
    83.25% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }
    33.3% {
        transform: translateY(-6px);
    }
    49.95% {
        transform: translateY(4px);
    }
    66.6% {
        transform: translateY(-2px);
    }
    83.25% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}


/** Buttons CSS */

.cp-primary-btn {
    background-color: var(--cp-color-theme-primary);
    font-family: var(--cp-ff-heading);
    color: var(--cp-color-text-black);
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 21px 35px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .cp-primary-btn {
        padding: 20px 30px;
    }
}

.cp-primary-btn:before {
    background-color: var(--cp-color-heading-primary);
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    transition: all 0.5s;
    z-index: -1;
}

.cp-primary-btn:after {
    display: block;
    clear: both;
    content: "";
}

.cp-primary-btn i {
    margin-left: 7px;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
    margin-top: 3.5px;
}

.cp-primary-btn .btn-text {
    z-index: 1;
    float: left;
    overflow: hidden;
    position: relative;
    display: inline-block;
    border: none;
}

.cp-primary-btn .btn-text .btn-text-1 {
    position: relative;
    display: block;
    color: var(--cp-color-text-black);
    transition: all 0.5s;
}

.cp-primary-btn .btn-text .btn-text-2 {
    position: absolute;
    top: 100%;
    display: block;
    color: var(--cp-color-heading-primary);
    transition: all 0.5s;
}

.cp-primary-btn:hover {
    color: var(--cp-color-text-black);
}

.cp-primary-btn:hover:before {
    background-color: var(--cp-color-heading-primary);
    height: 100%;
    width: 100%;
}

.cp-primary-btn:hover .btn-text .btn-text-1 {
    transform: translateY(-150%);
}

.cp-primary-btn:hover .btn-text .btn-text-2 {
    top: 50%;
    transform: translateY(-50%);
    color: var(--cp-color-common-white);
}

.cp-primary-btn:focus {
    color: var(--cp-color-heading-primary);
}

.cp-primary-btn.cp-btn-2 {
    border-radius: 100px;
}


/**----------------------------------------
START: Header CSS
----------------------------------------*/

.header {
    background-color: transparent;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgba(217, 217, 217, 0.1);
}

@media only screen and (max-width: 992px) {
    .header {
        background-color: var(--cp-color-bg-1);
        position: relative;
        top: 0;
        height: auto !important;
    }
}

.header .header-wrap {
    padding: 0 80px;
}

@media (max-width: 1199px) {
    .header .header-wrap {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 992px) {
    .header .header-wrap {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header .header-wrap {
        padding: 0 15px;
    }
}

.header .primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner {
        padding: 20px 0;
    }
}

.header .primary-header-inner .header-logo img {
    max-width: 170px;
}

.header .primary-header-inner .header-logo .logo-light {
    display: none;
}

@media (max-width: 1399px) {
    .header .primary-header-inner .header-logo img {
        max-width: 150px;
    }
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-logo img {
        max-width: 150px;
    }
}

.header .primary-header-inner .header-menu-wrap {
    display: flex !important;
    align-items: center;
}

.header .primary-header-inner .header-menu-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-menu-wrap ul {
        display: none;
    }
}

.header .primary-header-inner .header-menu-wrap ul li {
    display: inline-block;
    position: relative;
    margin: 0 25px;
}

@media (max-width: 1399px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 15px;
    }
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 10px;
    }
}

.header .primary-header-inner .header-menu-wrap ul li:first-child {
    margin-left: 0;
}

.header .primary-header-inner .header-menu-wrap ul li:last-child {
    margin-right: 0;
}

.header .primary-header-inner .header-menu-wrap ul li a {
    font-family: "Mona Sans", sans-serif;
    color: var(--cp-color-common-white);
    display: block;
    font-size: 16px;
    padding: 37px 0;
    letter-spacing: 0px;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-menu-wrap ul li a {
        font-size: 16px;
    }
}

.header .primary-header-inner .header-menu-wrap ul li a:hover {
    color: var(--cp-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li a i {
    font-size: 13px;
}

.header .primary-header-inner .header-menu-wrap ul li.active a {
    color: var(--cp-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li.active ul li a {
    color: var(--cp-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap ul li.active ul li a:hover {
    color: var(--cp-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap ul li.active.menu-item-has-children:after {
    color: var(--cp-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li ul {
    background-color: var(--cp-color-heading-primary);
    display: block;
    width: 250px;
    padding: 0;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    position: absolute;
    left: 0;
    top: 100px;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: all 0.6s ease;
}

.header .primary-header-inner .header-menu-wrap ul li:hover>ul {
    visibility: visible;
    transition: all 0.6s ease;
    opacity: 1;
    transform: none;
}

.header .primary-header-inner .header-menu-wrap ul li li {
    display: flex;
    justify-content: space-between;
    text-align: left;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap ul li li:hover {
    background-color: var(--cp-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--cp-color-common-black);
}

.header .primary-header-inner .header-menu-wrap ul li li a {
    background-color: var(--cp-color-bg-2);
    display: block;
    height: auto;
    line-height: inherit;
    color: var(--cp-color-common-white);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    padding-left: 25px;
    letter-spacing: 0px;
    text-transform: capitalize;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    position: relative;
}

.header .primary-header-inner .header-menu-wrap ul li li a:hover {
    color: var(--cp-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li a:before {
    background-color: var(--cp-color-theme-primary);
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap ul li li:first-child a {
    padding-top: 20px;
}

.header .primary-header-inner .header-menu-wrap ul li li:first-child a:before {
    top: 59%;
}

.header .primary-header-inner .header-menu-wrap ul li li:last-child {
    margin: 0;
    border-bottom: none;
}

.header .primary-header-inner .header-menu-wrap ul li li:last-child a {
    padding-bottom: 20px;
}

.header .primary-header-inner .header-menu-wrap ul li li:last-child a:before {
    top: 41%;
}

.header .primary-header-inner .header-menu-wrap ul li li.active {
    background-color: var(--cp-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    padding-left: 35px;
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a:before {
    width: 10px;
}

.header .primary-header-inner .header-menu-wrap ul li li ul {
    top: 0;
    left: 100%;
}

.header .primary-header-inner .header-menu-wrap ul li li ul li a {
    color: var(--cp-color-common-white);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--cp-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
    color: var(--cp-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
    color: var(--cp-color-theme-primary);
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
    position: relative;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
    padding-right: 17px;
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
        padding-right: 13px;
    }
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li {
    margin: 0;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li a {
    padding-right: 0;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
    font-weight: 700;
    content: "\f078";
    color: var(--cp-color-common-white);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:hover:after {
    color: var(--cp-color-theme-primary);
}

.header .primary-header-inner .header-right-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
}

@media (max-width: 1399px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 50px;
    }
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 20px;
    }
}

.header .primary-header-inner .header-right-wrap .header-right {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-logo img {
        width: 90px;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .header-btn:hover .btn-text .btn-text-2 {
    color: var(--cp-color-heading-primary);
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 7px;
    margin-left: 16px;
    border-radius: 3px;
}

@media (max-width: 1199px) {
    .header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
        display: none;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger span {
    background-color: var(--cp-color-common-white);
    width: 25px;
    height: 3px;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    margin-left: auto;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger span:nth-child(2) {
    width: 30px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger span:nth-child(3) {
    width: 15px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger:hover span:nth-child(1) {
    width: 30px;
}

.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger:hover span:nth-child(3) {
    width: 20px;
}

.header .primary-header-inner .header-right-wrap .header-right .search-icon {
    color: var(--cp-color-heading-primary);
    font-size: 20px;
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .search-icon {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .search-icon {
        display: none;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .header-btn {
    background: var(--cp-color-common-white);
}

.header .primary-header-inner .header-right-wrap .header-right .header-btn:before {
    background-color: var(--cp-color-theme-primary);
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-btn {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-btn {
        display: none;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .header-right-item {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-right-item {
        line-height: 1;
    }
}

@media (min-width: 993px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
        display: none;
    }
}

.header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
    font-size: 16px;
    margin-left: 55px;
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .header .primary-header-inner .mean-push {
        display: none;
    }
}

.header.fixed {
    background-color: var(--cp-color-bg-1);
    top: 0;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
    .header .primary-header.fixed .primary-header-inner {
        padding: 20px 0;
    }
}

.header-3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-header {
    width: 100%;
}

.primary-header.fixed {
    background-color: var(--cp-color-bg-1);
    position: fixed;
    left: 0;
    top: 0;
    animation-name: menuSticky;
    -webkit-animation-name: menuSticky;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    z-index: 99;
}

@media only screen and (max-width: 992px) {
    .primary-header.fixed .primary-header-inner {
        padding: 20px;
    }
}

.primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul {
    background-color: var(--cp-color-bg-1);
}

.primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul li a {
    background-color: var(--cp-color-bg-1);
}

.header-2 {
    background-color: transparent;
    position: absolute;
    top: 0;
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu .header-right {
        display: none !important;
    }
}

.side-menu-icon {
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 100;
    display: block;
    cursor: pointer;
}

@media only screen and (max-width: 992px) {
    .side-menu-icon {
        display: none;
    }
}

.side-menu-wrapper {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 850px;
    -webkit-transform: translateX(850px);
    -ms-transform: translateX(850px);
    transform: translateX(850px);
    height: 100%;
    display: block;
    background-color: var(--cp-color-theme-bg-dark-deep);
    z-index: 100;
    padding: 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
}

.side-menu-wrapper .side-menu-close {
    background-color: var(--cp-color-theme-primary);
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}

.side-menu-wrapper.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@media only screen and (max-width: 992px) {
    .side-menu-wrapper {
        display: none;
    }
}

.side-menu-content .side-menu-header {
    font-family: var(--cp-ff-body);
    font-size: 30px;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    margin-bottom: 40px;
}

.side-menu-content .side-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box img {
    max-width: 150px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
    font-family: var(--cp-ff-body);
    font-size: 32px;
    font-weight: 500;
    color: var(--cp-color-theme-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
    max-width: 400px;
    width: 100%;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
    margin-bottom: 0;
}

.side-menu-content .side-menu-item .side-menu-arrow {
    font-size: 45px;
    color: var(--cp-color-theme-primary);
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}

.side-menu-content .side-menu-item:hover {
    border: 1px solid var(--cp-color-border-6);
}

.side-menu-content .side-menu-item:hover .side-menu-arrow {
    transform: rotate(0deg);
}

.side-menu-content .side-menu-item:last-child {
    margin-bottom: 0;
}

.side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
}

@media only screen and (max-width: 992px) {
    .side-menu-overlay {
        display: none;
    }
}

@-webkit-keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.mobile-side-menu-overlay,
.mobile-side-menu {
    display: none;
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu {
        background-color: var(--cp-color-bg-1);
        position: fixed;
        overflow-y: scroll;
        top: 0;
        right: 0;
        width: 400px;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        height: 100%;
        display: block;
        z-index: 100;
        padding: 40px 40px 40px 40px;
        -webkit-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
        backface-visibility: hidden;
    }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu {
        padding: 40px 20px;
        width: 100%;
        max-width: 320px;
    }
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu.is-open {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .mobile-side-menu .side-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .mobile-side-menu .side-menu-head a img {
        max-width: 120px;
    }
    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        position: fixed;
        top: 35px;
        right: 40px;
        color: var(--cp-color-common-white);
        font-size: 17px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--cp-color-border-1);
    }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        right: 16px;
    }
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
        background-color: var(--cp-color-theme-primary);
        color: var(--cp-color-common-white);
    }
    .mobile-side-menu .side-menu-wrap {
        overflow: hidden;
        margin-bottom: 50px;
    }
    .mobile-side-menu p {
        color: var(--cp-color-common-white);
        margin-bottom: 50px;
    }
    .mobile-side-menu .list-header {
        color: var(--cp-color-common-white);
        font-family: var(--cp-ff-body);
        font-weight: 400;
        margin-bottom: 30px;
    }
    .mobile-side-menu .side-menu-list {
        list-style: none;
    }
    .mobile-side-menu .side-menu-list li {
        font-family: var(--cp-ff-heading);
        font-size: 16px;
        font-weight: 500;
        color: var(--cp-color-common-white);
    }
    .mobile-side-menu .side-menu-list li span,
    .mobile-side-menu .side-menu-list li a {
        color: var(--cp-color-common-white);
        margin-left: 10px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 992px) and (max-width: 992px) {
    .mobile-side-menu .side-menu-list li span,
    .mobile-side-menu .side-menu-list li a {
        margin-left: 0;
    }
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu .side-menu-list li i {
        margin-right: 10px;
    }
    .mobile-side-menu-overlay {
        background-color: rgba(0, 0, 0, 0.7);
        height: 100%;
        width: 0%;
        position: fixed;
        top: 0;
        z-index: 9;
        right: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 10;
        display: block;
    }
    .mobile-side-menu-overlay.is-open {
        width: 100%;
        opacity: 0.5;
        visibility: visible;
        cursor: url(../img/cancel.png), auto;
    }
}

.mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
}

.mean-bar .meanmenu-reveal {
    display: none !important;
}

.mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
}

.mean-bar .mean-nav.mean-nav>ul {
    display: block !important;
}

.mean-bar .mean-nav.mean-nav>ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
}

.mean-bar .mean-nav.mean-nav>ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cp-color-border-1);
}

.mean-bar .mean-nav.mean-nav>ul li a {
    color: var(--cp-color-common-white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
}

@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav>ul li a {
        font-size: 16px;
    }
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
    position: absolute;
    padding: 0;
    top: 3px;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand:before,
.mean-bar .mean-nav.mean-nav>ul li a.mean-expand:after {
    font-size: 12px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand:before {
    content: "+";
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked:after {
    content: "\f068";
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked:before {
    display: none;
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand i {
    display: none;
}

.mean-bar .mean-nav.mean-nav>ul li ul {
    padding: 0 0 0 30px;
    margin-top: 20px;
}

.mean-bar .mean-nav.mean-nav>ul li ul li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.mean-bar .mean-nav.mean-nav>ul li ul li a {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav>ul li ul li a {
        font-size: 14px;
    }
}

#popup-search-box {
    background-color: var(--cp-color-common-white);
    position: fixed;
    width: 100%;
    height: 20%;
    top: -100%;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap {
    background-color: var(--cp-color-common-white);
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

#popup-search-box .box-inner-wrap form {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 15px;
}

#popup-search-box .box-inner-wrap form input {
    width: 100%;
    padding: 20px 15px;
    padding-right: 80px;
    background: transparent;
    border: none;
    color: #ddd;
    border: 1px solid var(--cp-color-border-1);
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-moz-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-moz-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
    color: #666;
    font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:focus {
    outline: none;
}

#popup-search-box .box-inner-wrap:hover {
    cursor: url(../img/cross.png), auto;
}

#popup-search-box .box-inner-wrap .search-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--cp-color-heading-primary);
    border: 1px solid var(--cp-color-border-1);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    #popup-search-box .box-inner-wrap .search-close {
        height: 35px;
        width: 35px;
        top: 10px;
        right: 10px;
    }
}

#popup-search-box .box-inner-wrap .search-close:hover {
    background-color: var(--cp-color-theme-primary);
    border: 1px solid var(--cp-color-theme-primary);
    color: var(--cp-color-common-white);
}

#popup-search-box.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.popup-tags {
    position: relative;
    margin: 0 auto;
}


/* !END: Theme Header CSS */


/**----------------------------------------
    START: Hero CSS
----------------------------------------*/

.hero-section {
    background-color: var(--cp-color-bg-1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-section .bg-pattern {
    height: 50%;
}

.hero-container {
    max-width: 1545px;
}

.hero-content {
    padding-top: 220px;
    padding-bottom: 90px;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .hero-content {
        padding-top: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 1199px) {
    .hero-content {
        align-items: start;
    }
}

.hero-content .hero-right-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 30px;
    width: 100%;
}

.hero-content .hero-right-content .title {
    color: var(--cp-color-common-white);
    font-size: 120px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 1600px) {
    .hero-content .hero-right-content .title {
        font-size: 120px;
    }
}

@media (max-width: 1399px) {
    .hero-content .hero-right-content .title {
        font-size: 90px;
    }
}

@media (max-width: 1199px) {
    .hero-content .hero-right-content .title {
        font-size: 80px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content .hero-right-content .title {
        font-size: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content .hero-right-content .title {
        font-size: 42px;
        line-height: 1.2;
    }
}

.hero-content .hero-right-content .title span {
    font-family: "NewYork", sans-serif;
    font-weight: 400;
    display: block;
}

.hero-content .hero-right-content .hero-client-wrap {
    max-width: 450px;
    width: 100%;
}

.hero-content .hero-right-content .hero-client-wrap .hero-author-list {
    display: flex;
    align-items: center;
}

.hero-content .hero-right-content .hero-client-wrap .hero-author-list li {
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--cp-color-common-white);
}

.hero-content .hero-right-content .hero-client-wrap .hero-author-list li:not(:first-of-type) {
    margin-left: -20px;
}

.hero-content .hero-right-content .hero-client-wrap .hero-author-list li.icon {
    background-color: var(--cp-color-theme-primary);
}

.hero-content .hero-right-content .hero-client-wrap .hero-author-list li.icon i {
    color: var(--cp-color-heading-primary);
}

.hero-content .hero-right-content .hero-client-wrap .desc {
    font-family: var(--cp-ff-heading);
    color: var(--cp-color-common-white);
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 1.6;
}

.hero-content .hero-right-content .hero-client-wrap .hero-desc {
    color: var(--cp-color-common-white);
    font-family: "Euclid Circular B";
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-video-box {
    margin-bottom: 0;
    transform: translateY(8px);
}

.hero-video-box .video-area {
    max-width: 100%;
    width: 100%;
}

.hero-2 {
    background-color: var(--cp-color-bg-1);
    position: relative;
    z-index: 1;
}

.hero-content-2 {
    text-align: center;
    padding: 200px 0 120px 0;
}

@media only screen and (max-width: 992px) {
    .hero-content-2 {
        padding: 90px 0 100px 0;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content-2 {
        padding: 70px 0 70px 0;
    }
}

.hero-content-2 .title {
    font-size: 159px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

@media (max-width: 1600px) {
    .hero-content-2 .title {
        font-size: 130px;
    }
}

@media (max-width: 1399px) {
    .hero-content-2 .title {
        font-size: 120px;
    }
}

@media (max-width: 1199px) {
    .hero-content-2 .title {
        font-size: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content-2 .title {
        font-size: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .title {
        font-size: 40px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .hero-content-2 .title br {
        display: block;
    }
}

.hero-content-2 .title span {
    font-family: "NewYork", sans-serif;
    font-weight: 400;
}

.hero-content-2 .hero-content-inner {
    display: flex;
    align-items: center;
    column-gap: 120px;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width: 992px) {
    .hero-content-2 .hero-content-inner {
        flex-wrap: wrap;
        row-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .hero-content-inner .hero-counter {
        text-align: center;
    }
}

.hero-content-2 .hero-content-inner .hero-counter .hero-desc {
    max-width: 273px;
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 140px;
}

@media only screen and (max-width: 992px) {
    .hero-content-2 .hero-content-inner .hero-counter .hero-desc {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .hero-content-inner .hero-counter .hero-desc {
        max-width: 100%;
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
    }
}

.hero-content-2 .hero-content-inner .hero-counter .hero-counter-item {
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .hero-content-inner .hero-counter .hero-counter-item {
        text-align: center;
    }
}

.hero-content-2 .hero-content-inner .hero-counter .hero-counter-item .counter-title {
    font-family: "NewYork", sans-serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
    margin-left: -15px;
    margin-bottom: 0;
}

.hero-content-2 .hero-content-inner .hero-counter .hero-counter-item .counter-title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
}

.hero-content-2 .hero-content-inner .hero-counter .hero-counter-item p {
    font-family: var(--cp-ff-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

.hero-content-2 .hero-content-inner .hero-img-wrap {
    display: flex;
    align-items: center;
    column-gap: 60px;
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .hero-content-inner .hero-img-wrap {
        flex-direction: column;
        row-gap: 30px;
    }
}

.hero-content-2 .hero-content-inner .hero-img-wrap .hero-img {
    max-width: 720px;
    width: 100%;
    height: 458px;
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .hero-content-inner .hero-img-wrap .hero-img {
        height: 350px;
    }
}

.hero-content-2 .hero-content-inner .hero-img-wrap .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-2 .hero-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .hero-content-2 .hero-btn-wrap {
        flex-direction: column;
        row-gap: 20px;
    }
}

.hero-content-2 .hero-btn-wrap .hero-btn {
    background-color: var(--cp-color-theme-primary);
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 5;
}

.hero-content-2 .hero-btn-wrap .hero-btn i {
    color: var(--cp-color-text-black);
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-content-2 .hero-btn-wrap .hero-btn .explore-text {
    animation-name: spin;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

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

.hero-section-3 {
    position: relative;
    z-index: 1;
}

.hero-section-3 .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.hero-section-3 .overlay {
    background: linear-gradient(180deg, rgba(0, 46, 79, 0.1) 0%, rgba(0, 46, 79, 0.7) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content-3 {
    padding-top: 650px;
    padding-bottom: 90px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .hero-content-3 {
        padding-top: 450px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-3 {
        padding-top: 250px;
        padding-bottom: 50px;
    }
}

.hero-content-3 .title {
    color: var(--cp-color-common-white);
    font-size: 150px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
}

.hero-content-3 .title span {
    color: var(--cp-color-theme-primary);
    display: block;
    font-size: 80px;
}

@media (max-width: 1199px) {
    .hero-content-3 .title span {
        font-size: 70px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content-3 .title span {
        font-size: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-3 .title span {
        font-size: 30px;
    }
}

@media (max-width: 1600px) {
    .hero-content-3 .title {
        font-size: 130px;
    }
}

@media (max-width: 1399px) {
    .hero-content-3 .title {
        font-size: 110px;
    }
}

@media (max-width: 1199px) {
    .hero-content-3 .title {
        font-size: 90px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-content-3 .title {
        font-size: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-3 .title {
        font-size: 50px;
    }
}

.hero-content-3 .hero-btn-wrap {
    position: absolute;
    bottom: 35%;
    right: 80px;
    z-index: 5;
}

@media only screen and (max-width: 767px) {
    .hero-content-3 .hero-btn-wrap {
        display: none;
    }
}

.hero-content-3 .hero-btn-wrap .hero-btn {
    background-color: var(--cp-color-theme-primary);
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-content-3 .hero-btn-wrap .hero-btn i {
    color: var(--cp-color-text-black);
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-content-3 .hero-btn-wrap .hero-btn .explore-text {
    animation-name: spin;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


/* !END: Hero CSS */


/**----------------------------------------
    START: About CSS
----------------------------------------*/

.about-left-content {
    margin-top: 20px;
}

@media only screen and (max-width: 992px) {
    .about-left-content {
        margin-top: 0;
    }
}

.about-left-content .section-heading {
    margin-bottom: 300px;
}

@media only screen and (max-width: 992px) {
    .about-left-content .section-heading {
        margin-bottom: 30px;
    }
}

.about-left-content .about-counter .title {
    font-family: "NewYork", sans-serif;
    font-size: 180px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1;
    display: inline-flex;
}

@media only screen and (max-width: 767px) {
    .about-left-content .about-counter .title {
        font-size: 100px;
    }
}

.about-left-content .about-counter .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
}

.about-left-content .about-counter .title .icon {
    font-size: 50px;
    font-weight: 700;
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .about-left-content .about-counter .title .icon {
        font-size: 30px;
    }
}

.about-left-content .about-counter p {
    color: var(--cp-color-heading-primary);
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: -10px;
}

@media only screen and (max-width: 992px) {
    .about-content {
        margin-top: 50px;
    }
}

.about-content p {
    color: var(--cp-color-heading-primary);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
}

.about-content .about-img-wrap {
    max-width: 870px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 24px;
}

@media only screen and (max-width: 767px) {
    .about-content .about-img-wrap {
        flex-wrap: wrap;
        row-gap: 24px;
    }
}

.about-content .about-img-wrap .about-img-1 {
    max-width: 535px;
    width: 100%;
    height: 350px;
}

.about-content .about-img-wrap .about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .about-img-wrap .about-img-2 {
    max-width: 310px;
    width: 100%;
    height: 350px;
}

.about-content .about-img-wrap .about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsor-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
    .sponsor-title {
        margin-bottom: 30px;
    }
}

.sponsor-title span {
    color: var(--cp-color-theme-primary);
}

.about-carousel {
    max-width: 260px;
    margin-left: 0;
    padding-top: 60px;
    padding-right: 0px;
    margin-right: 60px;
    border-right: 1px solid var(--cp-color-border-1);
    padding-bottom: 60px;
}

@media (max-width: 1199px) {
    .about-carousel {
        padding-right: 40px;
        margin-right: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .about-carousel {
        margin-right: 0;
        padding-right: 0;
        border: none;
    }
}

.about-carousel .swiper-pagination {
    text-align: left;
    bottom: 0;
}

.about-carousel .swiper-pagination .swiper-pagination-bullet {
    height: 6px;
    width: 16px;
    background-color: var(--cp-color-common-white);
    border-radius: 100px;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.about-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    background-color: var(--cp-color-theme-primary);
}

.about-img-2 {
    max-width: 562px;
    width: 100%;
    height: 603px;
}

@media only screen and (max-width: 992px) {
    .about-img-2 {
        height: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .about-img-2 {
        height: 350px;
    }
}

.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .about-content-2 {
        margin-top: 40px;
    }
}

.about-content-2 .about-thumb {
    margin-bottom: 40px;
}

.about-content-2 p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 536px;
    width: 100%;
    line-height: 1.4;
}

.about-content-3 {
    margin-top: 0;
}

.about-content-3 .section-heading {
    margin-bottom: 85px;
}

@media only screen and (max-width: 992px) {
    .about-content-3 .section-heading {
        margin-bottom: 50px;
    }
}

.about-content-3 .about-inner {
    display: grid;
    align-items: center;
    grid-template-columns: 250px 1fr;
    grid-gap: 100px;
}

@media (max-width: 1199px) {
    .about-content-3 .about-inner {
        grid-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-3 .about-inner {
        grid-template-columns: 1fr;
    }
}

.about-content-3 .about-inner .about-thumb {
    height: 200px;
    max-width: 250px;
    width: 100%;
    margin-bottom: 0;
}

.about-content-3 .about-inner .about-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-3 .about-inner .about-inner-right p {
    color: #435759;
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .about-content-3 .about-inner .about-inner-right p {
        font-size: 18px;
    }
}

.about-img-3 {
    max-width: 450px;
    width: 100%;
    height: 550px;
    margin-left: auto;
}

@media only screen and (max-width: 992px) {
    .about-img-3 {
        margin: 0 auto;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .about-img-3 {
        height: 350px;
    }
}

.about-img-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sponsor-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--cp-color-border-1);
}

@media only screen and (max-width: 767px) {
    .about-sponsor-wrap {
        grid-template-columns: 1fr;
    }
}

.about-sponsor-item {
    text-align: center;
    padding: 60px 20px;
}

.about-sponsor-item:not(:last-of-type) {
    border-right: 1px solid var(--cp-color-border-1);
}

@media only screen and (max-width: 767px) {
    .about-sponsor-item:not(:last-of-type) {
        border-right: none;
        border-bottom: 1px solid var(--cp-color-border-1);
    }
}


/* !END: About CSS */


/**----------------------------------------
    START: Project CSS
----------------------------------------*/

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

.project-section .bg-color {
    background-color: var(--cp-color-common-white);
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.project-carousel-wrap {
    padding: 0 24px;
}

@media only screen and (max-width: 767px) {
    .project-carousel-wrap {
        padding: 0 15px;
    }
}

.project-carousel {
    padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
    .project-carousel {
        padding-bottom: 0;
    }
}

.project-carousel .swiper-pagination {
    bottom: 0;
}

@media only screen and (max-width: 767px) {
    .project-carousel .swiper-pagination {
        display: none;
    }
}

.project-carousel .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--cp-color-heading-primary);
    height: 2px;
    max-width: 440px;
    width: 100%;
    margin: 0;
}

@media (max-width: 1399px) {
    .project-carousel .swiper-pagination .swiper-pagination-bullet {
        max-width: 250px;
    }
}

@media only screen and (max-width: 992px) {
    .project-carousel .swiper-pagination .swiper-pagination-bullet {
        max-width: 200px;
    }
}

.project-item {
    position: relative;
}

.project-item .project-thumb {
    height: 450px;
    position: relative;
}

.project-item .project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-item .project-thumb .overlay {
    background-color: #002E4F;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.project-item .project-content {
    background-color: var(--cp-color-theme-primary);
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 5;
    padding: 40px;
    border-radius: 8px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
    .project-item .project-content {
        padding: 30px 30px;
        left: 30px;
        bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .project-item .project-content {
        left: 20px;
    }
}

.project-item .project-content .title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

@media only screen and (max-width: 992px) {
    .project-item .project-content .title {
        font-size: 20px;
    }
}

.project-item .project-content .title a {
    color: var(--cp-color-heading-primary);
}

.project-item .project-content span {
    color: var(--cp-color-heading-primary);
    font-family: var(--cp-ff-heading);
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-left: 32px;
}

@media only screen and (max-width: 992px) {
    .project-item .project-content span {
        font-size: 14px;
    }
}

.project-item .project-content span:before {
    background-color: var(--cp-color-heading-primary);
    width: 24px;
    height: 2px;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.project-item:hover .project-thumb .overlay {
    visibility: visible;
    opacity: 0.3;
}

.project-item:hover .project-content {
    bottom: 40px;
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-width: 992px) {
    .project-item:hover .project-content {
        bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .project-inner .project-thumb {
        height: 400px;
    }
}

.project-inner .project-content {
    width: 80%;
    padding: 30px 30px;
}

@media (max-width: 1199px) {
    .project-inner .project-content {
        left: 20px;
    }
}

.project-inner .project-content .title {
    font-size: 22px;
}

@media (max-width: 1199px) {
    .project-inner .project-content .title {
        font-size: 20px;
    }
}

.project-details-img {
    height: 650px;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .project-details-img {
        height: 400px;
    }
}

.project-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-details-content {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(63, 63, 44, 0.1);
}

.project-details-content .project-details-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(63, 63, 44, 0.1);
}

@media only screen and (max-width: 767px) {
    .project-details-content .project-details-meta {
        flex-direction: column;
        row-gap: 30px;
        justify-content: baseline;
        align-items: baseline;
    }
}

.project-details-content .project-details-meta .project-meta span {
    color: #335872;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.project-details-content .project-details-meta .project-meta .title {
    color: var(--cp-color-heading-primary);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
}

.project-details-content .details-title {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
    .project-details-content .details-title {
        font-size: 50px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .project-details-content .details-title {
        font-size: 30px;
    }
}

.project-details-content .details-title span {
    font-family: "NewYork", sans-serif;
    font-weight: 200;
}

.project-details-content .details-title-2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
    .project-details-content .details-title-2 {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .project-details-content .details-title-2 {
        font-size: 26px;
    }
}

.project-details-content .details-title-2 span {
    font-family: "NewYork", sans-serif;
    font-weight: 200;
}

.project-details-content p {
    color: #335872;
    font-size: 18px;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .project-details-content p {
        font-size: 15px;
    }
}

.project-details-content .project-details-thumb-wrap {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin: 60px 0;
    margin-top: 65px;
}

@media only screen and (max-width: 992px) {
    .project-details-content .project-details-thumb-wrap {
        margin: 40px 0;
    }
}

@media only screen and (max-width: 767px) {
    .project-details-content .project-details-thumb-wrap {
        flex-direction: column;
        row-gap: 24px;
    }
}

.project-details-content .project-details-thumb-wrap .project-details-thumb {
    height: 650px;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .project-details-content .project-details-thumb-wrap .project-details-thumb {
        height: 400px;
    }
}

.project-details-content .project-details-thumb-wrap .project-details-thumb .img-overlay {
    background-color: var(--cp-color-bg-1);
}

.project-details-content .project-details-thumb-wrap .project-details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-details-content .details-title-2 {
    font-size: 36px;
    font-weight: 600;
}

@media only screen and (max-width: 992px) {
    .project-details-content .details-title-2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
}


/* !END: Project CSS */


/**----------------------------------------
    START: Skill CSS
----------------------------------------*/

.skill-img {
    height: 500px;
}

.skill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skill-content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.skills-items {
    max-width: 536px;
    width: 100%;
}

@media (max-width: 1199px) {
    .skills-items {
        margin-top: 20px;
    }
}

.skills-item {
    overflow: hidden;
}

.skills-item:not(:last-of-type) {
    margin-bottom: 25px;
}

.skills-item .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.skills-item .title span {
    padding: 0 10px;
}

.skills-item .progress {
    background-color: rgba(0, 46, 79, 0.1);
    height: 10px;
    overflow: visible;
    border-radius: 0;
    border-radius: 32px;
}

.skills-item .progress .progress-bar {
    position: relative;
    background-color: var(--cp-color-heading-primary);
    overflow: visible;
    border-radius: 32px;
}

.skills-item .progress .progress-bar span {
    font-size: 16px;
    font-weight: 500;
    background-repeat: no-repeat;
    color: var(--cp-color-heading-primary);
    padding: 10px 10px 20px 10px;
    position: absolute;
    top: -45px;
    right: -11px;
}

@media only screen and (max-width: 767px) {
    .skills-item .progress .progress-bar span {
        font-size: 18px;
        padding-top: 20px;
        top: -60px;
    }
}

.skill-img-2 .img-overlay {
    background-color: var(--cp-color-bg-2);
}

.skill-inner {
    background-color: #F8F5F3;
}


/* !END: Skill CSS */


/**----------------------------------------
    START: Testimonial CSS
----------------------------------------*/

.testimonial-section {
    background-color: #06192F;
}

.testi-top .swiper-arrow {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.testi-top .swiper-arrow .swiper-nav {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-top .swiper-arrow .swiper-nav:hover {
    background-color: var(--cp-color-common-white);
}

.testi-wrapper {
    border-bottom: 1px solid var(--cp-color-border-1);
}

.testi-item {
    padding: 50px 60px;
    border: 1px solid var(--cp-color-border-1);
    border-radius: 8px;
}

@media only screen and (max-width: 767px) {
    .testi-item {
        padding: 50px 20px;
    }
}

.testi-item .icon {
    margin-bottom: 30px;
}

.testi-item p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
}

.testi-item .testi-author-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.testi-item .testi-author-box .testi-author {
    display: grid;
    align-items: center;
    grid-template-columns: 60px 1fr;
    grid-gap: 20px;
}

.testi-item .testi-author-box .testi-author .author-thumb {
    height: 60px;
    width: 60px;
}

.testi-item .testi-author-box .testi-author .author-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testi-item .testi-author-box .testi-author .content .name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testi-item .testi-author-box .testi-author .content span {
    line-height: 1;
}

.testi-carousel {
    padding-bottom: 80px;
}

.testi-carousel .swiper-pagination {
    bottom: 0;
}

.testi-carousel .swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    height: 28px;
    width: 28px;
    border: 1px solid transparent;
    border-radius: 50%;
    opacity: 1;
    position: relative;
}

.testi-carousel .swiper-pagination .swiper-pagination-bullet:before {
    background-color: var(--cp-color-heading-primary);
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testi-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid var(--cp-color-heading-primary);
}

.testi-item-3 {
    background-color: #F8F5F3;
}

.testi-left-content .testi-rating {
    margin-bottom: 200px;
}

@media only screen and (max-width: 992px) {
    .testi-left-content .testi-rating {
        display: none;
    }
}

.testi-left-content .testi-client-wrap {
    max-width: 450px;
    width: 100%;
    margin-bottom: 30px;
}

.testi-left-content .testi-client-wrap .testi-author-list {
    display: flex;
    align-items: center;
}

.testi-left-content .testi-client-wrap .testi-author-list li {
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--cp-color-common-white);
}

.testi-left-content .testi-client-wrap .testi-author-list li:not(:first-of-type) {
    margin-left: -20px;
}

.testi-left-content .testi-client-wrap .testi-author-list li.icon {
    background-color: var(--cp-color-theme-primary);
}

.testi-left-content .testi-client-wrap .desc {
    font-family: var(--cp-ff-heading);
    color: var(--cp-color-heading-primary);
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.6;
}

.testi-carousel-2 {
    padding-bottom: 60px;
}

.testi-carousel-2 .swiper-pagination {
    text-align: left;
    bottom: 0;
}

.testi-carousel-2 .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 16px;
    background-color: #002E4F;
    opacity: 0.4;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-carousel-2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    background-color: var(--cp-color-heading-primary);
    opacity: 1;
}

.testi-item-wrap {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 350px;
    grid-gap: 100px;
}

@media (max-width: 1199px) {
    .testi-item-wrap {
        grid-gap: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .testi-item-wrap {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .testi-item-wrap {
        grid-template-columns: 1fr;
    }
}

.testi-item-wrap .testi-item {
    padding: 0;
    border: none;
}

.testi-item-wrap .testi-item p {
    font-size: 24px;
    font-weight: 500;
    max-width: 470px;
}

@media (max-width: 1199px) {
    .testi-item-wrap .testi-item p {
        font-size: 20px;
    }
}

.testi-item-wrap .testi-item .testi-author-box .testi-author {
    grid-template-columns: 1fr;
}

.testimonial-section-2 {
    background-color: var(--cp-color-bg-1);
}

.testi-left-content-2 .swiper-arrow {
    display: flex;
    align-items: center;
    column-gap: 10px;
    flex-direction: column;
    row-gap: 10px;
}

@media only screen and (max-width: 992px) {
    .testi-left-content-2 .swiper-arrow {
        align-items: baseline;
        flex-direction: row;
    }
}

.testi-left-content-2 .swiper-arrow .swiper-nav {
    background-color: var(--cp-color-common-white);
    color: var(--cp-color-text-black);
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-left-content-2 .swiper-arrow .swiper-nav:hover {
    background-color: var(--cp-color-theme-primary);
}

.testi-right-content-2 {
    border: none;
}

@media only screen and (max-width: 992px) {
    .testi-right-content-2 {
        margin-top: 40px;
    }
}

.testi-wrapper-2 {
    border: none;
}

.testi-item-wrap-2 {
    display: grid;
    align-items: center;
    grid-template-columns: 370px 1fr;
    grid-gap: 70px;
}

@media only screen and (max-width: 992px) {
    .testi-item-wrap-2 {
        grid-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .testi-item-wrap-2 {
        grid-template-columns: 1fr;
    }
}

.testi-item-wrap-2 .testi-item p {
    font-family: var(--cp-ff-body);
    color: #F8F5F3;
    font-size: 26px;
    font-weight: 400;
    max-width: 100%;
    font-style: italic;
}

@media only screen and (max-width: 992px) {
    .testi-item-wrap-2 .testi-item p {
        font-size: 20px;
    }
}

.testi-item-wrap-2 .testi-item .testi-author-box .testi-author .content .name {
    color: #F8F5F3;
}

.testi-item-wrap-2 .testi-item .testi-author-box .testi-author .content span {
    color: #B3C0CA;
    font-size: 14px;
    font-weight: 500;
}

.testi-counter-area.area-2 {
    padding-bottom: 150px;
}

@media only screen and (max-width: 992px) {
    .testi-counter-area.area-2 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .testi-counter-area.area-2 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 992px) {
    .counter-item-wrap-2 {
        padding-bottom: 80px;
    }
}

.counter-item-wrap-2>div {
    padding: 0;
}

.counter-item-wrap-2>div:not(:last-of-type) .counter-item {
    border-right: 1px solid rgba(0, 46, 79, 0.2);
}

@media only screen and (max-width: 992px) {
    .counter-item-wrap-2>div:not(:last-of-type) .counter-item {
        border: none;
    }
}

.counter-item {
    padding: 50px 0;
    border-top: 1px solid rgba(0, 46, 79, 0.2);
}

@media only screen and (max-width: 992px) {
    .counter-item {
        border: none;
        padding: 0;
    }
}

.counter-item .title {
    font-family: "NewYork", sans-serif;
    font-size: 100px;
    font-weight: 400;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    align-items: start;
    justify-content: center;
    line-height: 1;
}

@media only screen and (max-width: 992px) {
    .counter-item .title {
        font-size: 60px;
    }
}

.counter-item .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
}

.counter-item .title .icon {
    font-size: 40px;
    font-weight: 400;
    margin-top: 10px;
}

.counter-item p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
    .counter-item.item-1 {
        text-align: center;
    }
}

.counter-item.item-1 .title {
    justify-content: start;
}

@media only screen and (max-width: 992px) {
    .counter-item.item-1 .title {
        justify-content: center;
    }
}

.counter-item.item-4 .title {
    justify-content: end;
    text-align: left;
}

@media only screen and (max-width: 992px) {
    .counter-item.item-4 .title {
        justify-content: center;
        text-align: center;
    }
}

.counter-item.item-4 p {
    text-align: right;
}

@media only screen and (max-width: 992px) {
    .counter-item.item-4 p {
        text-align: center;
    }
}

.testi-counter-area-2 {
    padding-bottom: 150px;
    padding-top: 0;
}

.counter-item-wrap {
    height: 270px;
    width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #E7E7E7;
    border-radius: 50%;
}

.testi-item-2 {
    background-color: var(--cp-color-bg-2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* !END: Testimonial CSS */


/**----------------------------------------
    START: Service CSS
----------------------------------------*/

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

.service-top .swiper-arrow {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.service-top .swiper-arrow .swiper-nav {
    background-color: var(--cp-color-common-white);
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-top .swiper-arrow .swiper-nav:hover {
    background-color: var(--cp-color-theme-primary);
}

.service-item {
    background-color: var(--cp-color-common-white);
    position: relative;
    z-index: 1;
    padding: 40px;
    border-radius: 8px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .service-item {
        padding: 40px 20px;
    }
}

.service-item:before {
    background-color: var(--cp-color-theme-primary);
    content: "";
    height: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-item .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.service-item .icon {
    margin-bottom: 80px;
}

.service-item .title {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

.service-item .service-btn {
    padding: 16px 30px;
}

.service-item .service-btn:before {
    background-color: var(--cp-color-heading-primary);
}

.service-item .service-btn .btn-text .btn-text-2 {
    color: var(--cp-color-common-white);
}

.service-item:hover:before {
    height: 100%;
}

.service-item:hover .title a {
    color: var(--cp-color-heading-primary);
}

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

.service-carousel {
    overflow: visible;
    max-width: 1296px;
    margin-left: 0;
}

.service-section-2 {
    background-color: #F8F5F3;
}

@media only screen and (max-width: 992px) {
    .service-content-left {
        margin-bottom: 40px;
    }
}

.service-item-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
}

@media only screen and (max-width: 767px) {
    .service-item-wrap {
        grid-template-columns: 1fr;
    }
}

.service-item-wrap .service-item {
    border: 1px solid rgba(0, 46, 79, 0.2);
}

@media (max-width: 1199px) {
    .service-item-wrap .service-item {
        padding: 30px 20px;
    }
    .service-item-wrap .service-item p br {
        display: none;
    }
}

.service-item-wrap .service-item .icon {
    margin-bottom: 100px;
    display: block;
}

.service-item-wrap .service-item .service-content .title {
    font-family: var(--cp-ff-heading);
    line-height: 1.3;
    display: block;
}

.service-item-wrap .service-item .service-content .item-desc {
    display: block;
}

.service-item-wrap:hover .service-content .title,
.service-item-wrap:hover .service-content .item-desc {
    color: var(--cp-color-heading-primary);
}

.service-top-3 .service-top-btn .cp-primary-btn:hover:before {
    background-color: var(--cp-color-common-white);
}

.service-top-3 .service-top-btn .cp-primary-btn:hover .btn-text .btn-text-2 {
    color: var(--cp-color-heading-primary);
}

.service-item-wrap-3>div {
    padding: 0;
}

.service-item-wrap-3>div:not(:last-of-type) .service-item-3 {
    border-right: 1px solid #335872;
}

@media only screen and (max-width: 992px) {
    .service-item-wrap-3>div:not(:last-of-type) .service-item-3 {
        border: none;
    }
}

.service-item-3 {
    background-color: var(--cp-color-bg-1);
    border-radius: 0;
    border-top: 1px solid #335872;
}

@media (max-width: 1199px) {
    .service-item-3 {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 992px) {
    .service-item-3 {
        border: none;
    }
}

@media only screen and (max-width: 767px) {
    .service-item-3 {
        padding: 20px;
    }
}

.service-item-3:before {
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.service-item-3 .icon {
    background-color: var(--cp-color-common-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

.service-item-3 .icon img {
    width: 36px;
    height: 36px;
}

.service-item-3 .service-content .title {
    line-height: 1.4;
    text-transform: capitalize;
}

@media only screen and (max-width: 992px) {
    .service-item-3 .service-content .title {
        font-size: 26px;
    }
    .service-item-3 .service-content .title br {
        display: none;
    }
}

.service-item-3 .service-content .title a {
    color: var(--cp-color-common-white);
}

.service-item-3 .service-content p {
    color: #B3C0CA;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-item-3:hover:before {
    width: 100%;
}

.service-item-3:hover .service-content .title a {
    color: var(--cp-color-heading-primary);
}

.service-item-3:hover .service-content p {
    color: #335872;
}

.service-inner-item-wrap>div {
    padding: 0;
}

.service-inner-item-wrap>div:not(:last-of-type) .service-item-3 {
    border-right: 1px solid rgba(179, 192, 202, 0.4);
}

@media only screen and (max-width: 992px) {
    .service-inner-item-wrap>div:not(:last-of-type) .service-item-3 {
        border: none;
    }
}

.service-inner {
    background-color: var(--cp-color-common-white);
    border-color: rgba(179, 192, 202, 0.4);
}

.service-inner .service-content .title a {
    color: var(--cp-color-heading-primary);
}

.service-inner .service-content p {
    color: #335872;
}

.service-details-img {
    height: 512px;
}

@media only screen and (max-width: 992px) {
    .service-details-img {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .service-details-img {
        height: 350px;
    }
}

.service-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details-content .details-title {
    font-size: 60px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media only screen and (max-width: 992px) {
    .service-details-content .details-title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .service-details-content .details-title {
        font-size: 30px;
    }
}

.service-details-content .details-title span {
    font-family: "NewYork", sans-serif;
    font-weight: 200;
}

.service-details-content p {
    font-size: 17px;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .service-details-content p {
        font-size: 15px;
    }
}

.service-details-content .service-details-img-2 {
    height: 245px;
}

.service-details-content .service-details-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details-content .details-title-2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .service-details-content .details-title-2 {
        font-size: 26px;
    }
}

.service-details-content .details-title-2 span {
    font-family: "NewYork", sans-serif;
    font-weight: 200;
}

.service-sidebar {
    background-color: #F8F5F3;
    padding: 30px;
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .service-sidebar {
        padding: 30px 15px;
    }
}

.service-sidebar:not(:last-of-type) {
    margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .service-sidebar:not(:last-of-type) {
        margin-bottom: 30px;
    }
}

.service-sidebar .sidebar-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.service-sidebar .sidebar-title:before {
    background-color: var(--cp-color-heading-primary);
    content: "";
    height: 17px;
    width: 8px;
    position: absolute;
    top: 50%;
    left: -28px;
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    .service-sidebar .sidebar-title:before {
        display: none;
    }
}

.service-sidebar .service-sidebar-list {
    list-style: none;
}

.service-sidebar .service-sidebar-list li:not(:last-of-type) {
    margin-bottom: 8px;
}

.service-sidebar .service-sidebar-list li a {
    font-family: var(--cp-ff-heading);
    background-color: var(--cp-color-common-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 100px;
    overflow: hidden;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .service-sidebar .service-sidebar-list li a {
        padding: 15px;
        font-size: 16px;
    }
}

.service-sidebar .service-sidebar-list li a i {
    color: var(--cp-color-heading-primary);
}

.service-sidebar .service-sidebar-list li a:hover {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
}

.service-sidebar .service-sidebar-list li a:hover i {
    color: var(--cp-color-text-black);
}

.service-sidebar.sidebar-cta {
    background-color: transparent;
    padding: 0;
    overflow: hidden;
}

.service-sidebar.sidebar-cta .sidebar-img {
    height: 450px;
    width: 100%;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .service-sidebar.sidebar-cta .sidebar-img {
        max-width: 408px;
    }
}

.service-sidebar.sidebar-cta .sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-sidebar.sidebar-cta .sidebar-img .overlay {
    background: linear-gradient(180deg, rgba(0, 46, 79, 0) 21.67%, #002E4F 84.33%);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 8px;
}

.service-sidebar.sidebar-cta .content {
    position: absolute;
    left: 30px;
    bottom: 40px;
}

.service-sidebar.sidebar-cta .content .service-cta-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--cp-color-common-white);
}

.service-sidebar.sidebar-cta .content a {
    color: var(--cp-color-common-white);
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}


/* !END: Service CSS */


/**----------------------------------------
    START: Video CSS
----------------------------------------*/

.video-section {
    height: 800px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .video-section {
        height: 550px;
    }
}

.video-section .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.video-section .play-btn {
    background-color: var(--cp-color-common-white);
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.video-section .play-btn:hover {
    background-color: var(--cp-color-theme-primary);
}

.video-section .play-btn i {
    color: var(--cp-color-text-black);
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-section .play-btn .explore-text {
    animation-name: spin;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


/* !END: Video CSS */


/**----------------------------------------
    START: Team CSS
----------------------------------------*/

.team-section {
    background-color: #F8F5F3;
}

.team-item .team-thumb {
    background-color: var(--cp-color-common-white);
    height: 370px;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.team-item .team-thumb .overlay {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.team-item .team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-item .team-thumb .team-social {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item .team-thumb .team-social li {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-item .team-thumb .team-social li:not(:last-of-type) {
    margin-bottom: 5px;
}

.team-item .team-thumb .team-social li a {
    background-color: var(--cp-color-common-white);
    color: var(--cp-color-text-black);
    font-size: 14px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.team-item .team-thumb .team-social li a:hover {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
}

.team-item .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
}

.team-item span {
    font-size: 16px;
    color: #335872;
    display: block;
    line-height: 1;
    font-weight: 500;
}

.team-item:hover .team-thumb .overlay {
    visibility: visible;
    opacity: 1;
}

.team-item:hover .team-thumb .team-social {
    visibility: visible;
    opacity: 1;
}

.team-item:hover .team-thumb .team-social li:not(:last-of-type) {
    margin-bottom: 10px;
}

.team-details-img {
    background-color: #F8F5F3;
    max-width: 580px;
    width: 100%;
    height: 620px;
    border-radius: 8px;
}

@media only screen and (max-width: 767px) {
    .team-details-img {
        height: 450px;
    }
}

.team-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-details-content {
    max-width: 670px;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    .team-details-content {
        margin-top: 50px;
    }
}

.team-details-content p {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .team-details-content p {
        font-size: 15px;
    }
}

.team-details-content .name {
    font-size: 48px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .team-details-content .name {
        font-size: 38px;
    }
}

.team-details-content .prof {
    font-family: var(--cp-ff-heading);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    display: block;
}

.team-details-content .team-details-list {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(63, 63, 44, 0.1);
    list-style: none;
}

.team-details-content .team-details-list li {
    font-family: var(--cp-ff-heading);
    color: var(--cp-color-heading-primary);
    font-size: 18px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .team-details-content .team-details-list li {
        font-size: 14px;
    }
}

.team-details-content .team-details-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.team-details-content .team-details-list li span {
    display: inline-block;
}

.team-details-content .team-details-list li span:nth-child(1) {
    width: 137px;
}

@media only screen and (max-width: 767px) {
    .team-details-content .team-details-list li span:nth-child(1) {
        width: 100px;
    }
}

.team-details-content .team-details-list li span:nth-child(2) {
    width: 65px;
}

@media only screen and (max-width: 767px) {
    .team-details-content .team-details-list li span:nth-child(2) {
        width: 30px;
    }
}

.team-details-content .team-portfolio {
    margin-top: 40px;
    margin-bottom: 40px;
}

.team-details-content .team-portfolio .port-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.team-details-content .team-portfolio .team-portfolio-list {
    list-style: none;
}

@media only screen and (max-width: 767px) {
    .team-details-content .team-portfolio .team-portfolio-list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        row-gap: 10px;
    }
}

.team-details-content .team-portfolio .team-portfolio-list li {
    display: inline-flex;
    align-items: center;
}

.team-details-content .team-portfolio .team-portfolio-list li:not(:last-of-type) {
    margin-right: 10px;
}

.team-details-content .team-portfolio .team-portfolio-list li a {
    background-color: #F8F5F3;
    font-family: var(--cp-ff-p);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--cp-color-border-1);
}

.team-details-content .team-portfolio .team-portfolio-list li a:hover {
    background-color: var(--cp-color-heading-primary);
    color: var(--cp-color-common-white);
}

.team-details-content .team-details-info:not(:last-of-type) {
    margin-bottom: 40px;
}

.team-details-content .team-details-info .info-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
}

.team-details-content .team-details-info p {
    margin-bottom: 0;
}

.team-details-content .team-details-info .skills-items {
    margin-top: 35px;
}

.team-details-content .team-details-info .skills-items .skills-item .title {
    font-size: 16px;
    font-weight: 600;
}


/* !END: Team CSS */


/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/

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

.step-section .step-img {
    max-width: 648px;
    width: 100%;
    height: 382px;
    position: absolute;
    top: 0;
    right: 15%;
}

@media (max-width: 1600px) {
    .step-section .step-img {
        right: 0;
    }
}

@media (max-width: 1399px) {
    .step-section .step-img {
        max-width: 550px;
    }
}

@media (max-width: 1199px) {
    .step-section .step-img {
        height: 300px;
    }
}

@media only screen and (max-width: 992px) {
    .step-section .step-img {
        display: none;
    }
}

.step-section .step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-section .section-heading {
    margin-bottom: 120px;
}

@media (max-width: 1199px) {
    .step-section .section-heading {
        margin-bottom: 150px;
    }
}

@media only screen and (max-width: 992px) {
    .step-section .section-heading {
        margin-bottom: 0px;
    }
}

.step-details-item-wrap {
    position: relative;
    margin: 0;
}

.step-details-item-wrap>div {
    padding: 0;
}

.step-details-item-wrap .line {
    background-color: #F8F5F3;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

@media only screen and (max-width: 992px) {
    .step-details-item-wrap .line {
        display: none;
    }
}

.step-details-item-wrap .step-details-item {
    margin-top: 45px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .step-details-item-wrap .step-details-item {
        margin-top: 0;
    }
}

.step-details-item-wrap .step-details-item .dot-shape {
    background-color: var(--cp-color-common-white);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    position: absolute;
    top: -49.5px;
    left: 0;
}

@media only screen and (max-width: 992px) {
    .step-details-item-wrap .step-details-item .dot-shape {
        display: none;
    }
}

.step-details-item-wrap .step-details-item .number {
    color: var(--cp-color-common-white);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    top: -85%;
    left: 0;
}

@media only screen and (max-width: 992px) {
    .step-details-item-wrap .step-details-item .number {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

.step-details-item-wrap .step-details-item .title {
    color: var(--cp-color-common-white);
    font-size: 24px;
    font-weight: 500;
    margin: 15px 0;
}

.step-details-item-wrap .step-details-item p {
    color: #E7E7E7;
    font-size: 18px;
    margin-bottom: 0;
    max-width: 260px;
    width: 100%;
}


/* !END: Page Header CSS */


/**----------------------------------------
    START: Content CSS
----------------------------------------*/

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

@media only screen and (max-width: 992px) {
    .content-info {
        margin-bottom: 30px;
    }
}

.content-info p {
    color: #F8F7F0;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 480px;
    width: 100%;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    .content-info p {
        font-size: 18px;
    }
}

.content-info .content-btn .cp-primary-btn:hover:before {
    background-color: var(--cp-color-common-white);
}

.content-info .content-btn .cp-primary-btn:hover .btn-text .btn-text-2 {
    color: var(--cp-color-heading-primary);
}


/* !END: Content CSS */


/**----------------------------------------
    START: Pricing CSS
----------------------------------------*/

.pricing-item {
    background-color: #F8F5F3;
    padding: 45px;
    border-radius: 8px;
}

@media only screen and (max-width: 767px) {
    .pricing-item {
        padding: 30px 20px;
    }
}

.pricing-item .title {
    font-size: 28px;
    font-weight: 600;
}

.pricing-item .pricing-offer {
    font-size: 16px;
    font-weight: 400;
}

.pricing-item .price {
    font-family: "NewYork", sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--cp-color-border-1);
}

.pricing-item .pricing-list {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-item .pricing-list li {
    display: flex;
    align-items: center;
    line-height: 1;
}

.pricing-item .pricing-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

.pricing-item .pricing-list li i {
    color: var(--cp-color-heading-primary);
    width: 25px;
}

.pricing-item .pricing-list li.cross-icon i {
    color: var(--cp-color-heading-primary);
}

.pricing-item.active {
    background-color: var(--cp-color-bg-1);
}

.pricing-item.active .pricing-list li i {
    color: var(--cp-color-common-white);
}

.pricing-item.active .pricing-btn .cp-primary-btn:hover:before {
    background-color: var(--cp-color-common-white);
}

.pricing-item.active .pricing-btn .cp-primary-btn:hover .btn-text .btn-text-2 {
    color: var(--cp-color-heading-primary);
}


/* !END: Pricing CSS */


/**----------------------------------------
    START: FAQ CSS
----------------------------------------*/

.faq-content .faq-accordion .accordion-item {
    border: none;
    border-radius: 8px;
    border: 1px solid rgba(179, 192, 202, 0.4);
}

.faq-content .faq-accordion .accordion-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.faq-content .faq-accordion .accordion-item .accordion-button {
    background-color: #F8F5F3;
    border: 1px solid rgba(179, 192, 202, 0.4);
    color: var(--cp-color-heading-primary);
    border: none;
    box-shadow: none;
    font-size: 24px;
    font-weight: 600;
    padding-left: 24px;
    border-bottom: 1px solid transparent;
}

@media only screen and (max-width: 767px) {
    .faq-content .faq-accordion .accordion-item .accordion-button {
        font-size: 18px;
        padding-left: 20px;
    }
}

.faq-content .faq-accordion .accordion-item .accordion-button:after {
    color: var(--cp-color-heading-primary);
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-weight: 700;
    content: "+";
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
    border-bottom: 1px solid rgba(179, 192, 202, 0.4);
}

.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed):after {
    color: var(--cp-color-text-black);
    content: "-";
    transform: rotate(0);
}

.faq-content .faq-accordion .accordion-item .accordion-body {
    background-color: #F8F5F3;
    color: var(--cp-color-heading-primary);
    font-size: 18px;
    font-weight: 400;
    padding: 15px 30px 20px 24px;
}

@media only screen and (max-width: 767px) {
    .faq-content .faq-accordion .accordion-item .accordion-body {
        font-size: 14px;
        padding-left: 20px;
    }
}


/* !END: FAQ CSS */


/**----------------------------------------
    START: Promo CSS
----------------------------------------*/

@media (max-width: 1199px) {
    .promo-left-content {
        margin-bottom: 40px;
    }
}

.promo-left-content .promo-left-inner {
    margin-bottom: 230px;
}

@media (max-width: 1199px) {
    .promo-left-content .promo-left-inner {
        margin-bottom: 30px;
    }
}

.promo-left-content .promo-left-inner .hero-author-list {
    display: flex;
    align-items: center;
}

.promo-left-content .promo-left-inner .hero-author-list li {
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--cp-color-common-white);
}

.promo-left-content .promo-left-inner .hero-author-list li:not(:first-of-type) {
    margin-left: -20px;
}

.promo-left-content .promo-left-inner .hero-author-list li.icon {
    background-color: var(--cp-color-theme-primary);
}

.promo-left-content .promo-left-inner .hero-author-list li.icon i {
    color: var(--cp-color-heading-primary);
}

.promo-left-content .promo-left-inner .desc {
    font-family: var(--cp-ff-heading);
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}

.promo-left-content .promo-video-box {
    max-width: 189px;
    width: 100%;
    height: 189px;
    position: relative;
}

.promo-left-content .promo-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-left-content .promo-video-box .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.promo-left-content .promo-video-box .play-btn a {
    background-color: var(--cp-color-common-white);
    color: var(--cp-color-heading-primary);
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.promo-left-content .promo-video-box .play-btn a:hover {
    background-color: var(--cp-color-theme-primary);
}

.promo-item {
    background-color: #F8F5F3;
    padding: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1399px) {
    .promo-item {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .promo-item {
        padding-top: 0;
    }
}

.promo-item .icon {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-heading-primary);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.promo-item .title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

@media (max-width: 1399px) {
    .promo-item .title {
        font-size: 20px;
    }
}

.promo-item p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 1399px) {
    .promo-item p {
        font-size: 16px;
    }
}

.promo-left-content-2 .promo-img-2 {
    max-width: 800px;
    width: 100%;
    height: 320px;
}

.promo-left-content-2 .promo-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-item-wrap {
    margin-top: 30px;
}

@media only screen and (max-width: 992px) {
    .promo-item-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .promo-item-wrap {
        grid-template-columns: 1fr;
    }
}

.promo-item-wrap .promo-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-gap: 20px;
    border: 1px solid #D9E4E3;
    padding: 30px;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .promo-item-wrap .promo-item {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.promo-item-wrap .promo-item:not(:last-of-type) {
    margin-bottom: 20px;
}

@media only screen and (max-width: 992px) {
    .promo-item-wrap .promo-item:not(:last-of-type) {
        margin-bottom: 0;
    }
}

.promo-item-wrap .promo-item .title {
    font-size: 24px;
    font-weight: 600;
    text-transform: inherit;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.promo-item-wrap .promo-item p {
    color: #335872;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.promo-item-wrap .promo-item:hover {
    background-color: var(--cp-color-heading-primary);
}

.promo-item-wrap .promo-item:hover .content .title {
    color: var(--cp-color-common-white);
}

.promo-item-wrap .promo-item:hover .content p {
    color: #B3C0CA;
}


/* !END: Promo CSS */


/**----------------------------------------
START: Blog CSS
----------------------------------------*/

.blog-top .blog-top-btn .cp-primary-btn {
    background-color: var(--cp-color-heading-primary);
}

.blog-top .blog-top-btn .cp-primary-btn:before {
    background-color: var(--cp-color-theme-primary);
}

.blog-top .blog-top-btn .cp-primary-btn .btn-text .btn-text-1 {
    color: var(--cp-color-common-white);
}

.blog-top .blog-top-btn .cp-primary-btn:hover .btn-text .btn-text-2 {
    color: var(--cp-color-heading-primary);
}

.post-card .post-thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
}

.post-card .post-thumb:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.post-card .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.post-card .post-content .title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    .post-card .post-content .title {
        font-size: 18px;
    }
}

.post-card .post-content .title a {
    background: linear-gradient(var(--cp-color-heading-primary) 0%, var(--cp-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.post-card .post-content .title a:hover {
    color: var(--cp-color-heading-primary);
    background-size: 100% 2px;
}

.post-card:hover .post-thumb:after {
    left: 0;
    right: 0;
    opacity: 0;
}

.post-card:hover .post-thumb img {
    transform: scale(1.04) rotate(0deg);
}

.post-card-3 .post-content .title {
    text-transform: inherit;
}

.post-meta {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    row-gap: 10px;
}

.post-meta li {
    font-family: var(--cp-ff-heading);
    color: var(--cp-color-heading-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    line-height: 1;
}

.post-meta li i {
    font-size: 14px;
}

.post-meta li:not(:last-of-type) {
    margin-right: 15px;
}

.post-meta li a:hover {
    color: var(--cp-color-theme-primary);
}

@media only screen and (max-width: 767px) {
    .post-meta li {
        font-size: 12px;
    }
}

.post-meta li.category-text {
    font-family: var(--cp-ff-heading);
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #B3C0CA;
    border-radius: 100px;
}

.post-card-wrap>div:not(:last-of-type) {
    margin-bottom: 30px;
}

.blog-left-content p {
    color: #335872;
    font-size: 22px;
    font-weight: 400;
}

.blog-left-content .blog-btn .cp-primary-btn {
    background-color: var(--cp-color-heading-primary);
}

.blog-left-content .blog-btn .cp-primary-btn:before {
    background-color: var(--cp-color-theme-primary);
}

.blog-left-content .blog-btn .cp-primary-btn .btn-text .btn-text-1 {
    color: var(--cp-color-common-white);
}

.post-card-2 .post-thumb {
    height: 400px;
}

.post-card-2 .post-content .title {
    text-transform: capitalize;
    font-size: 28px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .post-card-2 .post-content .title {
        font-size: 24px;
    }
}

.post-card-2 .post-content .title span {
    font-family: "NewYork", sans-serif;
    font-weight: 400;
}

@media only screen and (max-width: 992px) {
    .post-inner-card-wrap {
        margin-bottom: 50px;
    }
}

.inner-post:not(:last-of-type) {
    margin-bottom: 40px;
}

.inner-post .post-thumb {
    height: 450px;
    margin-bottom: 30px;
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .inner-post .post-thumb {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .inner-post .post-thumb {
        height: 350px;
    }
}

.inner-post .post-content .post-meta {
    margin-bottom: 25px;
}

.inner-post .post-content .title {
    font-size: 40px;
    font-weight: 600;
    text-transform: inherit;
}

@media only screen and (max-width: 767px) {
    .inner-post .post-content .title {
        font-size: 24px;
    }
}

.inner-post .post-content .title span {
    font-family: "NewYork", sans-serif;
    font-weight: 200;
}

.inner-post .post-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #335872;
}

.pagination-wrap {
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 10px;
}

.pagination-wrap li a {
    background-color: transparent;
    color: var(--cp-color-common-white);
    font-weight: 700;
    height: 50px;
    width: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1px solid var(--cp-color-border-1);
}

.pagination-wrap li a:hover {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-common-white);
    border: 1px solid var(--cp-color-theme-primary);
}

.pagination-wrap li .active {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-common-white);
    border: 1px solid var(--cp-color-theme-primary);
}


/* !END: Theme Blog CSS */


/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/

.page-header {
    background-color: var(--cp-color-bg-1);
    position: relative;
    z-index: 1;
}

.page-header .page-header-content {
    padding: 220px 0 120px 0;
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 992px) {
    .page-header .page-header-content {
        padding: 100px 0 100px 0;
    }
}

.page-header .page-header-content .title {
    font-family: var(--cp-ff-heading);
    color: var(--cp-color-common-white);
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .page-header .page-header-content .title {
        line-height: 1.3em;
    }
}

@media only screen and (max-width: 992px) {
    .page-header .page-header-content .title {
        font-size: 48px;
        line-height: 1;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .page-header .page-header-content .title {
        font-size: 38px;
        line-height: 1;
        margin-bottom: 10px;
    }
}

.page-header .page-header-content .title span {
    font-family: "NewYork", sans-serif;
    font-weight: 400;
}

.page-header .page-header-content .sub-title {
    font-family: var(--cp-ff-heading);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .page-header .page-header-content .sub-title {
        font-size: 15px;
    }
}

.page-header .page-header-content .sub-title .home {
    color: #FEFEFE;
    position: relative;
    padding-right: 20px;
    margin-right: 10px;
}

.page-header .page-header-content .sub-title .home:hover {
    color: var(--cp-color-theme-primary);
}

.page-header .page-header-content .sub-title .home:before {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 13px;
    font-weight: 700;
    content: "-";
    color: var(--cp-color-common-white);
    position: absolute;
    top: 60%;
    right: 3px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .page-header .page-header-content .sub-title a {
        line-height: 2;
    }
}

.page-header .page-header-content .inner-page {
    color: var(--cp-color-theme-primary);
    cursor: inherit;
}


/* !END: Page Header CSS */


/**----------------------------------------
START: Contact CSS
----------------------------------------*/

.contact-form {
    background-color: #F8F5F3;
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    padding: 45px;
}

@media only screen and (max-width: 767px) {
    .contact-form {
        padding: 30px 20px;
    }
}

.contact-form .contact-form-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form .form-item .form-control {
    background-color: var(--cp-color-common-white);
    color: var(--cp-color-heading-primary);
    border: none;
    box-shadow: none;
    padding: 16px 25px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.contact-form .form-item .form-control::-webkit-input-placeholder {
    color: var(--cp-color-heading-primary);
}

.contact-form .form-item .form-control:-moz-placeholder {
    color: var(--cp-color-heading-primary);
}

.contact-form .form-item .form-control::-moz-placeholder {
    color: var(--cp-color-heading-primary);
}

.contact-form .form-item .form-control:-ms-input-placeholder {
    color: var(--cp-color-heading-primary);
}

.contact-form .submit-btn {
    margin-top: 20px;
}

.contact-content {
    padding-left: 70px;
}

@media (max-width: 1199px) {
    .contact-content {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .contact-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

.contact-content .section-heading .section-title {
    font-size: 46px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .contact-content .section-heading .section-title {
        font-size: 28px;
    }
}

.contact-content p {
    margin-bottom: 35px;
}

.contact-content .contact-list {
    list-style: none;
}

.contact-content .contact-list li {
    color: var(--cp-color-heading-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.contact-content .contact-list li:not(:last-of-type) {
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .contact-content .contact-list li {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.4;
    }
}

.contact-content .contact-list li a {
    color: var(--cp-color-heading-primary);
}

.contact-content .contact-social-list {
    margin-top: 45px;
}

.contact-content .contact-social-list li {
    display: inline-flex;
}

.contact-content .contact-social-list li:not(:last-of-type) {
    margin-right: 8px;
}

.contact-content .contact-social-list li a {
    color: var(--cp-color-heading-primary);
    border: 1px solid #D9E4E3;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
}

.contact-content .contact-social-list li a:hover {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-heading-primary);
}

.map-wrapper iframe {
    border-radius: 16px;
}


/* !END: Theme Contact CSS */


/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/

#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
    display: none;
}

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

.sidebar-area:before {
    background-color: var(--cp-color-heading-primary);
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

.sidebar-trigger {
    display: block;
}

.sidebar-area {
    background-color: var(--cp-color-common-white);
    border-left: 1px solid #002E4F;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    width: 450px;
    height: 100%;
    z-index: 99;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    padding: 60px 40px;
    padding-top: 34px;
}

.open-sidebar .sidebar-area {
    right: 0;
    visibility: visible;
    transform: translate(0);
}

.sidebar-trigger.close {
    position: absolute;
    right: 30px;
    top: 35px;
    color: var(--grey-color);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar-trigger.close:hover {
    color: var(--cp-color-theme-primary);
}

.sidebar-trigger.close svg {
    fill: currentColor;
    stroke: none;
    width: 20px;
    height: 20px;
}

.sidebar-content .site-logo {
    margin-bottom: 40px;
}

.sidebar-content .site-logo img {
    max-width: 200px;
}

.sidebar-content .sidebar-info li {
    font-size: 18px;
}

.sidebar-content .sidebar-social li {
    display: inline-block;
    margin: 0 3px;
    padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
    display: inline-block;
    border: 1px solid var(--border-1);
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sidebar-content .sidebar-social li a:after {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 59%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
    border: 1px solid var(--primary-color);
    color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
    transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
    margin: 50px 0 20px 0;
}


/*Scrollbar Style*/

.sidebar-area::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #ccc;
}

.sidebar-area::selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area-webkit-::selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area::-moz-selection {
    background-color: #999;
    color: #fff;
}

#sidebar-overlay {
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: all 0s ease-in-out;
    width: calc(100% - 400px);
    z-index: -1;
}

.open-sidebar #sidebar-overlay {
    opacity: 1;
    z-index: 1002;
    transition: all 0.6s ease-in-out;
    transition-delay: 0.3s;
}

@media (max-width: 992px) {
    .sidebar-content .list-post-area.list-2 {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
    .sidebar-area {
        width: 400px;
        padding: 60px 30px;
        justify-content: center;
    }
    .side-menu-logo {
        margin-bottom: 50px;
    }
    .side-menu-wrap {
        margin-bottom: 70px;
    }
    .side-menu-header h3 {
        display: none;
    }
    .side-menu-list li a {
        font-size: 14px;
    }
    .side-menu-list li p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .sidebar-area {
        width: 320px;
        padding: 60px 20px 60px 20px;
    }
    .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
        height: 90px;
        width: 90px;
    }
    .sidebar-content .list-post-area.list-2 .list-post-card {
        grid-template-columns: 90px 1fr;
    }
}

.side-menu-logo {
    max-width: 150px;
}

.side-menu-about {
    margin: 75px 0 60px 0;
}

.side-menu-about p {
    font-size: 14px;
}

.side-menu-about .cp-primary-btn {
    background-color: var(--cp-color-heading-primary);
}

.side-menu-about .cp-primary-btn:before {
    background-color: var(--cp-color-theme-primary);
}

.side-menu-about .cp-primary-btn .btn-text .btn-text-1 {
    color: var(--cp-color-common-white);
}

.side-menu-about p {
    font-size: 15px;
    margin: 25px 0;
}

.side-menu-header h3 {
    font-size: 30px;
    font-weight: 600px;
    line-height: 1;
    font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
    margin-bottom: 20px;
}

.side-menu-about .cp-primary-btn:hover .btn-text .btn-text-2 {
    color: var(--cp-color-heading-primary);
}

.side-menu-list {
    margin: 25px 0 35px 0;
}

.side-menu-list li {
    display: flex;
    align-items: center;
}

.side-menu-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

.side-menu-list li i {
    background-color: var(--cp-color-theme-primary);
    font-size: 12px;
    color: var(--cp-color-text-black);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid var(--cp-color-border-1);
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
    background-color: var(--cp-color-heading-primary);
    color: var(--cp-color-common-white);
}

.side-menu-list li p {
    font-size: 15px;
    font-weight: 400;
    padding-left: 10px;
    margin-bottom: 0;
}

.side-menu-list li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--cp-color-text-body);
    padding-left: 10px;
}

.side-menu-list li a:hover {
    color: var(--cp-color-theme-primary);
}

.side-menu-social {
    margin-top: 40px;
    list-style: none;
}

.side-menu-social li {
    display: inline-flex;
}

.side-menu-social li:not(:last-of-type) {
    margin-right: 5px;
}

.side-menu-social li a {
    background-color: var(--cp-color-bg-2);
    font-size: 15px;
    color: var(--cp-color-common-white);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cp-color-border-1);
    border-radius: 50%;
}

.side-menu-social li a:hover {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
}


/* !END: Sidebar CSS */


/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/

.blog-details-img {
    width: 100%;
    height: 450px;
}

.blog-details-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

@media only screen and (max-width: 992px) {
    .blog-details-img {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-details-img {
        height: 300px;
    }
}

@media only screen and (max-width: 992px) {
    .blog-details-content {
        margin-bottom: 40px;
    }
}

.blog-details-content p {
    font-size: 18px;
}

.blog-details-content .details-title {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-details-content .details-title span {
    font-family: "NewYork", sans-serif;
    font-weight: 200;
}

@media only screen and (max-width: 992px) {
    .blog-details-content .details-title {
        font-size: 30px;
    }
}

.blog-details-content .details-title-2 {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-details-content .details-title-2 span {
    font-family: "NewYork", sans-serif;
    font-weight: 200;
}

@media only screen and (max-width: 992px) {
    .blog-details-content .details-title-2 {
        font-size: 30px;
    }
}

.blog-details-content .details-img-wrap {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.blog-details-content .details-img-wrap img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .blog-details-content .details-img-wrap {
        flex-wrap: wrap;
        row-gap: 24px;
    }
}

blockquote {
    background-color: #F8F5F3;
    display: grid;
    grid-template-columns: 64px 1fr;
    padding: 45px;
    align-items: baseline;
    grid-gap: 30px;
    border-radius: 8px;
    border: 1px solid var(--cp-color-border-1);
}

@media only screen and (max-width: 767px) {
    blockquote {
        padding: 30px 20px;
        grid-template-columns: 1fr;
    }
}

blockquote .icon {
    transform: translateY(10px);
}

blockquote .content p {
    color: var(--cp-color-heading-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    blockquote .content p {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

blockquote .content .author {
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
    padding-left: 50px;
    line-height: 1;
}

blockquote .content .author:before {
    background-color: var(--cp-color-heading-primary);
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 30px;
    margin: 40px 0;
}

.tags.blog-tags {
    padding-bottom: 50px;
    margin-bottom: 70px;
    border-bottom: 1px solid #B3C0CA;
}

.tags .tag-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
}

.tags .tag-left .tag-title {
    font-family: var(--cp-ff-heading);
    font-size: 20px;
    font-weight: 600;
    margin-right: 30px;
    display: block;
}

.tags .tag-left .tag-list {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 15px;
}

.tags .tag-left .tag-list li a {
    font-family: var(--cp-ff-heading);
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cp-color-heading-primary);
    padding: 8px 20px;
    border: 1px solid var(--cp-color-border-1);
    border-radius: 100px;
    border: 1px solid #B3C0CA;
}

.tags .tag-left .tag-list li a:hover {
    background-color: var(--cp-color-heading-primary);
    color: var(--cp-color-common-white);
    border: 1px solid var(--cp-color-heading-primary);
}

.tags .social-list-wrap {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.tags .social-list-wrap .follow {
    font-family: var(--cp-ff-heading);
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 0;
}

.tags .social-list-wrap .social-list li {
    display: inline-flex;
}

.tags .social-list-wrap .social-list li:not(:last-of-type) {
    margin-right: 5px;
}

.tags .social-list-wrap .social-list li a {
    font-size: 14px;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #D9E4E3;
}

.tags .social-list-wrap .social-list li a:hover {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-heading-primary);
    border-color: var(--cp-color-theme-primary);
}

.blog-author-wrap {
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-author-item {
    background-color: #F8F5F3;
    border: 1px solid var(--cp-color-border-1);
    padding: 40px;
    display: grid;
    align-items: center;
    grid-template-columns: 150px 1fr;
    grid-gap: 35px;
}

@media only screen and (max-width: 767px) {
    .blog-author-item {
        grid-template-columns: 1fr;
        grid-gap: 25px;
        padding: 25px;
    }
}

.blog-author-item .author-img {
    max-width: 150px;
    height: 150px;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .blog-author-item .author-img {
        max-width: 100%;
    }
}

.blog-author-item .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.blog-author-item .content .name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-author-item .content p {
    margin-bottom: 25px;
}

.blog-author-item .content .social-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.blog-author-item .content .social-list li a {
    color: var(--cp-color-heading-primary);
    font-size: 15px;
    display: inline-block;
}

.blog-author-item .content .social-list li a:hover {
    color: var(--cp-color-theme-primary);
}

.blog-author-item .content .social-list li:not(:last-of-type) {
    margin-right: 20px;
}

.comments-area .section-heading {
    margin-bottom: 40px;
}

.comments-area .section-heading .section-title {
    font-size: 28px;
    text-transform: uppercase;
}

.comments-area .section-heading .section-title span {
    font-size: 28px;
    font-weight: 200;
}

.comment-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid #B3C0CA;
}

@media only screen and (max-width: 767px) {
    .comment-item {
        grid-template-columns: 1fr;
    }
}

.comment-item:not(:last-of-type) {
    margin-bottom: 30px;
}

.comment-item .reply {
    font-family: var(--cp-ff-body);
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 16px;
    font-style: italic;
    font-weight: 600;
    text-transform: uppercase;
}

.comment-item .comment-thumb img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    object-position: top;
}

.comment-item .comment-info .comment-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}

.comment-item .comment-info .comment-top .author {
    color: var(--cp-color-heading-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.comment-item .comment-info .comment-top .comments-meta span {
    color: var(--cp-color-heading-primary);
    font-size: 14px;
    font-weight: 500;
}

.comment-item .comment-info .author {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.comment-item .comment-info p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.comment-item.item-2 {
    margin-left: 84px;
}

@media only screen and (max-width: 767px) {
    .comment-item.item-2 {
        margin-left: 0;
    }
}

.blog-contact-form .title {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.blog-contact-form .title span {
    font-family: "NewYork", sans-serif;
    font-weight: 200;
}

.blog-contact-form p {
    margin-bottom: 30px;
}

.blog-contact-form .request-form .form-item {
    position: relative;
}

.blog-contact-form .request-form .form-item .form-control {
    background-color: #F8F5F3;
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
    box-shadow: none;
    border: none;
    padding: 16.5px 55px 16.5px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    width: 100%;
    border: 1px solid var(--cp-color-border-1);
}

.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    font-weight: 400;
}

.blog-contact-form .request-form .form-item .icon {
    color: var(--cp-color-heading-primary);
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.blog-contact-form .request-form .form-item.message-item .icon {
    top: 25px;
}

.sidebar-widget {
    background-color: #F8F5F3;
    padding: 30px;
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .sidebar-widget {
        padding: 30px 15px;
    }
}

.sidebar-widget:not(:last-of-type) {
    margin-bottom: 24px;
}

.sidebar-widget .search-form {
    position: relative;
}

.sidebar-widget .search-form .form-control {
    background-color: var(--cp-color-common-white);
    color: var(--cp-color-heading-primary);
    font-size: 16px;
    border: none;
    border-radius: 100px;
    box-shadow: none;
    padding: 16px 0;
    padding-left: 25px;
    padding-right: 60px;
    overflow: hidden;
}

.sidebar-widget .search-form .form-control::-webkit-input-placeholder {
    color: var(--cp-color-heading-primary);
    font-size: 16px;
}

.sidebar-widget .search-form .form-control:-moz-placeholder {
    color: var(--cp-color-heading-primary);
    font-size: 16px;
}

.sidebar-widget .search-form .form-control::-moz-placeholder {
    color: var(--cp-color-heading-primary);
    font-size: 16px;
}

.sidebar-widget .search-form .form-control:-ms-input-placeholder {
    color: var(--cp-color-heading-primary);
    font-size: 16px;
}

.sidebar-widget .search-form .search-btn {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
    font-size: 15px;
    height: 48px;
    width: 48px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    border-radius: 100px;
}

.sidebar-widget .widget-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-widget .widget-title:before {
    background-color: var(--cp-color-heading-primary);
    content: "";
    height: 17px;
    width: 8px;
    position: absolute;
    top: 50%;
    left: -28px;
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    .sidebar-widget .widget-title:before {
        display: none;
    }
}

.sidebar-widget .category-list {
    list-style: none;
}

.sidebar-widget .category-list li:not(:last-of-type) {
    margin-bottom: 8px;
}

.sidebar-widget .category-list li a {
    font-family: var(--cp-ff-heading);
    background-color: var(--cp-color-common-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 100px;
    overflow: hidden;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .sidebar-widget .category-list li a {
        padding: 15px;
        font-size: 16px;
    }
}

.sidebar-widget .category-list li a i {
    color: var(--cp-color-heading-primary);
}

.sidebar-widget .category-list li a:hover {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
}

.sidebar-widget .category-list li a:hover i {
    color: var(--cp-color-text-black);
}

.sidebar-widget .blog-gallery-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 10px;
}

@media (max-width: 1399px) {
    .sidebar-widget .blog-gallery-wrap {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 992px) {
    .sidebar-widget .blog-gallery-wrap {
        display: flex;
        align-items: center;
        column-gap: 10px;
        row-gap: 10px;
        flex-wrap: wrap;
    }
}

.sidebar-widget .blog-gallery-wrap .gallary-img {
    height: 100px;
    width: 100px;
}

.sidebar-widget .tags {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    row-gap: 20px;
    list-style: none;
    column-gap: 0;
    margin: 0;
}

.sidebar-widget .tags li:not(:last-of-type) {
    margin-right: 10px;
}

.sidebar-widget .tags li a {
    background-color: var(--cp-color-common-white);
    font-family: #E7E7E7;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 20px;
    border: 1px solid #B3C0CA;
    border-radius: 100px;
}

.sidebar-widget .tags li a:hover {
    background-color: var(--cp-color-heading-primary);
    color: var(--cp-color-common-white);
    border: 1px solid var(--cp-color-heading-primary);
}

.sidebar-widget .sidebar-post:not(:last-of-type) {
    margin-bottom: 20px;
}

.sidebar-widget .sidebar-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sidebar-widget .sidebar-post .post-content .post-meta {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 5px;
}

.sidebar-widget .sidebar-post .post-content .post-meta li {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.sidebar-widget .sidebar-post .post-content .post-meta li.category-text {
    background-color: var(--cp-color-common-white);
    font-family: var(--cp-ff-heading);
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #B3C0CA;
    border-radius: 100px;
}

.sidebar-widget .sidebar-post .post-content .title {
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
    margin: 15px 0;
}

@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .title {
        font-size: 16px;
    }
}

.sidebar-widget .sidebar-post .post-content .title a {
    background: linear-gradient(var(--cp-color-heading-primary) 0%, var(--cp-color-heading-primary) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sidebar-widget .sidebar-post .post-content .title a:hover {
    color: var(--cp-color-heading-primary);
    background-size: 100% 2px;
}


/* !END: Theme Blog Details CSS */


/**----------------------------------------
START: Footer CSS
----------------------------------------*/

.footer-section {
    background-color: var(--cp-color-bg-1);
    position: relative;
    z-index: 1;
}

.footer-text .footer-header {
    color: var(--cp-color-common-white);
    font-size: 180px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    padding-top: 60px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--cp-color-border-1);
    position: relative;
}

@media (max-width: 1199px) {
    .footer-text .footer-header {
        font-size: 120px;
    }
}

@media only screen and (max-width: 992px) {
    .footer-text .footer-header {
        font-size: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-text .footer-header {
        font-size: 40px;
    }
}

.footer-text .footer-header .contact-btn {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
    font-size: 30px;
    height: 100px;
    width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-text .footer-header .contact-btn i {
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-text .footer-header .contact-btn:hover i {
    transform: rotate(0);
}

.footer-text .footer-header:hover .contact-btn {
    transform: translate(-50%, -50%) scale(1);
}

.footer-wrap {
    padding: 100px 0;
}

@media only screen and (max-width: 992px) {
    .footer-wrap {
        padding: 80px 0 0 0;
    }
}

@media only screen and (max-width: 992px) {
    .footer-widget {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-widget {
        margin-bottom: 50px;
    }
}

.footer-widget .widget-header {
    margin-bottom: 30px;
}

.footer-widget .widget-header .footer-logo {
    max-width: 170px;
}

.footer-widget .widget-header .widget-title {
    color: var(--cp-color-common-white);
    font-size: 24px;
    font-weight: 500;
    position: relative;
}

.footer-widget p {
    color: #F8F5F3;
    font-size: 18px;
}

.footer-widget .title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 30px;
    text-transform: uppercase;
}

.footer-widget .title span {
    color: var(--cp-color-text-body);
    display: block;
    margin-top: 10px;
    text-transform: inherit;
    font-weight: 400;
}

.footer-widget .footer-list {
    list-style: none;
}

.footer-widget .footer-list li {
    color: #F8F5F3;
}

.footer-widget .footer-list li a {
    font-family: var(--cp-ff-body);
    color: #F8F5F3;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.footer-widget .footer-list li a:hover {
    color: var(--cp-color-theme-primary);
}

.footer-widget .footer-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

.footer-widget .footer-form {
    position: relative;
    margin-top: 30px;
}

.footer-widget .footer-form .form-control {
    background-color: #0D3B5C;
    padding: 16px 64px 16px 25px;
    color: #D9E4E3;
    box-shadow: none;
    border: none;
    border-radius: 100px;
}

.footer-widget .footer-form .form-control::-webkit-input-placeholder {
    color: #D9E4E3;
}

.footer-widget .footer-form .form-control:-moz-placeholder {
    color: #D9E4E3;
}

.footer-widget .footer-form .form-control::-moz-placeholder {
    color: #D9E4E3;
}

.footer-widget .footer-form .form-control:-ms-input-placeholder {
    color: #D9E4E3;
}

.footer-widget .footer-form .submit {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-text-black);
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50%;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-widget .address-list {
    list-style: none;
    margin-bottom: 30px;
}

.footer-widget .address-list li {
    font-family: var(--cp-ff-body);
    font-size: 16px;
    color: #E7E7E7;
    display: flex;
    column-gap: 10px;
}

.footer-widget .address-list li:not(:last-of-type) {
    margin-bottom: 15px;
}

.footer-widget .address-list li i {
    color: var(--cp-color-theme-primary);
    line-height: 1;
    margin-top: 6px;
}

.footer-widget .address-list li a {
    border-bottom: 1px solid transparent;
}

.footer-widget .address-list li a:hover {
    color: var(--cp-color-theme-primary);
    border-bottom: 1px solid var(--cp-color-theme-primary);
}

.footer-widget .social-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.footer-widget .social-list li a {
    background-color: var(--cp-color-common-white);
    color: var(--cp-color-heading-primary);
    font-size: 14px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-widget .social-list li a:hover {
    background-color: var(--cp-color-theme-primary);
}

.footer-widget .social-list li:not(:last-of-type) {
    margin-right: 8px;
}

.footer-widget .form-check {
    margin-top: 30px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.footer-widget .form-check .form-check-input {
    background-color: var(--cp-color-theme-primary);
    border: none;
    box-shadow: none;
    height: 17px;
    width: 17px;
    margin-top: -1px;
    cursor: pointer;
}

.footer-widget .form-check .form-check-input:checked[type=checkbox] {
    box-shadow: none;
}

.footer-widget .form-check .form-check-label {
    color: #F8F5F3;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.footer-widget.footer-col-2 {
    padding-left: 70px;
}

@media only screen and (max-width: 992px) {
    .footer-widget.footer-col-2 {
        padding-left: 0;
    }
}

.footer-widget.footer-col-2 .footer-list li a {
    position: relative;
}

.footer-widget.footer-col-2 .footer-list li a:before {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-weight: 700;
    content: "\f054";
    color: var(--cp-color-text-body);
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

.footer-widget.footer-col-2 .footer-list li a:hover {
    visibility: visible;
    opacity: 1;
    padding-left: 15px;
}

.footer-widget.footer-col-2 .footer-list li a:hover:before {
    color: var(--cp-color-theme-primary);
    visibility: visible;
    opacity: 1;
}

.footer-widget.widget-3 {
    padding-left: 30px;
}

@media only screen and (max-width: 992px) {
    .footer-widget.widget-3 {
        padding-left: 0;
    }
}

.copyright-area {
    border-top: 1px solid var(--cp-color-border-1);
    padding: 40px 0;
}

@media only screen and (max-width: 992px) {
    .copyright-area {
        padding: 40px 0;
    }
}

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

@media only screen and (max-width: 992px) {
    .copyright-content {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .copyright-content {
        row-gap: 20px;
    }
}

.copyright-content p {
    color: #F8F5F3;
    font-size: 16px;
    font-family: var(--cp-ff-body);
    margin: 0;
}

.copyright-content p span {
    color: var(--cp-color-theme-primary);
}

@media only screen and (max-width: 767px) {
    .copyright-content p {
        text-align: center;
    }
}

.copyright-content .social-list {
    display: flex;
    align-items: center;
    justify-content: end;
    list-style: none;
}

@media only screen and (max-width: 767px) {
    .copyright-content .social-list {
        justify-content: center;
    }
}

.copyright-content .social-list li a {
    background-color: var(--cp-color-border-1);
    color: var(--cp-color-common-white);
    font-size: 13px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-content .social-list li a:hover {
    background-color: var(--cp-color-theme-primary);
    color: var(--cp-color-common-white);
}

.copyright-content .social-list li:not(:last-of-type) {
    margin-right: 10px;
}

.copyright-content .copyright-list {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: end;
}

@media only screen and (max-width: 767px) {
    .copyright-content .copyright-list {
        justify-content: center;
    }
}

.copyright-content .copyright-list a {
    font-family: var(--cp-ff-body);
    color: var(--cp-color-common-white);
    font-size: 16px;
    font-weight: 400;
}

.copyright-content .copyright-list a:hover {
    color: var(--cp-color-theme-primary);
}


/* !END: Theme Footer CSS */


/*# sourceMappingURL=main.css.map */