@charset "UTF-8";

/*--------------------------------
     =====Table Of Contents====

1.  General Styles
2.  Back To Top Button CSS
3.  Preloader CSS
4.  Button & Link CSS
5.  Section Title, Overlay & Shape CSS
6.  Pagination CSS
7.  Breadcrumb CSS
8.  Hero CSS
----------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
    --bodyFont: "Catamaran", sans-serif;
    --primaryColor: #616AF9;
    --secondaryColor: linear-gradient(135deg, #55E6A5 0%, #85EF95 100%);
    --optionalColor: #55E6A5;
    --titleColor: #04091E;
    --paraColor: #555;
    --bgColor: #F7F7F9;
    --grayColor: #F4F8FC;
    --blackColor: #190B32;
    --whiteColor: #ffffff;
    --offwhiteColor: #D6D6D6;
    --yellowColor: #FFCB36;
    --fontSize: 16px;
    --transition: all ease .5s;
    --transitionTwo: all ease .9s;
}

/*---------------------------------
            General Styles
-----------------------------------*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.pb-12px{
    padding-bottom: 12px;
}

:focus,
button:focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    box-shadow: none;
}

a,
button,
input[type=submit] {
    cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input,
textarea,
select {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 12px 15px 12px;
    width: 100%;
    font-size: 16px;
}

input {
    height: 50px;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../img/down-arrow.webp);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(100% - 15px) 50%;
}

a {
    text-transform: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--paraColor);
}

a:hover,
a :focus {
    text-decoration: none;
    box-shadow: none;
}

a:focus {
    outline: 0 solid;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--titleColor);
}

body {
    font-size: 16px;
    font-family: var(--bodyFont);
    color: var(--paraColor);
    font-weight: 400;
    line-height: 26px;
}

p {
    font-size: 16px;
    line-height: 26px;
    color: var(--paraColor);
    font-family: var(--bodyFont);
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../img/down-arrow.webp);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(100% - 15px) 50%;
}

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

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

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

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

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

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

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

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

#message {
    padding: 0;
    margin: 0;
}

.help-block {
    color: #E31C25;
}

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

.list-style li {
    list-style: none;
}

/*---------------------------------
     Back To Top Button CSS
-----------------------------------*/

@keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px var(--primaryColor);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: "\ea76";
    font-family: remixicon !important;
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--primaryColor);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primaryColor);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/*---------------------------------
   Preloader Area CSS
----------------------------------*/

.preloader-area {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    position: fixed;
    text-align: center;
    background-color: var(--whiteColor);
    overflow-x: hidden;
}

.preloader-area .loader {
    transform: translateY(-50%);
    position: absolute;
    right: 0;
    top: 50%;
    left: 0;
}

.preloader-area .waviy {
    margin-top: 20px;
    position: relative;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
}

.preloader-area .waviy span {
    position: relative;
    animation-delay: 0.1s;
    display: inline-block;
    color: var(--blackColor);
    animation: waviy 1s infinite;
}

.preloader-area .waviy span:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader-area .waviy span:nth-child(3) {
    animation-delay: 0.3s;
}

.preloader-area .waviy span:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes waviy {
    0%,
    40%,
    100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-20px);
    }
}

.loader-wrapper {
    --line-width: 5px;
    --curtain-color: #f1faee;
    --outer-line-color: #a8dadc;
    --middle-line-color: #457b9d;
    --inner-line-color: #1d3557;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    /*   transform: translate(-50%, -50%); */
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--outer-line-color);
    border-radius: 100%;
    animation: spin 2s linear infinite;
    z-index: 1001;
}

.loader:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--inner-line-color);
    border-radius: 100%;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--middle-line-color);
    border-radius: 100%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background: var(--bgColor);
    width: 51%;
    height: 100%;
    z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
    left: 0;
}

.loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded Styles */

.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

/*---------------------------------
    Back To Top CSS
----------------------------------*/

#backtotop {
    opacity: 0;
    right: 20px;
    z-index: 99;
    width: 50px;
    bottom: 20px;
    height: 50px;
    font-size: 25px;
    transition: 0.5s;
    line-height: 49px;
    background-color: var(--primaryColor);
    animation: border-transform 10s linear infinite alternate forwards;
}

#backtotop i {
    color: var(--whiteColor);
}

#backtotop:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

@keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

/*---------------------------------
    Button, Link & Animation CSS
----------------------------------*/

.btn-one,
.btn-two,
.btn-three {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: none;
    line-height: 26px;
    padding: 12px 30px;
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
}

.btn-one i,
.btn-two i,
.btn-three i {
    position: relative;
    top: 5px;
    display: inline-block;
    font-size: 20px;
    font-weight: 300;
    line-height: 0.8;
    margin-left: 12px;
    transition: var(--transition);
}

.btn-one img,
.btn-two img,
.btn-three img {
    position: relative;
    top: -1px;
    transition: var(--transition);
    margin-left: 7px;
}

.btn-one:before,
.btn-two:before,
.btn-three:before {
    position: absolute;
    top: 0px;
    left: 0%;
    content: "";
    width: 100%;
    height: 0%;
    z-index: -1;
    transition: var(--transition);
}

.btn-one:hover:before,
.btn-two:hover:before,
.btn-three:hover:before {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.btn-one {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
    font-weight: 500;
}

.btn-one:before {
    background: var(--secondaryColor);
}

.btn-one:hover {
    color: var(--titleColor);
}

.btn-two {
    color: var(--titleColor);
    background: var(--secondaryColor);
    font-weight: 700;
}

.btn-two:before {
    background-color: var(--primaryColor);
}

.btn-two:hover {
    color: var(--whiteColor);
}

.btn-three {
    color: var(--titleColor);
    background: var(--whiteColor);
}

.btn-three:before {
    background-color: var(--primaryColor);
}

.btn-three:hover {
    color: var(--whiteColor);
}

.link-one,
.link-two,
.link-three {
    display: inline-block;
    position: relative;
    font-weight: 600;
    transition: var(--transition);
}

.link-one:after,
.link-two:after,
.link-three:after {
    position: absolute;
    bottom: 4px;
    left: 0;
    content: "";
    width: 0%;
    height: 1.5px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.link-one:hover:after,
.link-two:hover:after,
.link-three:hover:after {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

.link-one {
    color: var(--titleColor);
}

.link-one:after {
    background-color: var(--titleColor);
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.link-one img {
    margin-left: 5px;
}

.link-one:hover {
    color: var(--primaryColor);
}

.link-one:hover:after {
    background-color: var(--primaryColor);
}

.link-two {
    color: var(--secondaryColor);
}

.link-two:after {
    background-color: var(--secondaryColor);
    visibility: visible;
    opacity: 1;
    width: 100%;
    bottom: 5px;
}

.link-two:hover {
    color: var(--titleColor);
}

.link-two:hover:after {
    width: 50%;
    background-color: var(--titleColor);
}

.link-three {
    color: var(--paraColor);
}

.link-three:after {
    background-color: var(--secondaryColor);
}

.link-three:hover {
    color: var(--secondaryColor);
}

.rotate {
    animation: rotation 20s infinite linear;
}

.bounce {
    animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
    animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
    animation: moveVertical 3000ms infinite ease-in-out;
}

.animationFramesTwo {
    animation: animationFramesTwo 20000ms infinite ease-in-out;
}

.animationFramesThree {
    animation: animationFramesThree 20000ms infinite ease-in-out;
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animationFramesThree {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(-73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(-141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(-83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

/*--------------------------------------
    Section Title,Overlay & Shape CSS
----------------------------------------*/

.section-title span,
.content-title span {
    color: var(--primaryColor);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title h2,
.content-title h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    margin: 0;
}

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

.section-title.style-one span,
.section-title.style-three span,
.content-title.style-one span,
.content-title.style-three span {
    position: relative;
    padding-left: 42px;
    letter-spacing: 1.6px;
}

.section-title.style-one span:before,
.section-title.style-three span:before,
.content-title.style-one span:before,
.content-title.style-three span:before {
    position: absolute;
    top: 11px;
    left: 0;
    content: "";
    width: 30px;
    height: 2px;
}

.section-title.style-one span:before,
.content-title.style-one span:before {
    background-color: var(--primaryColor);
}

.section-title.style-two span,
.content-title.style-two span {
    letter-spacing: 1.6px;
}

.section-title.style-three span:before,
.content-title.style-three span:before {
    background: var(--secondaryColor);
}

.section-subtitle {
    font-size: 16px;
    line-height: 26px;
    color: var(--primaryColor);
    letter-spacing: 1.6px;
}

.bg-f {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ddd;
}

.bg_primary {
    background-color: var(--primaryColor);
}

.bg_secondary {
    background: var(--secondaryColor);
}

.bg_gray {
    background-color: var(--grayColor);
}

.rating li {
    display: inline-block;
}

.rating li i {
    color: var(--yellowColor);
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 110px;
    width: 110px;
    transform: translateX(-50%) translateY(-50%);
    transform-origin: center center;
    border-radius: 50%;
    -ms-box-shadow: 0 0 0 0 rgb(255, 255, 255);
    -o-box-shadow: 0 0 0 0 rgb(255, 255, 255);
    box-shadow: 0 0 0 0 rgb(255, 255, 255);
    animation: ripple 3s infinite;
}

.play-now {
    position: relative;
    height: 110px;
    width: 110px;
    text-align: center;
    background-color: transparent;
    color: var(--whiteColor);
    z-index: 1;
    display: block;
    transform-origin: center center;
    border-radius: 50%;
    margin: 0 auto;
}

.play-now .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.play-now .ripple:after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.social-profile li {
    display: inline-block;
}

.social-profile li:last-child {
    margin-right: 0;
}

.social-profile li a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-profile li a i {
    display: block;
    margin: 0 auto;
    line-height: 0.8;
    transition: var(--transition);
}

.social-profile li a:hover i {
    transform: rotate(360deg);
}

/*-------------------------------
        Pagination  CSS
-------------------------------*/

.page-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.page-nav li {
    margin: 0 4px;
}

.page-nav li:first-child a i {
    left: -2px;
}

.page-nav li:last-child a i {
    right: -2px;
}

.page-nav li a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    text-align: center;
    color: var(--titleColor);
    background-color: transparent;
    transition: var(--transition);
}

.page-nav li a i {
    font-size: 16px;
    margin: 0 auto;
    position: relative;
    top: 2px;
    transition: var(--transition);
}

.page-nav li a img {
    display: block;
    margin: 0 auto;
    transition: var(--transition);
}

.page-nav li a.active,
.page-nav li a:hover {
    color: var(--whiteColor);
    opacity: 1;
    background-color: var(--primaryColor);
    border-color: transparent;
}

.page-nav li a.active i,
.page-nav li a:hover i {
    color: var(--whiteColor);
}

.page-nav li a.active img,
.page-nav li a:hover img {
    filter: brightness(0) invert(1);
}

/*---------------------------------
       Breadcrumb CSS
-----------------------------------*/

.br-5 {
    background-image: url(../img/breadcrumb/br-5.webp);
}

.br-6 {
    background-image: url(../img/breadcrumb/br-6.webp);
}

.br-7 {
    background-image: url(../img/breadcrumb/br-7.webp);
}

.br-8 {
    background-image: url(../img/breadcrumb/br-8.webp);
}

.br-9 {
    background-image: url(../img/breadcrumb/br-9.webp);
}

.br-10 {
    background-image: url(../img/breadcrumb/br-10.webp);
}

.br-11 {
    background-image: url(../img/breadcrumb/br-11.webp);
}

.br-12 {
    background-image: url(../img/breadcrumb/br-12.webp);
}

.br-13 {
    background-image: url(../img/breadcrumb/br-13.webp);
}

.breadcrumb-wrap {
    padding: 110px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.breadcrumb-wrap .br-shape-one,
.breadcrumb-wrap .br-shape-two {
    position: absolute;
    z-index: 0;
    transform: translateY(-50%);
}

.breadcrumb-wrap .br-shape-one {
    left: 21%;
    top: 50%;
}

.breadcrumb-wrap .br-shape-two {
    top: 50%;
    right: 21%;
}

.breadcrumb-wrap:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 12, 0.98);
    opacity: 0.92;
    z-index: -1;
}

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

.breadcrumb-content h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--whiteColor);
}

.breadcrumb-content .breadcrumb-menu {
    text-align: center;
}

.breadcrumb-content .breadcrumb-menu li {
    display: inline-block;
    position: relative;
    color: var(--whiteColor);
    padding-right: 10px;
    margin-right: 10px;
}

.breadcrumb-content .breadcrumb-menu li:after {
    position: absolute;
    top: 6px;
    right: -4px;
    content: "";
    height: 14px;
    width: 1px;
    background-color: var(--whiteColor);
    transform: rotate(14deg);
}

.breadcrumb-content .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.breadcrumb-content .breadcrumb-menu li:first-child a {
    padding-left: 0;
}

.breadcrumb-content .breadcrumb-menu li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.breadcrumb-content .breadcrumb-menu li:last-child:after {
    display: none;
}

.breadcrumb-content .breadcrumb-menu li a {
    display: inline-block;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    position: relative;
    color: var(--whiteColor);
}

.breadcrumb-content .breadcrumb-menu li a:hover {
    opacity: 1;
    color: var(--primaryColor);
}

.breadcrumb-content .breadcrumb-menu li:last-child {
    color: var(--optionalColor);
}

.breadcrumb-content .breadcrumb-menu li:last-child a:after {
    display: none;
}

/*---------------------------------
       Hero Section CSS
-----------------------------------*/

.hero-wrap.style-one {
    background-image: url(../img/hero/hero-bg-1.webp);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-wrap.style-one:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(12, 12, 12, 0.89);
}

.hero-wrap.style-one .hero-shape-one {
    position: absolute;
    bottom: 20%;
    left: 37%;
    z-index: 0;
}

.hero-wrap.style-one .hero-content {
    padding: 270px 0 135px;
}

.hero-wrap.style-one .hero-content>span {
    position: relative;
    padding-left: 42px;
    letter-spacing: 1.6px;
    font-weight: 500;
    color: var(--whiteColor);
    display: block;
    margin-bottom: 10px;
}

.hero-wrap.style-one .hero-content>span:before {
    position: absolute;
    top: 11px;
    left: 0;
    content: "";
    width: 30px;
    height: 2px;
    background: var(--secondaryColor);
}

.hero-wrap.style-one .hero-content h1 {
    color: var(--whiteColor);
    font-size: 60px;
    font-weight: 800;
    line-height: 70px;
    margin-bottom: 11px;
}

.hero-wrap.style-one .hero-content h1 span {
    display: inline-block;
    border-radius: 50px;
    position: relative;
    top: -10px;
    margin-left: 16px;
}

.hero-wrap.style-one .hero-content h1 span img {
    border-radius: 50px;
}

.hero-wrap.style-one .hero-content p {
    color: var(--whiteColor);
    margin-bottom: 30px;
}

.hero-wrap.style-one .hero-content .hero-btn a:first-child {
    margin-right: 22px;
}

.hero-wrap.style-one .hero-img-wrap {
    position: relative;
    min-height: 100%;
}

.hero-wrap.style-one .hero-img-wrap img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.hero-wrap.style-two {
    background-image: url(../img/hero/hero-bg-shape.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--grayColor);
    position: relative;
    z-index: 1;
    padding: 85px 0 225px;
}

.hero-wrap.style-two .hero-shape-one,
.hero-wrap.style-two .hero-shape-two {
    position: absolute;
}

.hero-wrap.style-two .hero-shape-one {
    top: 0;
    right: 0;
    z-index: -1;
}

.hero-wrap.style-two .hero-shape-two {
    top: 92px;
    right: 60px;
    z-index: 0;
}

.hero-wrap.style-two .hero-content>span {
    position: relative;
    padding-left: 42px;
    letter-spacing: 1.6px;
    font-weight: 700;
    color: var(--primaryColor);
    margin-bottom: 10px;
    display: inline-block;
    letter-spacing: 1.6px;
}

.hero-wrap.style-two .hero-content>span:before {
    position: absolute;
    top: 11px;
    left: 0;
    content: "";
    width: 30px;
    height: 2px;
    background: var(--primaryColor);
}

.hero-wrap.style-two .hero-content h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-wrap.style-two .hero-content p {
    margin-bottom: 32px;
}

.hero-wrap.style-two .hero-content .hero-btn a:first-child {
    margin-right: 22px;
}

.hero-wrap.style-two .hero-img-wrap {
    position: relative;
    z-index: 1;
}

.hero-wrap.style-two .hero-img-wrap .hero-img {
    display: block;
    margin-left: auto;
}

.hero-wrap.style-two .hero-img-wrap .play-now {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 96px;
    width: 96px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-color: var(--whiteColor);
}

.hero-wrap.style-two .hero-img-wrap .play-now i {
    font-size: 44px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
    color: #674DF3;
    position: relative;
    left: 2px;
}

.hero-wrap.style-two .hero-img-wrap .play-now .ripple,
.hero-wrap.style-two .hero-img-wrap .play-now .ripple:before,
.hero-wrap.style-two .hero-img-wrap .play-now .ripple:after {
    height: 96px;
    width: 96px;
}

.hero-wrap.style-three {
    background-image: url(../img/hero/hero-bg-3.webp);
    position: relative;
    z-index: 1;
    padding: 148px 0;
}

.hero-wrap.style-three .hero-shape-one,
.hero-wrap.style-three .hero-shape-two,
.hero-wrap.style-three .hero-shape-three {
    position: absolute;
    z-index: 0;
}

.hero-wrap.style-three .hero-shape-one {
    top: 45.5%;
    left: 0;
}

.hero-wrap.style-three .hero-shape-two {
    top: 19%;
    right: 5%;
}

.hero-wrap.style-three .hero-shape-three {
    bottom: 31%;
    left: 41.7%;
    opacity: 0.3;
}

.hero-wrap.style-three:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(12, 12, 12, 0.93);
}

.hero-wrap.style-three .hero-content>span {
    color: var(--optionalColor);
    font-weight: 600;
    letter-spacing: 1.6px;
    display: block;
    margin: 0 0 10px;
}

.hero-wrap.style-three .hero-content h1,
.hero-wrap.style-three .hero-content p {
    color: var(--whiteColor);
}

.hero-wrap.style-three .hero-content h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-wrap.style-three .hero-content p {
    margin-bottom: 32px;
}

.hero-wrap.style-three .hero-content .hero-btn {
    margin-bottom: 90px;
}

.hero-wrap.style-three .hero-content .hero-btn a:first-child {
    margin-right: 22px;
}

.hero-wrap.style-three .hero-content .counter-card-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-wrap.style-three .hero-content .counter-card-wrap .counter-card {
    width: 33.33%;
}

.hero-wrap.style-three .hero-content .counter-card-wrap .counter-card h2 {
    color: var(--whiteColor);
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin: 0 0 7px;
    letter-spacing: 0.09px;
}

.hero-wrap.style-three .hero-content .counter-card-wrap .counter-card p {
    color: var(--whiteColor);
    margin: 0;
    font-weight: 300;
}

.hero-wrap.style-three .hero-img-wrap {
    position: relative;
}

.hero-wrap.style-three .hero-img-wrap .hero-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-wrap.style-three .hero-img-wrap .hero-img-shape {
    display: block;
    margin: 0 auto;
}

.circle-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: absolute;
    bottom: 200px;
    left: -55px;
    overflow: hidden;
    z-index: 2;
    border: 1px solid var(--primaryColor);
    background-color: var(--whiteColor);
}

.circle-wrap .circle-shape,
.circle-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-wrap .circle-shape {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--whiteColor);
}

.circle-wrap .circle-text {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-wrap .circle-text svg {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    color: #000;
    opacity: 1;
}

.circle-wrap .circle-text svg text {
    font-size: 16px;
    letter-spacing: 15.2px;
    font-weight: 700;
    color: #000;
    opacity: 1;
    text-transform: uppercase;
}

.client-likes {
    display: flex;
    flex-wrap: wrap;
    margin-top: 110px;
}

.client-likes ul {
    position: relative;
    margin-right: 25px;
}

.client-likes ul li {
    display: inline-block;
    margin-left: -15px;
    width: 55px;
    height: 55px;
    border: 2px solid var(--whiteColor);
    border-radius: 50%;
}

.client-likes ul li img {
    border-radius: 50%;
}

.client-likes ul li:first-child {
    margin-left: 0;
}

.client-likes h6 {
    margin: 0;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--whiteColor);
}

.client-likes h6 span {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: var(--whiteColor);
    font-weight: 800;
    margin-bottom: 3px;
}

/*---------------------------------
       Feature Section CSS
-----------------------------------*/

.feature-wrap.style-one {
    position: relative;
    z-index: 1;
}

.feature-wrap.style-one .feature-shape {
    position: absolute;
    top: 60%;
    left: 5.5%;
    z-index: -1;
}

.feature-wrap.style-two {
    margin-top: -145px;
}

.feature-card {
    margin-bottom: 25px;
}

.feature-card.style-one h3,
.feature-card.style-two h3,
.feature-card.style-three h3 {
    font-size: 20px;
    line-height: 32px;
}

.feature-card.style-one {
    border-radius: 10px;
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.13);
    transition: var(--transition);
    padding: 30px;
}

.feature-card.style-one .feature-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.feature-card.style-one .feature-top h6 {
    color: rgba(4, 9, 30, 0.2);
    font-size: 30px;
    line-height: 32px;
    transition: var(--transition);
}

.feature-card.style-one .feature-top span {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card.style-one .feature-top span:after {
    position: absolute;
    bottom: -2px;
    right: 5px;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(97, 106, 249, 0.15);
    z-index: -1;
    transition: var(--transition);
}

.feature-card.style-one .feature-top span i {
    font-size: 68px;
    line-height: 0.8;
    color: var(--primaryColor);
    transition: var(--transition);
}

.feature-card.style-one h3 {
    max-width: 68%;
    transition: var(--transition);
}

.feature-card.style-one:hover {
    background-color: var(--primaryColor);
}

.feature-card.style-one:hover .feature-top h6 {
    color: rgba(255, 255, 255, 0.3);
}
.feature-card.style-one:hover .feature-top img{
    filter: brightness(13.5);
}

.feature-card.style-one:hover .feature-top span:after {
    background-color: rgba(255, 255, 255, 0.3);
}

.feature-card.style-one:hover .feature-top span i {
    color: var(--whiteColor);
}

.feature-card.style-one:hover h3 {
    color: var(--whiteColor);
}

.feature-card.style-two {
    border-radius: 10px;
    background: var(--whiteColor);
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.15);
    text-align: center;
    transition: var(--transition);
    padding: 25px;
    position: relative;
    z-index: 1;
}

.feature-card.style-two .feature-icon {
    position: relative;
    z-index: 1;
    transition: var(--transition);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card.style-two .feature-icon:before,
.feature-card.style-two .feature-icon:after {
    position: absolute;
    bottom: -2px;
    right: 0;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
}

.feature-card.style-two .feature-icon:before {
    opacity: 1;
    visibility: hidden;
}

.feature-card.style-two .feature-icon:after {
    background: linear-gradient(135deg, #55E6A5 0%, #85EF95 100%);
    opacity: 0.25;
}

.feature-card.style-two .feature-icon i {
    font-size: 85px;
    line-height: 0.8;
    color: var(--optionalColor);
    transition: var(--transition);
}

.feature-card.style-two h3 {
    font-size: 22px;
    line-height: 32px;
    color: var(--titleColor);
    font-weight: 700;
}

.feature-card.style-two p {
    margin: 0;
}

.feature-card.style-two:hover {
    transform: translateY(-5px);
}

.feature-card.style-two:hover .feature-icon i {
    color: var(--primaryColor);
}

.feature-card.style-two:hover .feature-icon:before {
    visibility: visible;
    background: rgba(97, 106, 249, 0.19);
}

.feature-card.style-two:hover .feature-icon:after {
    visibility: hidden;
    opacity: 0;
}

.feature-card.style-three {
    border-radius: 10px;
    background: var(--whiteColor);
    box-shadow: 0px 4px 15px 0px rgba(79, 139, 173, 0.15);
    padding: 25px;
}

.feature-card.style-three .feature-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.feature-card.style-three .feature-top .feature-icon {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--secondaryColor);
    transition: var(--transition);
    overflow: hidden;
}

.feature-card.style-three .feature-top .feature-icon:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primaryColor);
    z-index: 0;
    opacity: 0;
    transition: var(--transition);
}

.feature-card.style-three .feature-top .feature-icon i {
    font-size: 38px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 2px;
    z-index: 2;
    color: var(--titleColor);
    transition: var(--transition);
}

.feature-card.style-three .feature-top .feature-counter {
    -webkit-text-stroke: 1px rgba(4, 9, 30, 0.2);
    -webkit-text-fill-color: transparent;
    color: rgba(4, 9, 30, 0.2);
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
}

.feature-card.style-three h3 {
    font-size: 22px;
    line-height: 32px;
    color: var(--titleColor);
    font-weight: 700;
}

.feature-card.style-three p {
    margin: 7px 0 0;
}

.feature-card.style-three:hover .feature-top .feature-icon {
    border-radius: 5px;
}

.feature-card.style-three:hover .feature-top .feature-icon i {
    color: var(--whiteColor);
}

.feature-card.style-three:hover .feature-top .feature-icon:after {
    opacity: 1;
}

/*---------------------------------
       About Section CSS
-----------------------------------*/

.about-wrap.style-one {
    position: relative;
    z-index: 1;
}

.about-wrap.style-one .about-shape {
    position: absolute;
    top: 51%;
    right: 10px;
    z-index: -1;
}

.about-wrap.style-one .about-img-wrap {
    position: relative;
    z-index: 1;
}

.about-wrap.style-one .about-img-wrap .exp-box {
    position: absolute;
    top: 35.6%;
    left: -10px;
}

.about-wrap.style-one .about-content .feature-item-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 25px 0 0;
}

.about-wrap.style-one .about-content .feature-item-wrap .feature-item {
    width: 50%;
    margin-bottom: 25px;
}

.about-wrap.style-one .about-content .feature-item-wrap .feature-item h3 {
    font-size: 22px;
    line-height: 32px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}

.about-wrap.style-one .about-content .feature-item-wrap .feature-item h3 i {
    position: absolute;
    top: 3px;
    left: -4px;
    font-size: 24px;
    line-height: 0.8;
    color: var(--optionalColor);
}

.about-wrap.style-one .about-content .feature-item-wrap .feature-item p {
    margin: 0;
    padding-right: 15px;
}

.about-wrap.style-one .about-content .progress-item {
    margin-bottom: 38px;
}

.about-wrap.style-one .about-content .progress-item .progress-title {
    margin-bottom: 10px;
}

.about-wrap.style-one .about-content .progress-item .progress-title p {
    width: 60%;
    margin: 0;
    font-weight: 500;
    color: var(--titleColor);
}

.about-wrap.style-one .about-content .progress-item .progress-title p,
.about-wrap.style-one .about-content .progress-item .progress-title span {
    font-size: 18px;
    line-height: 26px;
}

.about-wrap.style-one .about-content .about-btn .contact-item span {
    box-shadow: 0px 4px 15px rgba(79, 139, 173, 0.15);
}

.about-wrap.style-two {
    position: relative;
    z-index: 1;
}

.about-wrap.style-two .about-shape {
    position: absolute;
    top: 62%;
    right: 10px;
    z-index: -1;
}

.about-wrap.style-two .about-img-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}

.about-wrap.style-two .about-img-wrap .exp-box {
    top: 38px;
    left: 51.5%;
}

.about-wrap.style-two .about-img-wrap .about-img-one,
.about-wrap.style-two .about-img-wrap .about-img-two {
    border-radius: 10px;
}

.about-wrap.style-two .about-img-wrap .about-img-one img,
.about-wrap.style-two .about-img-wrap .about-img-two img {
    border-radius: 10px;
}

.about-wrap.style-two .about-img-wrap .about-img-one {
    width: calc(56% - 11px);
}

.about-wrap.style-two .about-img-wrap .about-img-two {
    width: calc(44% - 11px);
}

.about-wrap.style-two .about-content .feature-item-wrap {
    margin: 20px 0 30px;
}

.about-wrap.style-two .about-content .feature-item-wrap .feature-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 22px;
}

.about-wrap.style-two .about-content .feature-item-wrap .feature-item:last-child {
    margin-bottom: 0;
}

.about-wrap.style-two .about-content .feature-item-wrap .feature-item .feature-icon {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondaryColor);
}

.about-wrap.style-two .about-content .feature-item-wrap .feature-item .feature-icon i {
    font-size: 36px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
    color: var(--titleColor);
}

.about-wrap.style-two .about-content .feature-item-wrap .feature-item .feature-text {
    width: calc(100% - 100px);
    margin-left: 30px;
}

.about-wrap.style-two .about-content .feature-item-wrap .feature-item .feature-text h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 5px;
}

.about-wrap.style-two .about-content .feature-item-wrap .feature-item .feature-text p {
    margin-bottom: 0;
}

.about-wrap.style-three {
    position: relative;
    z-index: 1;
}

.about-wrap.style-three .about-shape-one,
.about-wrap.style-three .about-shape-two {
    position: absolute;
    z-index: -1;
}

.about-wrap.style-three .about-shape-one {
    top: -28px;
    left: 6.3%;
}

.about-wrap.style-three .about-shape-two {
    bottom: 34%;
    right: 11.5%;
}

.about-wrap.style-three .about-img-wrap {
    position: relative;
    z-index: 1;
}

.about-wrap.style-three .about-img-wrap .about-img-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.about-wrap.style-three .about-img-wrap .about-img img {
    display: block;
    margin: 0 auto;
}

.about-wrap.style-three .about-img-wrap .exp-box {
    top: 35px;
    left: 45%;
}

.about-wrap.style-three .about-content .feature-list {
    margin: 26px 0 34px;
}

.about-wrap.style-three .about-content .feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
}

.about-wrap.style-three .about-content .feature-list li:last-child {
    margin-bottom: 0;
}

.about-wrap.style-three .about-content .feature-list li i {
    position: absolute;
    top: 5px;
    left: 0;
    color: var(--primaryColor);
    font-size: 22px;
    line-height: 0.8;
}

.about-wrap.style-three .about-content .about-btn .contact-item span {
    background-color: var(--primaryColor);
    border-color: transparent;
}

.about-wrap.style-three .about-content .about-btn .contact-item span i {
    color: var(--whiteColor);
}

.about-wrap.style-three .about-content .about-btn .contact-item span img {
    filter: brightness(0) invert(1);
}

.exp-box {
    position: absolute;
    border-radius: 10px;
    padding: 33px 35px;
    background-color: var(--whiteColor);
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.15);
}

.exp-box h6 {
    color: var(--titleColor);
    font-size: 55px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 5px;
}

.exp-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
    letter-spacing: 0.5px;
}

.about-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-btn .contact-item {
    position: relative;
    padding-left: 70px;
    margin-left: 30px;
}

.about-btn .contact-item span {
    position: absolute;
    top: 3px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0;
    border: 1px solid var(--primaryColor);
}

.about-btn .contact-item span i {
    color: var(--primaryColor);
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 0.8;
    display: block;
    position: relative;
    top: 1px;
}

.about-btn .contact-item span img {
    display: block;
    margin: 0 auto;
}

.about-btn .contact-item p {
    margin: 0 0 2px;
}

.about-btn .contact-item a {
    display: block;
    font-size: 17px;
    line-height: 26px;
    font-family: var(--secondaryFont);
    font-weight: 600;
    color: var(--titleColor);
}

.about-btn .contact-item a:hover {
    color: var(--secondaryColor);
}

.progress-bar {
    width: 0;
    animation: progress 1.5s ease-in-out forwards;
}

.progress-item {
    margin-bottom: 22px;
}

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

.progress-item .progress-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-item .progress-title p {
    width: 60%;
    margin: 0;
}

.progress-item .progress {
    height: 10px;
    border-radius: 2px;
    background: rgba(4, 9, 30, 0.1);
}

.progress-item .progress .progress-bar {
    background: var(--secondaryColor);
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*---------------------------------
       Partner Section CSS
-----------------------------------*/

.partner-logo img {
    display: block;
    margin: 0 auto;
}

.partner-logo.style-one img {
    filter: grayscale(10);
}

.partner-logo.style-two {
    padding: 0 15px;
}

.partner-logo.style-two img {
    filter: grayscale(1);
    transition: var(--transition);
}

.partner-logo.style-two:hover img {
    filter: grayscale(0);
}

/*---------------------------------
       Service Section CSS
-----------------------------------*/

.service-wrap .container {
    position: relative;
    z-index: 1;
}

.service-wrap .container .service-shape-one,
.service-wrap .container .service-shape-two {
    position: absolute;
    z-index: -1;
}

.service-wrap .container .service-shape-one {
    top: 102px;
    left: -12px;
}

.service-wrap .container .service-shape-two {
    bottom: -5px;
    right: -12px;
}

.service-card {
    margin-bottom: 25px;
}

.service-card.style-one h3,
.service-card.style-two h3,
.service-card.style-three h3,
.service-card.style-four h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 6px;
}

.service-card.style-one h3 a,
.service-card.style-two h3 a,
.service-card.style-three h3 a,
.service-card.style-four h3 a {
    color: var(--titleColor);
}

.service-card.style-one h3 a:hover,
.service-card.style-two h3 a:hover,
.service-card.style-three h3 a:hover,
.service-card.style-four h3 a:hover {
    color: var(--primaryColor);
}

.service-card.style-one p,
.service-card.style-two p,
.service-card.style-three p,
.service-card.style-four p {
    margin-bottom: 18px;
}

.service-card.style-one .link-one:after,
.service-card.style-two .link-one:after,
.service-card.style-three .link-one:after,
.service-card.style-four .link-one:after {
    display: none;
}

.service-card.style-one,
.service-card.style-four {
    border-radius: 10px;
    box-shadow: 0px 4px 12px 0px rgba(79, 139, 173, 0.08);
    padding: 30px;
    background-color: var(--whiteColor);
    position: relative;
}

.service-card.style-one .service-counter,
.service-card.style-four .service-counter {
    position: absolute;
    top: 30px;
    right: 0;
    color: var(--titleColor);
    font-size: 25px;
    line-height: 35px;
    background-color: rgba(97, 106, 249, 0.1);
    display: inline-block;
    border-radius: 50px 0 0 50px;
    transition: var(--transition);
    padding: 12px 38px;
}

.service-card.style-one .service-icon,
.service-card.style-four .service-icon {
    position: relative;
    z-index: 1;
    transition: var(--transition);
    margin-bottom: 28px;
    display: inline-block;
}

.service-card.style-one .service-icon:after,
.service-card.style-four .service-icon:after {
    position: absolute;
    bottom: -2px;
    right: -10px;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(97, 106, 249, 0.15);
    z-index: -1;
}

.service-card.style-one .service-icon i,
.service-card.style-four .service-icon i {
    font-size: 60px;
    line-height: 0.8;
    color: var(--primaryColor);
    transition: var(--transition);
}

.service-card.style-one:hover .service-counter,
.service-card.style-four:hover .service-counter {
    color: var(--whiteColor);
    background-color: rgb(97, 106, 249);
}

.service-card.style-one {
    box-shadow: 0px 4px 12px 0px rgba(79, 139, 173, 0.08);
}

.service-card.style-four {
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.13);
}

.service-card.style-two {
    padding: 75px 30px 30px;
    border-radius: 10px;
    background-color: var(--whiteColor);
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.15);
}

.service-card.style-two .service-icon {
    position: absolute;
    left: 33px;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    background: var(--secondaryColor);
    transition: var(--transition);
    overflow: hidden;
}

.service-card.style-two .service-icon:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 0%;
    height: 100%;
    background-color: var(--primaryColor);
    z-index: 0;
    opacity: 0;
    transition: var(--transition);
}

.service-card.style-two .service-icon i {
    font-size: 40px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: var(--titleColor);
    transition: var(--transition);
}

.service-card.style-two:hover .service-icon:after {
    width: 100%;
    opacity: 1;
}

.service-card.style-two:hover .service-icon i {
    color: var(--whiteColor);
}

.service-card.style-three {
    background-color: var(--whiteColor);
    border-radius: 10px;
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.15);
    transition: var(--transition);
    padding: 25px;
}

.service-card.style-three .service-icon {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--secondaryColor);
    transition: var(--transition);
    margin-bottom: 25px;
}

.service-card.style-three .service-icon:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primaryColor);
    z-index: 0;
    opacity: 0;
    border-radius: 5px;
    transition: var(--transition);
}

.service-card.style-three .service-icon i {
    font-size: 38px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 2px;
    z-index: 2;
    color: var(--titleColor);
    transition: var(--transition);
}

.service-card.style-three .link-one {
    color: var(--paraColor);
}

.service-card.style-three .link-one:hover {
    color: var(--primaryColor);
}

.service-card.style-three:hover {
    transform: translateY(-5px);
}

.service-card.style-three:hover .service-icon {
    border-radius: 5px;
}

.service-card.style-three:hover .service-icon:after {
    opacity: 1;
}

.service-card.style-three:hover .service-icon i {
    color: var(--whiteColor);
}

.service-slider-one .service-card {
    margin-top: 33px;
}

.service-slider-one .service-pagination {
    margin-top: 7px;
}

.service-slider-one .service-pagination .swiper-pagination-bullet {
    opacity: 1;
    position: relative;
    bottom: -5px;
}

.service-slider-one .service-pagination .swiper-pagination-bullet:after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.3);
}

.service-slider-one .service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--secondaryColor);
}

.service-slider-one .service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    border-color: var(--titleColor);
    background: var(--secondaryColor);
}

.service-slider-one .service-pagination.style-two .swiper-pagination-bullet:after {
    background: rgba(4, 9, 30, 0.3);
}

.service-slider-one .service-pagination.style-two .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primaryColor);
}

.service-slider-one .service-pagination.style-two .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    border-color: var(--whiteColor);
    background: var(--primaryColor);
}

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

.st-area .st-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.st-area:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 69.5%;
    z-index: -1;
    background-color: var(--titleColor);
}

.project-pagination,
.service-pagination {
    text-align: center;
}

.project-pagination .swiper-pagination-bullet,
.service-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.project-pagination .swiper-pagination-bullet:after,
.service-pagination .swiper-pagination-bullet:after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--titleColor);
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
}

/*---------------------------------
    Project Card CSS
-----------------------------------*/

.project-wrap.style-one {
    position: relative;
    z-index: 1;
}

.project-wrap.style-one:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 52%;
    background-color: var(--grayColor);
    z-index: -1;
}

.project-card {
    margin-bottom: 25px;
}

.project-card.style-one {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}

.project-card.style-one img {
    border-radius: 10px;
}

.project-card.style-one:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.9399999976;
    background: linear-gradient(360deg, #04091E -2.79%, rgba(4, 9, 30, 0) 79.53%);
}

.project-card.style-one .project-link {
    position: absolute;
    top: 35px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primaryColor);
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.project-card.style-one .project-link i,
.project-card.style-one .project-link img {
    display: block;
    margin: 0 auto;
}

.project-card.style-one .project-link i {
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 0.8;
}

.project-card.style-one .project-info {
    position: absolute;
    bottom: -35px;
    left: 40px;
    z-index: 2;
    padding-right: 20px;
    transition: var(--transition);
}

.project-card.style-one .project-info .project-cat {
    color: var(--optionalColor);
    font-weight: 600;
}

.project-card.style-one .project-info h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 11px 0 0;
}

.project-card.style-one .project-info h3 a {
    color: var(--whiteColor);
}

.project-card.style-one .project-info h3 a:hover {
    color: var(--optionalColor);
}

.project-card.style-one .project-info p {
    color: var(--whiteColor);
    margin: 13px 0 0;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.project-card.style-one:hover .project-link {
    visibility: visible;
    opacity: 1;
    top: 30px;
}

.project-card.style-one:hover .project-info {
    bottom: 30px;
}

.project-card.style-one:hover .project-info p {
    visibility: visible;
    opacity: 1;
}

.project-card.style-two {
    position: relative;
    border-radius: 10px;
}

.project-card.style-two img {
    border-radius: 10px;
}

.project-card.style-two .project-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    background-color: var(--whiteColor);
    border-radius: 5px;
    padding: 18px 18px 18px 85px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: var(--titleColor);
}

.project-card.style-two .project-link span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
    background: var(--secondaryColor);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 5px 0 0 5px;
}

.project-card.style-two .project-link span:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 0%;
    height: 100%;
    background: var(--primaryColor);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    border-radius: 5px 0 0 5px;
    transition: var(--transition);
}

.project-card.style-two .project-link span img {
    display: block;
    margin: 0 auto;
}

.project-card.style-two:hover .project-link span:after {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

.project-card.style-two:hover .project-link span img {
    filter: brightness(0) invert(1);
}

.project-card.style-three {
    position: relative;
    background-color: var(--whiteColor);
    border-radius: 10px;
    box-shadow: 0px 4px 15px 0px rgba(79, 139, 173, 0.15);
}

.project-card.style-three .project-img {
    padding: 10px 10px 0;
    border-radius: 10px;
}

.project-card.style-three .project-img img {
    border-radius: 10px;
}

.project-card.style-three .project-link {
    display: block;
    padding: 35px 80px 35px 30px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: var(--titleColor);
    position: relative;
}

.project-card.style-three .project-link span {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primaryColor);
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.project-card.style-three .project-link span i,
.project-card.style-three .project-link span img {
    display: block;
    margin: 0 auto;
}

.project-card.style-three .project-link span i {
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 0.8;
}

.project-card.style-three .project-link:hover {
    color: var(--primaryColor);
}

.project-card.style-three:hover .project-link span {
    visibility: visible;
    opacity: 1;
}

.single-project-item {
    border-radius: 10px;
    margin-bottom: 25px;
}

.single-project-item img {
    border-radius: 10px;
}

.single-project-slider .project-pagination,
.project-slider-one .project-pagination,
.project-slider-three .project-pagination {
    margin-top: 7px;
    text-align: center;
}

.single-project-slider .project-pagination .swiper-pagination-bullet,
.project-slider-one .project-pagination .swiper-pagination-bullet,
.project-slider-three .project-pagination .swiper-pagination-bullet {
    opacity: 1;
    position: relative;
    bottom: -5px;
}

.single-project-slider .project-pagination .swiper-pagination-bullet:after,
.project-slider-one .project-pagination .swiper-pagination-bullet:after,
.project-slider-three .project-pagination .swiper-pagination-bullet:after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: rgba(4, 9, 30, 0.3);
}

.single-project-slider .project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.project-slider-one .project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.project-slider-three .project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    background: var(--primaryColor);
}

.single-project-slider .project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.project-slider-one .project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.project-slider-three .project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    width: 12px;
    height: 12px;
    border-color: var(--whiteColor);
    background: var(--primaryColor);
}

/*---------------------------------
    Events Card CSS
-----------------------------------*/

.event-card {
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.13);
}

.event-card .event-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.event-card .event-card-img img {
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
}

.event-card .event-card-img .event-date {
    position: absolute;
    bottom: 30px;
    right: 30px;
    border-radius: 5px;
}

.event-card .event-card-info {
    position: relative;
    padding: 25px;
}

.event-card .event-card-info .event-metainfo {
    margin-bottom: 13px;
}

.event-card .event-card-info h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 10px;
}

.event-card .event-card-info h3 a {
    color: var(--titleColor);
}

.event-card .event-card-info h3 a:hover {
    color: var(--secondaryColor);
}

.event-card .event-card-info p {
    margin-bottom: 0;
}

.event-card:hover .event-card-img img {
    transform: scale(1.05);
}

.event-card:hover .event-card-img .event-date {
    color: var(--whiteColor);
}

.event-card:hover .event-card-img .event-date:after {
    visibility: visible;
    opacity: 1;
}

.event-date {
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: var(--secondaryColor);
    transition: var(--transition);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 11px;
    width: 55px;
    overflow: hidden;
    color: var(--titleColor);
    z-index: 1;
}

.event-date:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primaryColor);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.event-date span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 800;
    display: block;
}

.event-metainfo li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.event-metainfo li:last-child {
    margin: 0;
}

.event-metainfo li i,
.event-metainfo li img {
    position: absolute;
    top: 3px;
    left: 0;
    color: var(--secondaryColor);
    font-size: 16px;
}

/*---------------------------------
   Gallery Card CSS
-----------------------------------*/

.gallery-card {
    position: relative;
    border-radius: 10px;
    margin-bottom: 25px;
    display: block;
}

.gallery-card:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primaryColor);
    opacity: 0.85;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card img {
    border-radius: 10px;
}

.gallery-card .gallery-link {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    visibility: hidden;
    background: var(--secondaryColor);
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.gallery-card .gallery-link i {
    font-size: 30px;
    line-height: 0.8;
    margin: 0 auto;
    color: var(--titleColor);
    display: block;
}

.gallery-card:hover:after {
    visibility: visible;
    opacity: 0.8;
}

.gallery-card:hover .gallery-link {
    visibility: visible;
    opacity: 1;
    top: 50%;
}

.cssbox {
    display: inline-block;
}

.cssbox .cssbox_full {
    z-index: 999999;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    cursor: default;
    transition: opacity 0.5s linear;
}

.cssbox .cssbox_full img {
    position: fixed;
    background-color: white;
    margin: 0;
    padding: 0;
    max-height: 90%;
    max-width: 90%;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px black;
}

.cssbox .cssbox_close,
.cssbox .cssbox_prev,
.cssbox .cssbox_next {
    z-index: 999999;
    position: fixed;
    text-decoration: none;
    visibility: hidden;
    color: white;
    font-size: 36px;
}

.cssbox .cssbox_prev,
.cssbox .cssbox_next {
    top: 50%;
    transform: translate(0%, -50%);
}

.cssbox .cssbox_close {
    top: 1%;
    right: 1%;
}

.cssbox .cssbox_prev {
    left: 5%;
}

.cssbox .cssbox_next {
    right: 5%;
}

.cssbox a:target~a.cssbox_close,
.cssbox a:target~a.cssbox_prev,
.cssbox a:target~a.cssbox_next {
    visibility: visible;
}

.cssbox a:target>img.cssbox_thumb+span.cssbox_full {
    visibility: visible;
    opacity: 1;
    pointer-events: initial;
}

.cssbox a.cssbox_close::after {
    content: "×";
}

/*---------------------------------
    Work Process CSS
-----------------------------------*/

.process-wrap.style-one {
    position: relative;
    z-index: 1;
}

.process-wrap.style-one .process-shape-one,
.process-wrap.style-one .process-shape-two {
    position: absolute;
    z-index: -1;
}

.process-wrap.style-one .process-shape-one {
    top: 27%;
    left: 10%;
}

.process-wrap.style-one .process-shape-two {
    bottom: 22%;
    right: 7%;
}

.process-card-wrap>div .process-card {
    position: relative;
}

.process-card-wrap>div .process-card:after {
    position: absolute;
    top: 28%;
    right: -50px;
    content: "";
    background-image: url(../img/process/process-arrow.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 55px;
    height: 30px;
    transform: translateY(-50%);
}

.process-card-wrap>div:last-child .process-card:after {
    display: none;
}

.process-card {
    margin-bottom: 25px;
}

.process-card.style-one .process-info,
.process-card.style-two .process-info {
    text-align: center;
}

.process-card.style-one .process-info h3,
.process-card.style-two .process-info h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 7px;
}

.process-card.style-one .process-info p,
.process-card.style-two .process-info p {
    margin: 0;
    padding: 0 10px;
}

.process-card.style-one {
    text-align: center;
}

.process-card.style-one .process-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 auto 25px;
    position: relative;
}

.process-card.style-one .process-img span {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 19px;
    font-weight: 600;
    line-height: 42px;
    text-align: center;
    transform: translateY(-50%);
    background-color: var(--whiteColor);
    color: var(--primaryColor);
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.13);
    transition: var(--transition);
}

.process-card.style-one .process-img img {
    border-radius: 50%;
}

.process-card.style-one:hover .process-img span {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.process-card.style-two {
    border-radius: 10px;
    position: relative;
    margin-top: 20px;
}

.process-card.style-two img {
    border-radius: 10px;
    margin: 0 auto 25px;
}

.process-card.style-two span {
    position: absolute;
    top: -26px;
    left: 28px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 52px;
    text-align: center;
    background-color: var(--whiteColor);
    color: var(--primaryColor);
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.15);
    transition: var(--transition);
}

.process-card.style-two h3 {
    font-weight: 700;
}

/*---------------------------------
       Pricing CSS
-----------------------------------*/

.pricing-card {
    margin-bottom: 25px;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding-bottom: 30px;
    background-color: var(--whiteColor);
    transition: var(--transition);
    margin-top: 30px;
}

.pricing-card .pricing-header {
    margin: 0 40px 0;
    padding-bottom: 25px;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.pricing-card .pricing-header .pricing-icon {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: -30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--secondaryColor);
    z-index: 1;
    transition: var(--transition);
}

.pricing-card .pricing-header .pricing-icon:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    background-color: var(--primaryColor);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.pricing-card .pricing-header .pricing-icon i {
    display: block;
    margin: 0 auto;
    font-size: 32px;
    line-height: 0.8;
    color: var(--titleColor);
    transition: var(--transition);
}

.pricing-card .pricing-header h2,
.pricing-card .pricing-header h3 {
    color: var(--titleColor);
    transition: var(--transition);
}

.pricing-card .pricing-header h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}

.pricing-card .pricing-header h3 {
    font-size: 40px;
    line-height: 48px;
    margin: 0 0 3px;
}

.pricing-card .pricing-header h3 span {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    margin-left: -6px;
    position: relative;
    top: -2px;
}

.pricing-card .pricing-header p {
    margin: 0;
}

.pricing-card .pricing-features {
    padding: 25px 40px;
}

.pricing-card .pricing-features li {
    margin-bottom: 15px;
    color: var(--paraColor);
}

.pricing-card .pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-card .pricing-features li i {
    float: right;
    font-size: 22px;
    font-weight: 300;
}

.pricing-card .pricing-features li.checked i {
    color: var(--optionalColor);
}

.pricing-card .pricing-features li.unchecked i {
    color: #FF0000;
}

.pricing-card .btn-two {
    margin: 0 40px;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card:hover .pricing-icon i {
    color: var(--whiteColor);
}

.pricing-card:hover .pricing-icon:after {
    visibility: visible;
    opacity: 1;
}

/*---------------------------------
    Service & Project Details CSS
-----------------------------------*/

.service-details-wrap .single-service-img {
    border-radius: 10px;
    margin-bottom: 25px;
}

.service-details-wrap .service-img {
    position: relative;
}

.service-details-wrap .service-img .play-now {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 93px;
    width: 93px;
    transform: translate(-50%, -50%);
    background-color: var(--whiteColor);
}

.service-details-wrap .service-img .play-now i {
    font-size: 40px;
    line-height: 98px;
    color: var(--secondaryColor);
}

.service-details-wrap .service-img .play-now .ripple,
.service-details-wrap .service-img .play-now .ripple:before,
.service-details-wrap .service-img .play-now .ripple:after {
    height: 93px;
    width: 93px;
}

.service-details-wrap .event-img {
    position: relative;
    border-radius: 10px;
}

.service-details-wrap .event-img img {
    border-radius: 10px;
}

.service-details-wrap .event-img .event-date {
    position: absolute;
    bottom: -30px;
    right: 30px;
}

.service-details-wrap .event-img .event-date:hover {
    color: var(--whiteColor);
}

.service-details-wrap .event-img .event-date:hover:after {
    visibility: visible;
    opacity: 1;
}

.service-details-wrap .event-metainfo {
    margin: 30px 0 20px;
}

.service-details-wrap .event-metainfo li {
    display: inline-block;
    margin-right: 20px;
}

.service-details-wrap .event-metainfo li:last-child {
    margin-right: 0;
}

.service-details-wrap .team-card {
    margin-bottom: 0;
}

/*-------------------------------
    Whu Choose Us Section CSS
-------------------------------*/

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

.wh-wrap.style-one .wh-img-wrap .play-now,
.wh-wrap.style-two .wh-img-wrap .play-now {
    position: absolute;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--whiteColor);
    min-width: 242px;
    max-height: 80px;
    padding: 10px 23px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px 0px rgba(79, 139, 173, 0.15);
}

.wh-wrap.style-one .wh-img-wrap .play-now .play-icon,
.wh-wrap.style-two .wh-img-wrap .play-now .play-icon {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-right: 18px;
    background-color: var(--primaryColor);
}

.wh-wrap.style-one .wh-img-wrap .play-now .play-icon i,
.wh-wrap.style-two .wh-img-wrap .play-now .play-icon i {
    display: block;
    margin: 0 auto;
    font-size: 18px;
    line-height: 0.8;
    position: relative;
    left: 1px;
    color: var(--whiteColor);
}

.wh-wrap.style-one .wh-img-wrap .play-now .play-text,
.wh-wrap.style-two .wh-img-wrap .play-now .play-text {
    color: var(--paraColor);
    font-weight: 500;
}

.wh-wrap.style-one .wh-shape {
    position: absolute;
    z-index: -1;
    top: 22%;
    left: 7.5%;
}

.wh-wrap.style-one .wh-img-wrap {
    position: relative;
}

.wh-wrap.style-one .wh-img-wrap img {
    display: block;
    margin-left: auto;
}

.wh-wrap.style-one .wh-img-wrap .play-now {
    top: 53%;
    left: -10px;
}

.wh-wrap.style-one .wh-content .wh-features {
    display: flex;
    flex-wrap: wrap;
    margin: 24px 0 27px;
}

.wh-wrap.style-one .wh-content .wh-features ul {
    position: relative;
    width: 54%;
}

.wh-wrap.style-one .wh-content .wh-features ul:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    width: 2px;
    height: 100px;
    transform: translateY(-50%);
    background: rgba(4, 9, 30, 0.07);
}

.wh-wrap.style-one .wh-content .wh-features ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
}

.wh-wrap.style-one .wh-content .wh-features ul li img {
    position: absolute;
    top: 1px;
    left: 0;
}

.wh-wrap.style-one .wh-content .wh-features .wh-feature-img {
    width: 46%;
    padding-left: 20px;
    border-radius: 10px;
}

.wh-wrap.style-one .wh-content .wh-features .wh-feature-img img {
    border-radius: 10px;
}

.wh-wrap.style-one .wh-content .wh-feature-img {
    margin-right: auto;
}

.wh-wrap.style-one .wh-content .wh-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.wh-wrap.style-one .wh-content .wh-btn a:first-child {
    margin-right: 30px;
}

.wh-wrap.style-two .wh-shape {
    position: absolute;
    top: 48%;
    left: 6%;
    z-index: -1;
}

.wh-wrap.style-two .wh-img-wrap {
    position: relative;
}

.wh-wrap.style-two .wh-img-wrap .wh-img {
    margin-right: auto;
}

.wh-wrap.style-two .wh-img-wrap .play-now {
    top: 43%;
    right: -20px;
}

.wh-wrap.style-two .wh-content .feature-item-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 25px 0 5px;
}

.wh-wrap.style-two .wh-content .feature-item-wrap .feature-item {
    width: 50%;
    margin-bottom: 25px;
}

.wh-wrap.style-two .wh-content .feature-item-wrap .feature-item h5 {
    font-size: 22px;
    line-height: 32px;
    position: relative;
    margin-bottom: 6px;
}

.wh-wrap.style-two .wh-content .feature-item-wrap .feature-item p {
    margin: 0;
    padding-right: 25px;
}

.wh-wrap.style-three .wh-shape {
    position: absolute;
    top: 62%;
    right: 8%;
    z-index: -1;
}

.wh-wrap.style-three .wh-img-wrap {
    border-radius: 10px;
    position: relative;
}

.wh-wrap.style-three .wh-img-wrap .play-now {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 92px;
    width: 92px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-color: var(--whiteColor);
}

.wh-wrap.style-three .wh-img-wrap .play-now i {
    font-size: 44px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
    color: var(--primaryColor);
    position: relative;
    left: 2px;
}

.wh-wrap.style-three .wh-img-wrap .play-now .ripple,
.wh-wrap.style-three .wh-img-wrap .play-now .ripple:before,
.wh-wrap.style-three .wh-img-wrap .play-now .ripple:after {
    height: 92px;
    width: 92px;
}

.wh-wrap.style-three .wh-img-wrap img {
    border-radius: 10px;
}

.wh-wrap.style-three .wh-content .feature-item-wrap {
    margin: 28px 0 0;
}

.wh-wrap.style-three .wh-content .feature-item-wrap .feature-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 19px;
}

.wh-wrap.style-three .wh-content .feature-item-wrap .feature-item:last-child {
    margin-bottom: 0;
}

.wh-wrap.style-three .wh-content .feature-item-wrap .feature-item .feature-icon {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whiteColor);
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.15);
    transition: var(--transition);
}

.wh-wrap.style-three .wh-content .feature-item-wrap .feature-item .feature-icon i {
    font-size: 28px;
    line-height: 0.8;
    position: relative;
    top: 2px;
    display: block;
    margin: 0 auto;
    color: var(--primaryColor);
    transition: var(--transition);
}

.wh-wrap.style-three .wh-content .feature-item-wrap .feature-item .feature-text {
    width: calc(100% - 90px);
    margin-left: 30px;
}

.wh-wrap.style-three .wh-content .feature-item-wrap .feature-item .feature-text h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 0;
}

.wh-wrap.style-three .wh-content .feature-item-wrap .feature-item .feature-text p {
    margin-bottom: 0;
}

.wh-wrap.style-three .wh-content .feature-item-wrap .feature-item:hover .feature-icon {
    background-color: var(--primaryColor);
}

.wh-wrap.style-three .wh-content .feature-item-wrap .feature-item:hover .feature-icon i {
    color: var(--whiteColor);
}

/*-------------------------------
    Counter Section CSS
-------------------------------*/

.counter-wrap.style-one {
    position: relative;
    z-index: 1;
}

.counter-wrap.style-one .counter-shape {
    position: absolute;
    top: -60px;
    right: 9.5%;
    z-index: -1;
}

.counter-wrap.style-one .counter-card {
    margin-bottom: 25px;
}

.counter-wrap.style-one .counter-card h2 {
    -webkit-text-stroke: 1px var(--titleColor);
    -webkit-text-fill-color: transparent;
    color: var(--titleColor);
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    transition: var(--transition);
    margin: 0 0 13px;
}

.counter-wrap.style-one .counter-card p {
    font-size: 20px;
    font-weight: 600;
    color: var(--titleColor);
    margin: 0;
}

.counter-wrap.style-one .counter-card:hover h2 {
    -webkit-text-stroke: 1px transparent;
    color: var(--primaryColor);
    -webkit-text-fill-color: var(--primaryColor);
}

.counter-wrap.style-two,
.counter-wrap.style-four {
    position: relative;
    z-index: 1;
}

.counter-wrap.style-two .counter-card-wrap .counter-card,
.counter-wrap.style-four .counter-card-wrap .counter-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
}

.counter-wrap.style-two .counter-card-wrap .counter-card .counter-icon,
.counter-wrap.style-four .counter-card-wrap .counter-card .counter-icon {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 5px;
    border: 1.2px dashed rgba(4, 9, 30, 0.8);
    background: rgba(4, 9, 30, 0.1);
}

.counter-wrap.style-two .counter-card-wrap .counter-card .counter-icon i,
.counter-wrap.style-four .counter-card-wrap .counter-card .counter-icon i {
    color: var(--titleColor);
    font-size: 40px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
}

.counter-wrap.style-two .counter-card-wrap .counter-card .counter-text,
.counter-wrap.style-four .counter-card-wrap .counter-card .counter-text {
    width: calc(100% - 112px);
    margin-left: 30px;
}

.counter-wrap.style-two .counter-card-wrap .counter-card .counter-text h2,
.counter-wrap.style-four .counter-card-wrap .counter-card .counter-text h2 {
    color: var(--titleColor);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.counter-wrap.style-two .counter-card-wrap .counter-card .counter-text p,
.counter-wrap.style-four .counter-card-wrap .counter-card .counter-text p {
    margin: 0;
    color: var(--titleColor);
    font-weight: 500;
}

.counter-wrap.style-two:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 50%;
    z-index: -1;
    background-color: var(--grayColor);
}

.counter-wrap.style-two .counter-card-wrap {
    background: var(--secondaryColor);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
}

.counter-wrap.style-three .counter-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
    border-radius: 10px;
    background: var(--whiteColor);
    padding: 30px;
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.15);
}

.counter-wrap.style-three .counter-card .counter-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background: var(--secondaryColor);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.counter-wrap.style-three .counter-card .counter-icon:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: var(--primaryColor);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.counter-wrap.style-three .counter-card .counter-icon i {
    display: block;
    margin: 0 auto;
    font-size: 34px;
    line-height: 0.8;
    color: var(--titleColor);
    transition: var(--transition);
}

.counter-wrap.style-three .counter-card .counter-text {
    width: calc(100% - 100px);
    margin-left: 25px;
}

.counter-wrap.style-three .counter-card .counter-text h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 0;
}

.counter-wrap.style-three .counter-card .counter-text p {
    margin: 0;
}

.counter-wrap.style-three .counter-card:hover .counter-icon {
    border-radius: 5px;
}

.counter-wrap.style-three .counter-card:hover .counter-icon i {
    color: var(--whiteColor);
}

.counter-wrap.style-three .counter-card:hover .counter-icon:after {
    background: var(--primaryColor);
    opacity: 1;
}

/*-------------------------------
    Team Section CSS
-------------------------------*/

.team-card {
    margin-bottom: 25px;
    border-radius: 10px;
    background-color: var(--whiteColor);
}

.team-card .team-img {
    overflow: hidden;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.team-card .team-img img {
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
}

.team-card .team-img .social-profile {
    position: absolute;
}

.team-card .team-img .social-profile li {
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
}

.team-card .team-img .social-profile li:nth-child(1) {
    transition-delay: 0.2s;
}

.team-card .team-img .social-profile li:nth-child(2) {
    transition-delay: 0.3s;
}

.team-card .team-img .social-profile li:nth-child(3) {
    transition-delay: 0.4s;
}

.team-card .team-img .social-profile li:nth-child(4) {
    transition-delay: 0.5s;
}

.team-card .team-img .social-profile li a {
    width: 36px;
    height: 36px;
    background-color: var(--whiteColor);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.team-card .team-img .social-profile li a i {
    font-size: 18px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
    color: var(--titleColor);
}

.team-card .team-img .social-profile li a:hover {
    background-color: var(--primaryColor);
}

.team-card .team-img .social-profile li a:hover i {
    color: var(--whiteColor);
}

.team-card .team-info {
    padding: 26px 15px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.team-card .team-info h3 {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 0;
}

.team-card.style-one {
    box-shadow: 0px 4px 12px 0px rgba(79, 139, 173, 0.08);
}

.team-card.style-one .team-img .social-profile {
    bottom: 25px;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
}

.team-card.style-one .team-img .social-profile li {
    margin: 0 4px;
    transform: translateY(25px);
}

.team-card.style-one .team-info {
    border-radius: 0 0 10px 10px;
}

.team-card.style-one:hover .team-img .social-profile li {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.team-card.style-two .team-img {
    padding: 5px 5px 0;
    border-radius: 10px;
}

.team-card.style-two .team-img img {
    border-radius: 10px;
}

.team-card.style-two .team-img .social-profile {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

.team-card.style-two .team-img .social-profile li {
    display: block;
    margin: 10px 0;
    transform: translateX(-25px);
}

.team-card.style-two .team-img .social-profile li a {
    border: 1px solid var(--primaryColor);
}

.team-card.style-two .team-img .social-profile li a:hover {
    border-color: transparent;
}

.team-card.style-two:hover .team-img .social-profile li {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.blog-slider-wrap,
.team-slider-wrap {
    position: relative;
}

.blog-slider-wrap .slider-btn .slider-prev,
.blog-slider-wrap .slider-btn .slider-next,
.team-slider-wrap .slider-btn .slider-prev,
.team-slider-wrap .slider-btn .slider-next {
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    background: var(--whiteColor);
}

.blog-slider-wrap .slider-btn .slider-prev i,
.blog-slider-wrap .slider-btn .slider-prev img,
.blog-slider-wrap .slider-btn .slider-next i,
.blog-slider-wrap .slider-btn .slider-next img,
.team-slider-wrap .slider-btn .slider-prev i,
.team-slider-wrap .slider-btn .slider-prev img,
.team-slider-wrap .slider-btn .slider-next i,
.team-slider-wrap .slider-btn .slider-next img {
    transition: var(--transition);
}

.blog-slider-wrap .slider-btn .slider-prev:hover,
.blog-slider-wrap .slider-btn .slider-next:hover,
.team-slider-wrap .slider-btn .slider-prev:hover,
.team-slider-wrap .slider-btn .slider-next:hover {
    background: var(--primaryColor);
}

.blog-slider-wrap .slider-btn .slider-prev:hover i,
.blog-slider-wrap .slider-btn .slider-next:hover i,
.team-slider-wrap .slider-btn .slider-prev:hover i,
.team-slider-wrap .slider-btn .slider-next:hover i {
    color: var(--whiteColor);
}

.blog-slider-wrap .slider-btn .slider-prev:hover img,
.blog-slider-wrap .slider-btn .slider-next:hover img,
.team-slider-wrap .slider-btn .slider-prev:hover img,
.team-slider-wrap .slider-btn .slider-next:hover img {
    filter: brightness(0) invert(1);
}

.blog-slider-wrap .slider-btn .slider-prev,
.team-slider-wrap .slider-btn .slider-prev {
    left: -10px;
}

.blog-slider-wrap .slider-btn .slider-next,
.team-slider-wrap .slider-btn .slider-next {
    right: -10px;
}

.slider-btn .slider-prev,
.slider-btn .slider-next {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 12px rgba(79, 139, 173, 0.08);
    text-align: center;
    transition: var(--transition);
}

.slider-btn .slider-prev i,
.slider-btn .slider-next i {
    font-size: 25px;
    font-weight: 300;
    position: relative;
    top: 3px;
    color: var(--titleColor);
    transition: var(--transition);
}

.slider-btn .slider-prev i,
.slider-btn .slider-prev img,
.slider-btn .slider-next i,
.slider-btn .slider-next img {
    display: block;
    margin: 0 auto;
}

/*-------------------------------
    Moving Text Section CSS
-------------------------------*/

.move-text {
    position: relative;
    overflow-x: hidden;
    min-height: 140px;
}

.move-text ul {
    white-space: nowrap;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-animation: mymove 5s linear infinite;
    /* Safari 4.0 - 8.0 */
    white-space: nowrap;
    animation: mymove 5s linear infinite alternate;
}

.move-text ul li {
    display: inline-block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 35px;
    padding: 0 40px;
    position: relative;
}

.move-text ul li:last-child:after {
    display: none;
}

.move-text ul li:after {
    position: absolute;
    top: 5px;
    right: -50px;
    content: "";
    background-image: url(../img/star.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 26px;
    height: 22px;
}

.move-text.style-one {
    background-image: url(../img/moving-bg-2.webp);
    background-color: var(--whiteColor);
    min-height: 158px;
}

.move-text.style-one ul li {
    color: var(--whiteColor);
}

.move-text.style-one ul li:after {
    filter: brightness(0) invert(1);
}

.move-text.style-two {
    background: var(--secondaryColor);
}

.move-text.style-two ul li {
    color: var(--titleColor);
}

.move-text.style-three {
    background-color: var(--primaryColor);
}

.move-text.style-three ul li {
    color: var(--whiteColor);
}

.move-text.style-three ul li:after {
    filter: brightness(0) invert(1);
}

@keyframes mymove {
    from {
        left: 0;
    }
    to {
        left: -100px;
    }
}

/*---------------------------
    CTA Section CSS
 ---------------------------*/

.cta-wrap.style-one {
    background-image: url(../img/cta-bg.webp);
    position: relative;
    z-index: 1;
    padding: 92px 0;
}

.cta-wrap.style-one:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(12, 12, 12, 0.89);
    z-index: -1;
}

.cta-wrap.style-one .content-title span:before {
    background: var(--secondaryColor);
}

.cta-wrap .cta-btn a:first-child {
    margin-right: 25px;
}

/*---------------------------
    Download App CSS
 ---------------------------*/

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

.download-app:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 50%;
    z-index: -1;
    background-color: var(--grayColor);
}

.download-app .download-app-box {
    background: var(--secondaryColor);
    padding: 92px 30px;
    border-radius: 10px;
}

.download-app .download-app-box .content-title span {
    color: var(--titleColor);
    font-weight: 700;
}

.download-app .download-app-box .app-btn {
    text-align: right;
}

.download-app .download-app-box .app-btn a:first-child {
    margin-right: 25px;
}

/*---------------------------
    Testimonial Section CSS
 ---------------------------*/

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

.testimonial-wrap.style-one .testimonial-shape-one,
.testimonial-wrap.style-one .testimonial-shape-two {
    position: absolute;
    z-index: -1;
}

.testimonial-wrap.style-one .testimonial-shape-one {
    top: 50%;
    left: 5%;
}

.testimonial-wrap.style-one .testimonial-shape-two {
    top: 50%;
    right: 5%;
}

.testimonial-wrap.style-one .testimonial-slider-wrap .testimonial-slider-one {
    padding-left: 15px;
    margin-left: -15px;
}

.testimonial-wrap.style-one .testimonial-slider-wrap .testimonial-slider-one .testimonial-card {
    margin-top: 15px;
}

.testimonial-wrap.style-two .testimonial-shape-one,
.testimonial-wrap.style-two .testimonial-shape-two,
.testimonial-wrap.style-three .testimonial-shape-one,
.testimonial-wrap.style-three .testimonial-shape-two {
    position: absolute;
    z-index: 0;
}

.testimonial-wrap.style-two .testimonial-shape-one,
.testimonial-wrap.style-three .testimonial-shape-one {
    top: 43%;
    left: 6.5%;
}

.testimonial-wrap.style-two .testimonial-shape-two,
.testimonial-wrap.style-three .testimonial-shape-two {
    top: 44%;
    right: 6.2%;
}

.testimonial-wrap.style-two .content-title p,
.testimonial-wrap.style-three .content-title p {
    margin-bottom: 30px;
}

.testimonial-wrap.style-two {
    background-image: url(../img/testimonials/testimonial-bg.webp);
    position: relative;
    z-index: 1;
}

.testimonial-wrap.style-two:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(12, 12, 12, 0.93);
    z-index: -1;
}

.testimonial-card {
    background-color: var(--whiteColor);
    border-radius: 10px;
    padding: 25px 25px 22px;
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.13);
    margin-bottom: 25px;
}

.testimonial-card .client-info-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.testimonial-card .client-info-wrap .client-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid var(--optionalColor);
}

.testimonial-card .client-info-wrap .client-img img {
    border-radius: 50%;
}

.testimonial-card .client-info-wrap .client-info {
    width: calc(100% - 88px);
    margin-left: 20px;
}

.testimonial-card .client-info-wrap .client-info h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 3px;
}

.testimonial-card .client-info-wrap .client-info span {
    font-size: 15px;
}

.testimonial-card .client-quote {
    margin: 25px 0 0;
}

.testimonial-card .client-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.testimonial-card .client-rating ul li {
    display: inline-block;
}

.testimonial-card .client-rating ul li i {
    color: #EBA400;
    font-size: 18px;
}

.testimonial-card .client-rating .quote-icon {
    width: 65px;
    max-height: 62px;
}

.testimonial-card .client-rating .quote-icon i {
    font-size: 65px;
    color: #D9DADD;
    line-height: 0.8;
    text-align: right;
}

/*---------------------------
    Blog Section CSS
 ---------------------------*/

.blog-wrap.style-one {
    position: relative;
    z-index: 1;
}

.blog-wrap.style-one .blog-shape-one,
.blog-wrap.style-one .blog-shape-two {
    position: absolute;
    z-index: -1;
}

.blog-wrap.style-one .blog-shape-one {
    top: 20%;
    left: 6.4%;
}

.blog-wrap.style-one .blog-shape-two {
    bottom: 20%;
    right: 6%;
}

.blog-card {
    margin-bottom: 25px;
}

.blog-card.style-one,
.blog-card.style-two,
.blog-card.style-three {
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.13);
}

.blog-card.style-one .blog-img,
.blog-card.style-two .blog-img,
.blog-card.style-three .blog-img {
    position: relative;
    overflow: hidden;
}

.blog-card.style-one .blog-img img,
.blog-card.style-two .blog-img img,
.blog-card.style-three .blog-img img {
    transition: var(--transition);
}

.blog-card.style-one .blog-img .blog-cat,
.blog-card.style-two .blog-img .blog-cat,
.blog-card.style-three .blog-img .blog-cat {
    position: absolute;
    background: var(--secondaryColor);
    color: var(--titleColor);
    padding: 5px 17px 4px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition);
    z-index: 1;
}

.blog-card.style-one .blog-img .blog-cat:after,
.blog-card.style-two .blog-img .blog-cat:after,
.blog-card.style-three .blog-img .blog-cat:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primaryColor);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.blog-card.style-one .blog-img .blog-cat:hover,
.blog-card.style-two .blog-img .blog-cat:hover,
.blog-card.style-three .blog-img .blog-cat:hover {
    color: var(--whiteColor);
}

.blog-card.style-one .blog-img .blog-cat:hover:after,
.blog-card.style-two .blog-img .blog-cat:hover:after,
.blog-card.style-three .blog-img .blog-cat:hover:after {
    opacity: 1;
    border-radius: 5px;
}

.blog-card.style-one .blog-info,
.blog-card.style-two .blog-info,
.blog-card.style-three .blog-info {
    padding: 25px;
}

.blog-card.style-one .blog-info .blog-metainfo,
.blog-card.style-two .blog-info .blog-metainfo,
.blog-card.style-three .blog-info .blog-metainfo {
    margin-bottom: 9px;
}

.blog-card.style-one .blog-info h3,
.blog-card.style-two .blog-info h3,
.blog-card.style-three .blog-info h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0;
}

.blog-card.style-one .blog-info h3 a,
.blog-card.style-two .blog-info h3 a,
.blog-card.style-three .blog-info h3 a {
    color: var(--titleColor);
}

.blog-card.style-one .blog-info h3 a:hover,
.blog-card.style-two .blog-info h3 a:hover,
.blog-card.style-three .blog-info h3 a:hover {
    color: var(--primaryColor);
}

.blog-card.style-one .blog-info p,
.blog-card.style-two .blog-info p,
.blog-card.style-three .blog-info p {
    margin: 9px 0 20px;
}

.blog-card.style-one .blog-info .link-one:after,
.blog-card.style-two .blog-info .link-one:after,
.blog-card.style-three .blog-info .link-one:after {
    display: none;
}

.blog-card.style-one:hover .blog-img img,
.blog-card.style-two:hover .blog-img img,
.blog-card.style-three:hover .blog-img img {
    transform: scale(1.05);
}

.blog-card.style-one {
    border-radius: 10px;
}

.blog-card.style-one .blog-img {
    border-radius: 10px 10px 0 0;
}

.blog-card.style-one .blog-img img {
    border-radius: 10px 10px 0 0;
}

.blog-card.style-one .blog-img .blog-cat {
    top: 15px;
    left: 15px;
}

.blog-card.style-one .blog-info {
    border-radius: 0 0 10px 10px;
}

.blog-card.style-two {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 10px;
}

.blog-card.style-two .blog-img {
    border-radius: 10px 0 0 10px;
    width: 230px;
}

.blog-card.style-two .blog-img img {
    border-radius: 10px 0 0 10px;
}

.blog-card.style-two .blog-img .blog-cat {
    top: 15px;
    left: 15px;
}

.blog-card.style-two .blog-info {
    width: calc(100% - 260px);
    margin-left: 30px;
    padding: 20px 25px 20px 0;
}

.blog-card.style-three {
    border-radius: 10px;
}

.blog-card.style-three .blog-img {
    border-radius: 10px 10px 0 0;
}

.blog-card.style-three .blog-img img {
    border-radius: 10px 10px 0 0;
}

.blog-card.style-three .blog-img .blog-cat {
    bottom: 15px;
    left: 35px;
}

.blog-card.style-three .blog-info {
    border-radius: 0 0 10px 10px;
}

.blog-card.style-three .blog-info h3 {
    margin-bottom: 15px;
}

.blog-metainfo li {
    display: inline-block;
    margin-right: 14px;
    padding-right: 14px;
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    color: var(--paraColor);
}

.blog-metainfo li:after {
    position: absolute;
    top: 0;
    right: -3px;
    content: "/";
    font-size: 15px;
    color: var(--paraColor);
}

.blog-metainfo li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.blog-metainfo li:last-child:after {
    display: none;
}

.blog-metainfo li i,
.blog-metainfo li img {
    position: absolute;
    top: 3px;
    left: 0;
    line-height: 0.8;
}

.blog-metainfo li i {
    color: var(--primaryColor);
}

.blog-slider-wrap .slider-btn .slider-prev,
.blog-slider-wrap .slider-btn .slider-next {
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.15);
}

/*---------------------------
        Sidebar CSS
 ---------------------------*/

.sidebar .sidebar-widget {
    padding: 25px;
    margin: 0 0 30px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.13);
}

.sidebar .sidebar-widget.style-two {
    padding: 0;
    box-shadow: none;
}

.sidebar .sidebar-widget .sidebar-widget-title {
    margin: 0 0 25px;
    font-size: 20px;
    position: relative;
    line-height: 1;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--primaryColor);
}

.sidebar .sidebar-widget:last-child {
    margin: 0;
}

/*-------------------------------
       Search Box Widget CSS
-------------------------------*/

.search-box-widget {
    position: relative;
}

.search-box-widget input {
    width: 100%;
    height: 50px;
    background: var(--grayColor);
    border: 1px solid #eee;
    color: var(--paraColor);
    font-size: 15px;
    line-height: 21px;
    padding: 10px 60px 10px 20px;
    border-radius: 5px;
}

.search-box-widget input::-moz-placeholder {
    opacity: 1;
}

.search-box-widget input::placeholder {
    opacity: 1;
}

.search-box-widget input:focus {
    border-color: var(--grayColor);
}

.search-box-widget button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: var(--primaryColor);
    padding: 14px 17px;
    border: none;
    border-radius: 0 5px 5px 0;
}

.search-box-widget button i {
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 0.7;
    position: relative;
    top: 2px;
}

/*-------------------------------
     Category Widget CSS
-------------------------------*/

.category-box.style-one li {
    position: relative;
    margin-bottom: 10px;
}

.category-box.style-one li:last-child {
    margin-bottom: 0;
}

.category-box.style-one li a {
    color: var(--paraColor);
    display: block;
    padding-left: 22px;
    transition: var(transition);
}

.category-box.style-one li a:before,
.category-box.style-one li a:after {
    position: absolute;
    top: 8px;
    left: 0;
    content: "";
    border-radius: 50%;
}

.category-box.style-one li a:before {
    width: 10px;
    height: 10px;
    background-color: var(--whiteColor);
    border: 2px solid var(--primaryColor);
}

.category-box.style-one li a:after {
    top: 11px;
    left: 3px;
    width: 4px;
    height: 4px;
    background-color: var(--primaryColor);
}

.category-box.style-one li a:hover {
    color: var(--primaryColor);
    padding-left: 20px;
}

.category-box.style-two li {
    display: block;
    margin-bottom: 12px;
}

.category-box.style-two li:last-child {
    margin: 0;
}

.category-box.style-two li a {
    display: block;
    padding: 18px 25px 18px 20px;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.15);
    transition: var(--transition);
    border-radius: 5px;
}

.category-box.style-two li a img {
    float: right;
    max-width: 13px;
    position: relative;
    top: 7px;
}

.category-box.style-two li a.active,
.category-box.style-two li a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.category-box.style-two li a.active i,
.category-box.style-two li a:hover i {
    color: var(--whiteColor);
}

.category-box.style-two li a.active img,
.category-box.style-two li a:hover img {
    filter: brightness(0) invert(1);
}

.category-box.style-two li a i {
    float: right;
    font-size: 22px;
    font-weight: 300;
    line-height: 0.8;
    position: relative;
    color: var(--paraColor);
    top: 2px;
    transition: var(--transition);
}

/*-------------------------------
     Booking Form CSS
-------------------------------*/

.booking-form .form-group {
    margin: 0 0 20px;
}

.booking-form .form-group input,
.booking-form .form-group textarea {
    width: 100%;
    background: var(--grayColor);
    border: 1px solid #EEEEEE;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
}

.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus {
    border: 1px solid rgba(0, 0, 0, 0.09);
}

.booking-form .form-group input {
    height: 50px;
}

.booking-form .form-group textarea {
    height: 120px;
    resize: none;
    padding-top: 18px;
}

/*-------------------------------
     Project Widget CSS
-------------------------------*/

.project-widget li {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.project-widget li p {
    margin: 0 10px 0 0;
    color: var(--primaryColor);
    font-weight: 600;
}

.project-widget li a,
.project-widget li span {
    color: var(--paraColor);
}

.project-widget li:last-child {
    margin-bottom: 0;
}

.event-map {
    border-radius: 5px;
}

.event-map iframe {
    border-radius: 5px;
}

#quickview-modal .modal-body {
    padding: 30px;
}

#quickview-modal .btn_close {
    position: absolute;
    background-color: transparent;
    border: none;
    top: -2px;
    right: -2px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    z-index: 99;
}

#quickview-modal .btn_close i {
    color: var(--titleColor);
    text-align: center;
    display: block;
    margin: 0 auto;
    font-size: 24px;
}

.video-popup {
    width: 100%;
    height: 600px;
}

.video-popup iframe {
    width: 100%;
    height: 100%;
}

/*-------------------------------
     Taglist Widget CSS
-------------------------------*/

.tag-list {
    margin-top: -12px;
}

.tag-list li {
    display: inline-block;
    margin: 12px 8px 0px 0px;
}

.tag-list li a {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    padding: 7px 20px;
    border-radius: 5px;
    color: var(--paraColor);
    background-color: var(--grayColor);
    border: 1px solid #eee;
    transition: var(transition);
}

.tag-list li a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-color: transparent;
}

/*-------------------------------
    Popular post Widget CSS
-------------------------------*/

.pp-post-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 20px;
}

.pp-post-item .pp-post-img {
    width: 85px;
    border-radius: 5px;
}

.pp-post-item .pp-post-img img {
    border-radius: 5px;
}

.pp-post-item .pp-post-info {
    width: calc(100% - 100px);
    margin-left: 15px;
    position: relative;
    top: 2px;
}

.pp-post-item .pp-post-info h6 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 0;
}

.pp-post-item .pp-post-info h6 a {
    color: var(--titleColor);
}

.pp-post-item .pp-post-info h6 a:hover {
    color: var(--primaryColor);
}

.pp-post-item .pp-post-info span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: block;
    position: relative;
    color: var(--paraColor);
    margin-bottom: 12px;
}

.pp-post-item:last-child {
    margin: 0;
}

/*----------------------------
    FAQ  & Error CSS
------------------------------*/

.faq-wrap {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.faq-wrap.style-one .faq-shape-one {
    position: absolute;
    z-index: -1;
    top: 54%;
    right: 6%;
}

.faq-wrap.style-one .faq-img {
    background-image: url(../img/faq-img-2.webp);
    height: 100%;
}

.faq-wrap.style-one .faq-content {
    padding: 100px 0;
}

.faq-wrap.style-two .faq-shape-one,
.faq-wrap.style-two .faq-shape-two {
    position: absolute;
    z-index: -1;
}

.faq-wrap.style-two .faq-shape-one {
    top: 45%;
    left: 5%;
}

.faq-wrap.style-two .faq-shape-two {
    top: 55%;
    right: 6%;
}

.faq-wrap.style-two .faq-img-wrap {
    position: relative;
    z-index: 1;
}

.faq-wrap.style-two .faq-img-wrap .play-now {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 92px;
    width: 92px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-color: var(--whiteColor);
}

.faq-wrap.style-two .faq-img-wrap .play-now i {
    font-size: 44px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
    color: #674DF3;
    position: relative;
    left: 2px;
}

.faq-wrap.style-two .faq-img-wrap .play-now .ripple,
.faq-wrap.style-two .faq-img-wrap .play-now .ripple:before,
.faq-wrap.style-two .faq-img-wrap .play-now .ripple:after {
    height: 92px;
    width: 92px;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed) span {
    background-color: transparent !important;
}

.accordion-button:not(.collapsed) span i.plus {
    visibility: hidden;
    opacity: 0;
}

.accordion-button:not(.collapsed) span i.minus {
    visibility: visible !important;
    opacity: 1 !important;
}

.accordion-item {
    border: none;
    margin: 0 0 15px;
    padding: 21px 30px;
    box-shadow: 0px 4px 15px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
}

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

.accordion-item .accordion-header .accordion-button {
    border-radius: 10px;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    border: none;
    text-align: left;
    align-items: flex-start;
}

.accordion-item .accordion-header .accordion-button:after {
    display: none;
}

.accordion-item .accordion-header .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-item .accordion-header .accordion-button span {
    min-width: 25px;
    min-height: 30px;
    text-align: center;
    position: relative;
    margin-right: 14px;
    border-radius: 50%;
    transition: var(--transition);
}

.accordion-item .accordion-header .accordion-button span i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    font-weight: 300;
    color: var(--primaryColor);
}

.accordion-item .accordion-header .accordion-button span i.minus {
    visibility: hidden;
    opacity: 0;
}

.accordion-item .accordion-header .accordion-button span i.minus {
    visibility: hidden;
    opacity: 0;
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    border-top-color: transparent;
    padding: 20px 0 0;
}

.accordion-body p {
    margin: 0;
}

.error-wrap {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.error-content img {
    display: block;
    margin: 0 auto 30px;
    max-width: 600px;
}

.error-content p {
    margin: 0 auto 20px;
    max-width: 520px;
}

/*-------------------------------
    Blog Details CSS
--------------------------------*/

.post-cat-title {
    margin-bottom: 30px;
}

article p,
.service-details-wrap p,
.terms-wrap p {
    margin-bottom: 20px;
}

article p strong,
article p b,
.service-details-wrap p strong,
.service-details-wrap p b,
.terms-wrap p strong,
.terms-wrap p b {
    color: var(--blackColor);
}

article p a,
.service-details-wrap p a,
.terms-wrap p a {
    color: var(--mainColor);
}

article p a:hover,
.service-details-wrap p a:hover,
.terms-wrap p a:hover {
    text-decoration: underline;
    color: var(--mainColor);
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6,
.service-details-wrap h1,
.service-details-wrap h2,
.service-details-wrap h3,
.service-details-wrap h4,
.service-details-wrap h5,
.service-details-wrap h6,
.terms-wrap h1,
.terms-wrap h2,
.terms-wrap h3,
.terms-wrap h4,
.terms-wrap h5,
.terms-wrap h6 {
    margin-bottom: 22px;
}

article h1,
.service-details-wrap h1,
.terms-wrap h1 {
    font-size: 36px;
}

article h2,
.service-details-wrap h2,
.terms-wrap h2 {
    font-size: 32px;
}

article h3,
.service-details-wrap h3,
.terms-wrap h3 {
    font-size: 28px;
}

article h4,
.service-details-wrap h4,
.terms-wrap h4 {
    font-size: 24px;
}

article h5,
.service-details-wrap h5,
.terms-wrap h5 {
    font-size: 20px;
}

article h6,
.service-details-wrap h6,
.terms-wrap h6 {
    font-size: 22px;
}

article p:last-child,
.service-details-wrap p:last-child,
.terms-wrap p:last-child {
    margin-bottom: 0;
}

article .single-para,
.service-details-wrap .single-para,
.terms-wrap .single-para {
    margin-bottom: 35px;
}

article .single-para:last-child,
.service-details-wrap .single-para:last-child,
.terms-wrap .single-para:last-child {
    margin-bottom: 0;
}

article ol,
.service-details-wrap ol,
.terms-wrap ol {
    margin-top: 20px;
    margin-bottom: 30px;
}

article ol li,
.service-details-wrap ol li,
.terms-wrap ol li {
    margin-bottom: 15px;
    color: var(--paraColor);
    padding-left: 3px;
}

article .content-feature-list,
.service-details-wrap .content-feature-list,
.terms-wrap .content-feature-list {
    margin: 25px 0 25px;
}

article .content-feature-list li,
.service-details-wrap .content-feature-list li,
.terms-wrap .content-feature-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--paraColor);
}

article .content-feature-list li:last-child,
.service-details-wrap .content-feature-list li:last-child,
.terms-wrap .content-feature-list li:last-child {
    margin-bottom: 0;
}

article .content-feature-list li i,
.service-details-wrap .content-feature-list li i,
.terms-wrap .content-feature-list li i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: var(--primaryColor);
}

article .single-img,
article .post-img,
.service-details-wrap .single-img,
.service-details-wrap .post-img,
.terms-wrap .single-img,
.terms-wrap .post-img {
    position: relative;
    margin-bottom: 30px;
    display: block;
    border-radius: 10px 10px 0 0;
}

article .single-img .play-now,
article .post-img .play-now,
.service-details-wrap .single-img .play-now,
.service-details-wrap .post-img .play-now,
.terms-wrap .single-img .play-now,
.terms-wrap .post-img .play-now {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 92px;
    width: 92px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-color: var(--whiteColor);
}

article .single-img .play-now i,
article .post-img .play-now i,
.service-details-wrap .single-img .play-now i,
.service-details-wrap .post-img .play-now i,
.terms-wrap .single-img .play-now i,
.terms-wrap .post-img .play-now i {
    font-size: 44px;
    line-height: 0.8;
    display: block;
    margin: 0 auto;
    color: #674DF3;
    position: relative;
    left: 2px;
}

article .single-img .play-now .ripple,
article .single-img .play-now .ripple:before,
article .single-img .play-now .ripple:after,
article .post-img .play-now .ripple,
article .post-img .play-now .ripple:before,
article .post-img .play-now .ripple:after,
.service-details-wrap .single-img .play-now .ripple,
.service-details-wrap .single-img .play-now .ripple:before,
.service-details-wrap .single-img .play-now .ripple:after,
.service-details-wrap .post-img .play-now .ripple,
.service-details-wrap .post-img .play-now .ripple:before,
.service-details-wrap .post-img .play-now .ripple:after,
.terms-wrap .single-img .play-now .ripple,
.terms-wrap .single-img .play-now .ripple:before,
.terms-wrap .single-img .play-now .ripple:after,
.terms-wrap .post-img .play-now .ripple,
.terms-wrap .post-img .play-now .ripple:before,
.terms-wrap .post-img .play-now .ripple:after {
    height: 92px;
    width: 92px;
}

article .single-img img,
article .post-img img,
.service-details-wrap .single-img img,
.service-details-wrap .post-img img,
.terms-wrap .single-img img,
.terms-wrap .post-img img {
    border-radius: 10px 10px 0 0;
}

article .single-img .blog-cat,
article .post-img .blog-cat,
.service-details-wrap .single-img .blog-cat,
.service-details-wrap .post-img .blog-cat,
.terms-wrap .single-img .blog-cat,
.terms-wrap .post-img .blog-cat {
    position: absolute;
    bottom: -15px;
    right: 40px;
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
    padding: 3px 17px 5px;
    font-size: 15px;
    border-radius: 5px;
    transition: var(--transition);
}

article .single-img .blog-cat:hover,
article .post-img .blog-cat:hover,
.service-details-wrap .single-img .blog-cat:hover,
.service-details-wrap .post-img .blog-cat:hover,
.terms-wrap .single-img .blog-cat:hover,
.terms-wrap .post-img .blog-cat:hover {
    background-color: var(--primaryColor);
}

article .blog-metainfo,
.service-details-wrap .blog-metainfo,
.terms-wrap .blog-metainfo {
    margin-bottom: 20px;
}

article {
    margin-bottom: 30px;
}

.blog-details-wrap .author-box {
    margin-bottom: 40px;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
}

.wp-block-quote {
    position: relative;
    padding: 30px 45px 30px 35px;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.15);
    margin: 30px 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 1;
    border-radius: 10px;
}

.wp-block-quote p {
    width: calc(100% - 90px);
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 0 20px;
    color: var(--blackColor);
    font-family: var(--secondaryFont);
}

.wp-block-quote .wp-quote-icon {
    width: 70px;
}

.wp-block-quote .wp-quote-icon i {
    font-size: 60px;
    color: var(--primaryColor);
}

.post-meta-option {
    margin-bottom: 35px;
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.13);
    padding: 17px 25px;
    border-radius: 10px;
}

.post-tag ul {
    display: inline-block;
}

.post-tag ul li {
    display: inline-block;
}

.post-tag ul li a {
    color: var(--paraColor);
    font-size: 16px;
    border-radius: 3px;
}

.post-tag ul li a:hover {
    color: var(--secondaryColor);
}

.post-tag span {
    margin-right: 10px;
    font-weight: 500;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 9, 44, 0.3);
}

.post-tag span i {
    position: relative;
    margin: 0 auto;
    color: var(--secondaryColor);
    line-height: 28px;
}

.post-share {
    display: inline-block;
}

.post-share span {
    font-weight: 400;
    color: var(--paraColor);
}

.post-share ul {
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.post-share ul li {
    display: inline-block;
    margin-right: 5px;
}

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

.post-share ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(27, 31, 46, 0.3);
    box-shadow: none;
    text-align: center;
}

.post-share ul li a i {
    color: var(--primaryColor);
    display: block;
    margin: 0 auto;
    line-height: 27px;
}

.post-share ul li a:hover {
    background-color: var(--primaryColor);
    border-color: transparent;
}

.post-share ul li a:hover i {
    color: var(--whiteColor);
}

.author-box {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
}

.author-box .author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    top: 5px;
}

.author-box .author-img img {
    border-radius: 50%;
}

.author-box .author-info {
    width: calc(100% - 125px);
    margin-left: 25px;
}

.author-box .author-info h4 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 8px;
}

.author-box .author-info .social-profile {
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.author-box .author-info .social-profile li {
    display: inline-block;
    margin-right: 5px;
}

.author-box .author-info .social-profile li:last-child {
    margin-right: 0;
}

.author-box .author-info .social-profile li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(0, 9, 44, 0.3);
    box-shadow: none;
    text-align: center;
}

.author-box .author-info .social-profile li a i {
    color: var(--primaryColor);
    display: block;
    margin: 0 auto;
    line-height: 26px;
}

.author-box .author-info .social-profile li a:hover {
    background-color: var(--primaryColor);
    border-color: transparent;
}

.author-box .author-info .social-profile li a:hover i {
    color: var(--whiteColor);
}

.comment-box-title {
    margin-bottom: 25px;
}

.comment-item-wrap .comment-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 35px 35px 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.15);
}

.comment-item-wrap .comment-item.reply {
    margin-left: 40px;
}

.comment-item-wrap .comment-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.comment-item-wrap .comment-item .comment-author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    top: 4px;
}

.comment-item-wrap .comment-item .comment-author-img img {
    border-radius: 50%;
}

.comment-item-wrap .comment-item .comment-author-wrap {
    width: calc(100% - 102px);
    margin-left: 22px;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name {
    margin: 0 0 20px;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name h5 {
    line-height: 1;
    margin: 0 20px 0 0;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--paraColor);
    margin-top: 8px;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-text p {
    margin: 0;
}

.comment-item-wrap .reply-btn {
    display: inline-block;
    line-height: 1;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    color: var(--paraColor);
}

.comment-item-wrap .reply-btn:hover {
    color: var(--primaryColor);
}

.comment-box-title h4 {
    margin-bottom: 0;
    line-height: 1;
}

.comment-box-title p {
    margin-top: 10px;
    margin-bottom: 0;
}

#cmt-form {
    margin-top: 40px;
    padding: 30px;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
}

#cmt-form h3 {
    font-size: 24px;
    margin: 0 0 10px;
}

/*---------------------------------------
        Sign In CSS
----------------------------------------*/

.login-header {
    margin: 0 0 15px;
}

.login-header h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
}

.login-form-wrap {
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
}

.login-form-wrap h3 {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 15px;
}

.login-form-wrap p a {
    color: var(--primaryColor);
}

.login-form-wrap .login-form .form-group {
    margin: 0 0 20px;
}

.login-form-wrap .login-form .form-group input {
    background: var(--grayColor);
    border: 1px solid #EEE;
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    border-radius: 0;
}

.login-form-wrap .or-text {
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
}

.login-form-wrap .or-text:before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.login-form-wrap .or-text span {
    display: inline-block;
    padding: 0 15px;
    z-index: 1;
    position: relative;
    color: var(--paraColor);
    background-color: var(--grayColor);
}

.login-form-wrap .fb-btn,
.login-form-wrap .gg-btn {
    margin: 20px 0;
    text-align: center;
    width: 100%;
    display: block;
    padding: 13px 10px;
    border-radius: 5px;
}

.login-form-wrap .fb-btn {
    color: var(--whiteColor);
    background-color: #3B5998;
    font-family: var(--secondaryFont);
    font-weight: 600;
    text-align: center;
}

.login-form-wrap .gg-btn {
    color: var(--whiteColor);
    background-color: #EA4335;
    font-family: var(--secondaryFont);
    font-weight: 600;
    text-align: center;
}

/*-------------------------------
         Contact CSS
-------------------------------*/

.contact-card-wrap {
    border-radius: 10px;
    background: var(--whiteColor);
    box-shadow: 0px 4px 20px 0px rgba(79, 139, 173, 0.13);
    padding: 50px 30px;
}

.contact-card-wrap .contact-card {
    padding: 25px;
    border-radius: 10px;
    background-color: var(--grayColor);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-card-wrap .contact-card:last-child {
    margin-bottom: 0;
}

.contact-card-wrap .contact-card .contact-icon {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondaryColor);
    transition: var(--transition);
}

.contact-card-wrap .contact-card .contact-icon i,
.contact-card-wrap .contact-card .contact-icon img {
    color: var(--titleColor);
    display: block;
    margin: 0 auto;
    transition: var(--transition);
}

.contact-card-wrap .contact-card .contact-icon img {
    min-width: 20px;
    transition: var(--transition);
    filter: brightness(0) invert(0);
    transition: var(--transition);
}

.contact-card-wrap .contact-card .contact-info {
    width: calc(100% - 90px);
    margin-left: 30px;
}

.contact-card-wrap .contact-card .contact-info h3 {
    font-size: 20px;
    line-height: 29px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-card-wrap .contact-card .contact-info p,
.contact-card-wrap .contact-card .contact-info a {
    margin: 0;
}

.contact-card-wrap .contact-card .contact-info a {
    display: block;
}

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

#cmt-form,
#contactForm {
    box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
    border-radius: 10px;
    padding: 30px;
    background-color: var(--whiteColor);
}

#cmt-form .form-group,
#contactForm .form-group {
    margin: 0 0 20px;
}

#cmt-form .form-group input,
#cmt-form .form-group textarea,
#contactForm .form-group input,
#contactForm .form-group textarea {
    width: 100%;
    background: var(--grayColor);
    border: 1px solid #EEE;
    padding: 10px 20px;
    border-radius: 5px;
}

#cmt-form .form-group input:focus,
#cmt-form .form-group textarea:focus,
#contactForm .form-group input:focus,
#contactForm .form-group textarea:focus {
    border: 1px solid rgba(0, 0, 0, 0.09);
}

#cmt-form .form-group textarea,
#contactForm .form-group textarea {
    resize: none;
    padding-top: 18px;
}

#cmt-form .form-group input {
    height: 50px;
}

#cmt-form .form-group textarea {
    height: 150px;
}

#contactForm .form-group input {
    height: 55px;
}

#contactForm .form-group textarea {
    height: 280px;
}

.comp-map {
    height: 400px;
}

.comp-map iframe {
    width: 100%;
    height: 100%;
}

.btn.disabled {
    opacity: 1;
}

.checkbox {
    display: block;
}

.checkbox.form-check {
    padding-left: 0;
}

.checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkbox label {
    position: relative;
    cursor: pointer;
    padding-left: 20px;
    color: var(--paraColor);
}

.checkbox label:before {
    content: "";
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 1px solid var(--paraColor);
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 5px;
}

.checkbox label a {
    color: var(--primaryColor);
    font-weight: 500;
}

.checkbox.style2 label:before {
    border-radius: 50%;
    border-color: var(--primaryColor);
}

.checkbox input:checked+label:before {
    border-color: var(--primaryColor);
}

.checkbox input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 3px;
    width: 9px;
    height: 9px;
    border: none;
    background: var(--primaryColor);
}

.checkbox.style2 input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: var(--primaryColor);
}

/*# sourceMappingURL=style.css.map */