@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    position: relative;
    overflow-x: hidden;
    color: var(--white);
    word-break: break-word;
    background-color: var(--themeColor);
    font: 15px/25px 'Poppins', sans-serif;
}

body::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    z-index: -1;
    height: 100%;
    position: absolute;
    background-image: url('../images/body-line.png');
    background-repeat: no-repeat;
    background-size: cover;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #7f7f7f;
    --themeColor: #1d3a42;
    --themeColor2: #3d6777;
    --headingColor: #161a1d;
    --headingColor2: #131212;
}

a {
    color: var(--white);
    white-space: initial;
    text-decoration: none;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--white);
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'Kardust-Regular';
    src: url(../fonts/Kardust-Regular.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    margin: 0 0 0px;
    font-size: 80px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    font-family: 'Kardust-Regular';
}

h2 {
    font-size: 55px;
    margin: 0 0 0px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: capitalize;
    font-family: 'Kardust-Regular';
}

h3 {
    margin: 0 0 0px;
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
    font-family: 'Kardust-Regular';
}

h4 {
    font-size: 25px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Kardust-Regular';
}

h5 {
    font-size: 20px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Kardust-Regular';
}

h6 {
    margin: 0 0 0px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    color: var(--white);
    font-family: 'Poppins';
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading h2 {
    margin-bottom: 15px;
}

.section-heading h2 span {
    font-weight: 700;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 640px;
}

.theme-btn-1 {
    z-index: 1;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    width: fit-content;
    padding: 15px 30px;
    color: var(--white);
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff38;
    background-image: linear-gradient(90deg, rgb(58, 85, 93) 0%, rgb(29, 58, 66) 100%);
}

.theme-btn-1::before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    pointer-events: none;
    border-radius: 50px;
    border: 1px solid var(--white);
    clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
}


/*header css start */

.menuSec {
    padding: 20px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    z-index: 0;
    display: flex;
    height: 100%;
    font-size: 14px;
    overflow: hidden;
    font-weight: 400;
    line-height: 25px;
    padding: 10px 15px;
    color: var(--white);
    transition: ease-in;
    align-items: center;
    position: relative;
    border-radius: 100px;
    font-family: 'Poppins';
    justify-content: center;
    text-transform: uppercase;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.menuSec ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: ease-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--white);
}

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menuSec #menu {
    height: 50px;
    padding: 3px;
    border: 1px solid #ffffff28;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    border-radius: 100px;
    justify-content: space-between;
    background-color: var(--themeColor);
}

/*header css start */


/*banner css start */

.banner_text {
    gap: 15px;
    display: flex;
    text-align: center;
    margin-bottom: 40px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.banner_text p {
    max-width: 770px;
}

.banner_img {
    top: 20px;
    width: 100%;
    height: 350px;
    display: flex;
    position: relative;
    margin-bottom: -140px;
    justify-content: center;
    align-items: flex-start;
}

.banner_img img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}

.banner-line {
    z-index: 1;
    padding: 45px 0px;
    position: relative;
    border-top: 1px solid #ffffff28;
}

.banner-line-text {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.main_slider {
    position: relative;
}

.main_slider::before {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    content: '';
    opacity: 0.6;
    height: 100%;
    position: absolute;
    filter: brightness(1.7);
    background-image: url(../images/banner-before.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

/*banner css end*/


.built-sec {
    position: relative;
    padding: 100px 0px 0px;
}

.built-sec::before {
    top: 0%;
    left: 0%;
    width: 35%;
    content: '';
    opacity: 0.5;
    height: 420px;
    position: absolute;
    filter: brightness(4.5);
    background-image: url(../images/section-before.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.professional-text .theme-btn-1 {
    padding: 15px 50px;
}

.counter-ul {
    border-top: 1px solid #ffffff38;
    border-bottom: 1px solid #ffffff38;
}

.counter-ul ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.counter-ul ul li {
    padding: 50px 4%;
    width: fit-content;
    position: relative;
}

.counter-ul ul li h4 {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins';
}

.counter-ul ul li:first-child {
    padding-left: 0px;
}

.counter-ul ul li:last-child {
    padding-right: 0px;
}

.counter-ul-one::before {
    right: 0;
    width: 1px;
    height: 1px;
    width: 100%;
    content: '';
    bottom: -1px;
    position: absolute;
    background: linear-gradient(184deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

.counter-ul-two::before {
    right: 0;
    top: -1px;
    width: 1px;
    height: 1px;
    width: 100%;
    content: '';
    position: absolute;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

.counter-ul-two::after {
    left: 0;
    top: 0px;
    width: 1px;
    width: 1px;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

.counter-ul-three::before {
    right: 0;
    width: 1px;
    height: 1px;
    width: 100%;
    content: '';
    bottom: -1px;
    position: absolute;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

.counter-ul-three::after {
    left: 0;
    width: 1px;
    width: 1px;
    content: '';
    bottom: 0px;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

.counter-ul-four::before {
    right: 0;
    top: -1px;
    width: 1px;
    height: 1px;
    width: 100%;
    content: '';
    position: absolute;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

.counter-ul-four::after {
    left: 0;
    top: 0px;
    width: 1px;
    width: 1px;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

.counter-ul-five::before {
    right: 0;
    width: 1px;
    height: 1px;
    width: 100%;
    content: '';
    bottom: -1px;
    position: absolute;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

.counter-ul-five::after {
    left: 0;
    width: 1px;
    width: 1px;
    content: '';
    bottom: 0px;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.6;
    }

    50% {
        background-position: 100% 50%;
        opacity: 1;
    }

    100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
}

.counter-ul-one::before,
.counter-ul-two::before,
.counter-ul-two::after,
.counter-ul-three::before,
.counter-ul-three::after,
.counter-ul-four::before,
.counter-ul-four::after,
.counter-ul-five::before,
.counter-ul-five::after {
    background-size: 200% 200%;
    animation: borderFlow 4s ease-in-out infinite;
}

/* service-sec */


.service-sec {
    padding: 100px 0px;
    position: relative;
}

.service-sec::before {
    right: 0;
    width: 30%;
    z-index: -1;
    content: '';
    bottom: -20%;
    opacity: 0.5;
    height: 420px;
    position: absolute;
    filter: brightness(4.5);
    transform: rotate(180deg);
    background-image: url(../images/section-before.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.service-box {
    padding: 30px;
    overflow: hidden;
    margin: 15px 0px;
    position: relative;
    border-radius: 20px;
    border: 1px solid #ffffff38;
}

.service-box::before {
    left: 0;
    top: -42px;
    z-index: -1;
    content: '';
    width: 101%;
    height: 152%;
    position: absolute;
    transform: rotate(90deg);
    background-image: url(../images/box-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.service-box:hover::before {
    top: -40px;
    height: 170%;
    transform: rotate(0deg);
}

.service-box ul {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: space-between;
}

.service-box ul li img {
    width: 60px;
    height: 70px;
    object-fit: contain;
}

.service-box h4 {
    margin-bottom: 10px;
}

.service-box p {
    opacity: 0.5;
    margin-bottom: 15px;
}

.service-box .service-box-a {
    font-size: 16px;
    text-decoration: underline;
}

.serviceSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}



.serviceSlider .slick-prev,
.serviceSlider .slick-next {
    width: 50px;
    height: 50px;
    display: flex;
    opacity: 0.5;
    border-radius: 50%;
    align-items: center;
    color: var(--white);
    transition: ease-in;
    justify-content: center;
    border: 1px solid #fff;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.serviceSlider .slick-prev:hover,
.serviceSlider .slick-next:hover {
    opacity: 1;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.serviceSlider .slick-prev::before,
.serviceSlider .slick-next::before {
    content: '\f060';
    color: var(--white);
    font-family: 'Font Awesome 7 Pro';
}

.serviceSlider .slick-prev {
    left: -70px;
}

.serviceSlider .slick-next {
    right: -70px;
}

.serviceSlider .slick-next::before {
    content: '\f061';
}

/* service-sec */

/* inner-professional-sec */

.inner-professional-sec {
    padding: 100px 0px;
}

section.professional-sec.inner-professional-sec::before {
    bottom: 0;
    margin: auto;
}

/* inner-professional-sec */

/* inner-banner */

section.main_slider.inner-banner {
    display: flex;
    min-height: 380px;
    align-items: center;
    justify-content: center;
}

section.main_slider.inner-banner::before {
    bottom: 0;
    top: unset;
    z-index: -1;
    height: 1000px;
}

/* inner-banner */


/* professional-sec */

.professional-sec {
    position: relative;
}

.professional-sec::before {
    top: 0%;
    left: -5%;
    width: 30%;
    content: '';
    opacity: 0.5;
    height: 420px;
    position: absolute;
    filter: brightness(4.5);
    background-image: url(../images/section-before.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.professional-box {
    padding: 35px;
    overflow: hidden;
    margin: 15px 0px;
    position: relative;
    border-radius: 20px;
    border: 1px solid #ffffff38;
}

.professional-box::before {
    top: 0px;
    left: 0;
    z-index: -1;
    content: '';
    width: 101%;
    height: 140%;
    position: absolute;
    transform: rotate(0deg);
    background-image: url(../images/box-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.professional-box:hover:before {
    top: -40px;
    transform: rotate(90deg);
}

.professional-box img {
    width: 60px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 30px;
}

.professional-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.professional-box p {
    opacity: 0.5;
    margin-bottom: 15px;
}

.professional-box .professional-box-a {
    text-decoration: underline;
}

.professional-heading {
    margin-bottom: 40px;
}

.professional-text {
    gap: 30px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
}

.professional-text p {
    text-align: end;
    max-width: 550px;
}

.professional-text-select {
    width: 100%;
    position: relative;
    max-width: 240px;
}

.professional-text-select select {
    width: 100%;
    font-size: 16px;
    padding: 10px 20px;
    color: var(--white);
    border-radius: 50px;
    border: 1px solid #ffffff38;
    background-color: transparent;
}

.professional-text-select i {
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    position: absolute;
    height: fit-content;
    pointer-events: none;
}

.professional-text-select select option {
    background-color: var(--themeColor);
}

/* professional-sec */

/* why-choose-sec */

.why-choose-sec {
    padding: 100px 0px;
    position: relative;
}

.why-choose-sec::before {
    right: 0;
    top: -20%;
    width: 30%;
    content: '';
    opacity: 0.5;
    height: 420px;
    position: absolute;
    filter: brightness(4.5);
    transform: rotate(180deg);
    background-image: url(../images/section-before.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.why-choose-sec::after {
    left: 0;
    bottom: -20%;
    width: 30%;
    content: '';
    opacity: 0.5;
    height: 420px;
    position: absolute;
    filter: brightness(4.5);
    background-image: url(../images/section-before.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.why-choose-img {
    height: 500px;
    display: flex;
    min-height: 100%;
    position: relative;
    align-items: center;
    justify-content: flex-end;
}

.why-choose-img::before {
    left: -40px;
    width: 150%;
    bottom: 0px;
    content: '';
    height: 137px;
    position: absolute;
    background-image: url(../images/why-choose-img-before.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.why-choose-img img {
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    width: 850px;
    max-width: 100vw;
    position: absolute;
    object-fit: contain;
}

.why-choose-text {
    padding-left: 50px;
}

.why-choose-text h2 {
    margin-bottom: 10px;
}

.why-choose-text p {
    opacity: 0.5;
    margin-bottom: 10px;
}

.why-choose-text ul {
    padding: 40px 0px;
    position: relative;
    border-top: 1px solid#ffffff8a;
    border-bottom: 1px solid#ffffff8a;
}

.why-choose-text ul::before {
    left: 0;
    top: -1.5px;
    width: 30%;
    z-index: 1;
    content: '';
    height: 1px;
    position: absolute;
    animation: lineLeft 8s ease-in-out infinite;
    background: linear-gradient(-1deg, rgba(64, 70, 72, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.why-choose-text ul::after {
    right: 0;
    width: 30%;
    height: 1px;
    bottom: -1px;
    content: '';
    position: absolute;
    animation: lineRight 8s ease-in-out infinite;
    background: linear-gradient(-210deg, rgba(64, 70, 72, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

@keyframes lineLeft {
    0% {
        left: 0px;
    }

    50% {
        left: 70%;
    }

    100% {
        left: 0px;
    }
}

@keyframes lineRight {
    0% {
        right: 0px;
    }

    50% {
        right: 70%;
    }

    100% {
        right: 0px;
    }
}

.why-choose-text ul li {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid#ffffff8a;
}

.why-choose-text ul li::before {
    left: 0;
    width: 30%;
    height: 1px;
    bottom: -1px;
    content: '';
    position: absolute;
    animation: lineLeft 8s ease-in-out infinite;
    background: linear-gradient(-210deg, rgba(64, 70, 72, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.why-choose-text ul li:first-child:before {
    right: 0;
    left: unset;
    animation: lineRight 8s ease-in-out infinite;
}

.why-choose-text ul li:last-child {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.why-choose-text ul li:last-child::before {
    display: none;
}

.why-choose-text ul li p {
    margin-bottom: 0px;
}

/* why-choose-sec */


/* download-sec */

.download-sec {
    display: flex;
    padding: 100px 0;
    min-height: 430px;
    align-items: center;
    justify-content: center;
    background-image: url(../images/download-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.download-text {
    gap: 10px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.download-text p {
    opacity: 0.5;
    max-width: 635px;
}

/* download-sec */

/* inner-service-sec */


section.service-sec.inner-service-sec::before {
    top: 0%;
    left: 0%;
    bottom: 0;
    width: 35%;
    content: '';
    right: unset;
    opacity: 0.5;
    margin: auto;
    height: 420px;
    position: absolute;
    transform: rotate(0);
    filter: brightness(4.5);
    background-image: url(../images/section-before.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.service-detail ul {
    gap: 25px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.service-detail ul li img {
    width: 65px;
    height: 65px;
    position: relative;
    object-fit: contain;
}

.service-detail ul li:first-child {
    flex-shrink: 0;
}

.service-detail ul li h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.service-detail ul li h2 span {
    margin-left: 50px;
}

.service-detail ul li p {
    opacity: 0.5;
    margin-bottom: 25px;
}


/* inner-service-sec */

/*contact start*/
.cont-txt-top {
    text-align: center;
    margin-bottom: 50px;
}

.cont-txt-top h6 {
    font-size: 16px;
    color: #fff;
    padding: 5px 20px;
    background-color: #353541;
    width: fit-content;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.cont-txt-top h3 {
    font-size: 45px;
    line-height: 55px;
    color: #fff;
    font-weight: 300;
}

.cont-txt-top h3 span {
    color: #5455ff;
    font-weight: 600;
}

.cont-img {
    z-index: 1;
    width: 100%;
    height: 400px;
    overflow: hidden;
    min-height: 100%;
    position: relative;
    border-radius: 20px;
}

.cont-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cont-form {
    padding: 30px 0px;
}

.cont-bx-main {
    width: 100;
    margin: 0 auto;
    padding: 0 20px;
    padding-left: 0;
    border-radius: 20px;
    border: 1px solid #ffffff7a;
    background-color: var(--themeColor);
}

.cont-form input {
    width: 100%;
    padding: 14px 20px;
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #ffffff7a;
    background-color: var(--themeColor);
}

.cont-form textarea {
    width: 100%;
    resize: none;
    height: 150px;
    padding: 12px 20px;
    color: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #ffffff7a;
    background-color: var(--themeColor);
}

.cont-form input::placeholder {
    color: #9a9aa0;
}

section.contact {
    position: relative;
    padding: 100px 0px;
}

section.contact::before {
    top: 0%;
    left: 0%;
    bottom: 0;
    width: 35%;
    content: '';
    right: unset;
    opacity: 0.5;
    margin: auto;
    height: 420px;
    position: absolute;
    transform: rotate(0);
    filter: brightness(4.5);
    background-image: url(../images/section-before.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

ul.cont-add {
    display: flex;
    margin-bottom: 0;
    position: relative;
    align-items: center;
    margin: 50px 0px 30px;
    justify-content: space-between;
}

ul.cont-add li {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

ul.cont-add li a {
    font-size: 21px;
    position: relative;
    color: var(--white);
    padding: 25px 0px;
}

ul.cont-add li a::before {
    top: 0;
    width: 1px;
    content: '';
    right: -39%;
    height: 100%;
    opacity: 0.2;
    position: absolute;
    background-color: var(--white);
}

ul.cont-add li i {
    font-size: 20px;
    color: #fff;
}

ul.cont-add li p {
    font-size: 21px;
    color: #fff;
    margin: 0;
}

ul.cont-add li p span {
    display: block;
}

/*contact end*/

/* inner-built-sec */

.inner-built-sec {
    padding: 0px 0px 100px;
}

.about-page-sec {
    padding: 100px 0px 50px;
}

.about-page-content h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.about-page-content p {
    opacity: 0.5;
    margin-bottom: 25px;
}

/* inner-built-sec */

/* testimonial sec starts  */

section.etstimonial-sec {
    position: relative;
    padding: 0 0px 100px;
}

section.etstimonial-sec::before {
    right: 0;
    width: 30%;
    content: '';
    opacity: 0.5;
    bottom: -20%;
    height: 420px;
    position: absolute;
    background-image: url(../images/section-before.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    filter: brightness(4.5);
    transform: rotate(180deg);
}

.testimonial-slidder .slick-active {
    opacity: 1;
}

.testimonial-slidder .slick-slide {
    transition: all ease-in-out 0.3s;
    opacity: 1;
}

.testi-card-info>div>img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
}

.testi-card-info {
    gap: 20px;
    z-index: 1;
    display: flex;
    margin-top: 30px;
    padding-top: 30px;
    position: relative;
    align-items: center;
    border-top: 1px solid #e5e5e5;
}

.testi-card-info>div>p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Kardust-Regular';
}

.testi-card-info>div>p.desination {
    font-size: 12px;
    font-family: 'Poppins';
}

.testi-card-info>div>p.desination {
    opacity: 0.5;
}

.testi-card-ratting {
    gap: 15px;
    z-index: 1;
    display: flex;
    position: relative;
    margin-bottom: 35px;
    align-items: flex-end;
}

.testi-card {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    padding: 30px 20px 20px;
    border: 1px solid #ffffff28;
    background-color: var(--themeColor);
    box-shadow: 19.799px 19.799px 51px 0px rgba(0, 0, 0, 0.05);
}

.testi-card>p {
    padding: 10px 0;
}

.testi-card-text p {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

.testimonial-heading {
    padding: 0 0 30px 0;
}

.testi-card-ratting p i {
    color: #f9ae0e;
}

.testi-card-ratting p {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.testi-card-text {
    height: 130px;
    overflow-y: scroll;
}

.testi-card-text::-webkit-scrollbar {
    width: 4px;
    border-radius: 10px;
    background-color: #fff;
}

.testi-card-text::-webkit-scrollbar-thumb {
    background-color: var(--themeColor2);
    outline: 1px solid var(--themeColor2);
    border-radius: 10px;
}

.testi-card-text::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.075);
}

.testimonial-slidder .slick-slide.slick-current.slick-active .testi-card {
    background-color: var(--themeColor);
}

.testimonial-slidder .slick-slide.slick-current.slick-active .testi-card p {
    color: var(--white);
}

.testimonial-slidder .slick-slide.slick-current.slick-active .testi-card>p {
    color: var(--white);
}

.testimonial-slidder .slick-prev,
.testimonial-slidder .slick-next {
    width: 50px;
    height: 50px;
    display: flex;
    opacity: 0.5;
    border-radius: 50%;
    align-items: center;
    color: var(--white);
    transition: ease-in;
    justify-content: center;
    border: 1px solid #fff;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.testimonial-slidder .slick-prev:hover,
.testimonial-slidder .slick-next:hover {
    opacity: 1;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.testimonial-slidder .slick-prev::before,
.testimonial-slidder .slick-next::before {
    content: '\f060';
    color: var(--white);
    font-family: 'Font Awesome 7 Pro';
}

.testimonial-slidder .slick-prev {
    left: -70px;
}

.testimonial-slidder .slick-next {
    right: -70px;
}

.testimonial-slidder .slick-next::before {
    content: '\f061';
}

.testimonial-slidder .slick-slide {
    opacity: 0;
    margin: 0px 10px;
}

.testimonial-slidder .slick-active {
    opacity: 1;
}

.testi-card.testi-card-after::before {
    top: 0;
    left: 0%;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(130deg, rgba(55, 94, 109, 1) 0%, rgba(31, 61, 69, 1) 39%, rgba(29, 58, 66, 1) 100%);
}

.testi-card.testi-card-before::before {
    top: 0;
    left: 0%;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(-45deg, rgba(55, 94, 109, 1) 0%, rgba(31, 61, 69, 1) 39%, rgba(29, 58, 66, 1) 100%);
}

/* testimonial sec startsends*/

/* footer-btm */

.footerSec {
    overflow: hidden;
    position: relative;
    padding: 50px 0px 0px;
}

.footerSec::before {
    top: -40%;
    left: 0;
    right: 0;
    width: 100%;
    content: '';
    opacity: 0.6;
    height: 140%;
    position: absolute;
    filter: brightness(1.7);
    transform: rotate(180deg);
    background-image: url(../images/banner-before.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
}

.main-footer {
    padding: 50px 0px;
    border-top: 1px solid #ffffff28;
}

.footer-btm {
    padding: 20px 0px;
    border-top: 1px solid #ffffff28;
}

.copy-txt {
    text-align: center;
}

.main-footer h5 {
    font-size: 20px;
    margin-bottom: 15px;
}

.main-footer h5 span {
    display: block;
}

.foot-links ul {
    columns: 2;
}

.footer-links ul li a,
.foot-links ul li a {
    font-size: 14px;
    line-height: 40px;
}

.news-letter form {
    position: relative;
}

.news-letter form input {
    width: 100%;
    height: 55px;
    color: var(--white);
    padding: 10px 25px;
    padding-right: 200px;
    border-radius: 50px;
    border: 1px solid #ffffff28;
    background-color: var(--themeColor);
}

.news-letter form input::placeholder {
    color: var(--white);
}

.news-letter form button {
    top: 0;
    right: 0;
    padding: 15px 50px;
    position: absolute;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo a img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 20px;
}

.footer-contact a {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
}


/* footer-btm */

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/
/* Loader CSS */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--themeColor);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease-out;
}

.loader {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* smooth background */
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.05) 30%,
            transparent 70%);
    overflow: hidden;
}

/* outside circle */
.loader::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.6);
    animation: loader-spin 2s linear infinite;
}

/* rotating circle */
.loader::after {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: conic-gradient(from 90deg, rgba(255, 255, 255, 0.2), transparent);
    filter: blur(2px);
    animation: loader-spin-reverse 1.5s linear infinite;
}

/* center circle */
.loader__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    animation: loader-pulse 1s ease-in-out infinite;
}

/* Container */
.loader__orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: orbit-rotate 3s linear infinite;
}

/* dots */
.loader__dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* 4 dots */
.loader__dot:nth-child(1) {
    transform: rotate(0deg) translate(60px);
}

.loader__dot:nth-child(2) {
    transform: rotate(90deg) translate(60px);
}

.loader__dot:nth-child(3) {
    transform: rotate(180deg) translate(60px);
}

.loader__dot:nth-child(4) {
    transform: rotate(270deg) translate(60px);
}

/* Animations */

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-spin-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes loader-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes orbit-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}