@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/***** General CSS *****/

body {
    overflow-x: hidden;
    word-break: break-word;
    color: var(--textColor);
    font: 15px/25px 'Montserrat', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #7f7f7f;
    --themeColor: #3e4a87;
    --themeColor2: #222544;
    --headingColor: #161a1d;
    --headingColor2: #131212;
}

a {
    white-space: initial;
    text-decoration: none;
    display: inline-block;
    color: var(--themeColor);
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

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: var(--black);
    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: 'Evogria';
    src: url(../fonts/Evogria.otf);
}


/***** 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 {
    font-size: 65px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Evogria';
}

h2 {
    color: #000;
    font-size: 60px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Evogria';
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    color: #000000;
    font-weight: 600;
    font-family: 'Evogria';
}

h4 {
    color: #000;
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Evogria';
}

h5 {
    color: #000;
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Evogria';
}

h6 {
    color: #000;
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Montserrat';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Montserrat';
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.theme-btn-1 {
    gap: 10px;
    display: flex;
    color: #fff;
    font-size: 14px;
    border-width: 1px;
    width: max-content;
    border-style: solid;
    border-radius: 50px;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    font-family: 'Montserrat';
    text-transform: uppercase;
    transition-duration: 0.5s;
    padding: 6px 8px 6px 15px;
    border-color: rgb(255, 255, 255);
    background-color: var(--themeColor);
    box-shadow: 0px 11px 14px 0px rgba(34, 37, 68, 0.18);
}

.theme-btn-1 span {
    width: 45px;
    height: 45px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.theme-btn-1 span img {
    width: 13px;
    margin: 0px;
    height: 10px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7449%) hue-rotate(218deg) brightness(116%) contrast(111%);
}

.theme-btn-1:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.theme-btn-1:hover span {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 950px;
}


/*header css start */

.menuSection {
    padding: 0px 5%;
}

.menuSection .row {
    align-items: center;
}

.header-logo {
    height: 80px;
    padding: 20px;
    position: relative;
    width: fit-content;
}

.header-logo::before {
    top: 0;
    right: 100%;
    content: '';
    width: 100vw;
    height: 100%;
    position: absolute;
    position: absolute;
    background-color: #b4b4ac;
}

.header-logo a,
.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    margin: 0;
    gap: 15px;
    padding: 0;
    display: flex;
    list-style: none;
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: flex-end;
    text-transform: uppercase;
}

.menuSec ul li {
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    color: #100f0f;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 0px;
    position: relative;
    text-decoration: none;
}

.menuSec ul li a.theme-btn-1 {
    color: var(--white);
    padding: 6px 8px 6px 15px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    color: var(--themeColor);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.menuSec ul li a.theme-btn-1.active {
    background-color: var(--white);
    border: 1px solid var(--themeColor);
}

.menuSec ul li a i {
    padding-left: 4px;
    font-size: 12px;
}

.menuSec li>ul>li>a {
    border: none;
    color: #fff;
    font-size: 13px;
    overflow: hidden;
    line-height: 20px;
    padding: 13px 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li ul li a:hover {
    color: var(--white);
    background-color: var(--themeColor);
}

.menuSec li:hover>ul {
    top: 38px;
    left: 0px;
    width: 230px;
    display: block;
    z-index: 1000;
    backdrop-filter: blur(10px);
    text-align: left;
    position: absolute;
    background-color: #0000009a;
}


/*header css start */


/*banner css start */

.main_slider {
    display: flex;
    padding: 0px 5%;
    min-height: 750px;
    position: relative;
    align-items: center;
    justify-content: center;
    background-image: url(../images/banner-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}

.main_slider::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: linear-gradient(120deg, rgba(180, 180, 172, 1) 0%, rgba(180, 180, 172, 1) 33%, rgb(180 180 172 / 0%) 64%, rgb(180 180 172 / 0%) 100%);
}

.main_slider .add-padding {
    display: flex;
    min-height: 750px;
    position: relative;
    align-items: center;
}

.main_slider .add-padding .follow-box {
    width: 5%;
    right: 100%;
    height: 100%;
    display: flex;
    padding-top: 30px;
    position: absolute;
    align-items: flex-start;
    justify-content: center;
}

.main_slider .add-padding .follow-box ul {
    gap: 20px;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.main_slider .add-padding .follow-box ul::before {
    left: 0;
    right: 0;
    top: 100%;
    width: 1px;
    content: '';
    height: 200%;
    margin: auto;
    opacity: 0.4;
    position: absolute;
    background-color: var(--white);
}

.main_slider .add-padding .follow-box ul li a {
    width: 45px;
    height: 45px;
    display: flex;
    color: #cdcdc7;
    border-radius: 50%;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    border: 1px solid #cdcdc7;
}

.follow-box ul li a:hover {
    opacity: 1;
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.main_slider .add-padding .follow-box h5 {
    left: 5%;
    top: 100%;
    z-index: 1;
    width: 100%;
    height: 85px;
    display: flex;
    font-size: 13px;
    position: absolute;
    text-align: center;
    align-items: center;
    color: var(--white);
    justify-content: center;
}

.main_slider .add-padding .follow-box h5::before {
    top: 0%;
    content: '';
    z-index: -1;
    height: 85px;
    right: -10px;
    width: 100vw;
    position: absolute;
    background-color: var(--themeColor);
}

.main_slider .add-padding::before {
    top: 0;
    bottom: 0;
    left: 12px;
    width: 1px;
    content: '';
    height: 100%;
    position: absolute;
    background-color: #cdcdc7;
}

.main_slider .add-padding .row {
    width: 100%;
}

.banner_text {
    margin-bottom: 90px;
}

.banner_text h1 {
    width: fit-content;
    margin-bottom: 15px;
    padding: 0px 0px 20px 50px;
    border-bottom: 1px solid #cdcdc7;
}

.banner_text h1 span {
    color: var(--themeColor);
}

.banner_text p {
    padding-left: 50px;
    margin-bottom: 20px;
    color: var(--white);
}

.banner_text a {
    margin-left: 50px;
}

.banner-bottom-row {
    bottom: 0;
    left: 13px;
    width: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: space-between;
    background-color: var(--themeColor);
}

.banner-bottom-row .custom-dots {
    gap: 10px;
    padding: 20px;
    display: flex;
    width: fit-content;
    align-items: center;
    border-radius: 80px;
    justify-content: center;
    border: 1px solid #ffffff83;
}

.banner-bottom-row .custom-dots li {
    width: 10px;
    height: 10px;
    opacity: 0.4;
    font-size: 0px;
    cursor: pointer;
    border-radius: 30px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.banner-bottom-row .custom-dots li.active {
    opacity: 1;
    width: 35px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-bottom-row::before {
    top: 0;
    left: 100%;
    content: '';
    width: 100vw;
    height: 100%;
    position: absolute;
    background-color: var(--themeColor);
}

.banner-bottom-row h4 {
    padding: 10px 20px;
    color: var(--white);
}

.banner-bottom-row p {
    padding: 20px 50px;
    font-size: 12px;
    max-width: 420px;
    color: var(--white);
    background: linear-gradient(90deg, var(--themeColor2) 0%, rgba(34, 37, 68, 0) 100%);
}

.bannerSlider .slick-slide {
    margin: 50px 0px;
}

/*banner css end*/

/* inner banner */

section.main_slider.inner-banner,
section.main_slider.inner-banner .add-padding {
    min-height: 550px;
}

/* inner banner */


/* about-sec */

.about-sec {
    padding: 100px 5%;
}

.about-box {
    position: relative;
}

.about-box::before {
    top: 0;
    left: 0;
    bottom: 0;
    width: 92%;
    height: 70%;
    content: '';
    z-index: -1;
    margin: auto;
    border-radius: 5px;
    position: absolute;
    border: 10px solid var(--themeColor);
}

.about-box .row {
    align-items: center;
}

.about-img {
    width: 90%;
    margin: auto;
    height: 730px;
    max-width: 350px;
    overflow: hidden;
    border-radius: 10px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    text-align: end;
    padding: 30px 0px;
    background-color: var(--white);
}

.about-text h2 {
    text-align: end;
    margin-bottom: 10px;
}

.about-text h2 span {
    display: block;
    font-size: 35px;
    color: var(--themeColor);
}

.about-text p {
    margin-bottom: 25px;
}

.about-text a.theme-btn-1 {
    margin: 0px 0px 0px auto;
}

.aboutSlider .slick-prev,
.aboutSlider .slick-next {
    top: unset;
    bottom: 5px;
    width: 70px;
    height: 70px;
    display: flex;
    transition: ease-in;
    align-items: center;
    justify-content: center;
    transition-duration: 0.5s;
    background-color: rgb(246, 246, 246);
    box-shadow: 5.164px 9.712px 32px 0px rgba(111, 111, 111, 0.17);
}

.aboutSlider .slick-prev {
    z-index: 1;
    right: 28px;
    left: unset;
}

.aboutSlider .slick-next {
    right: -42px;
    border-radius: 0px 0px 5px 0px;
}

.aboutSlider .slick-prev::before,
.aboutSlider .slick-next::before {
    content: '\f0da';
    transition: ease-in-out;
    transition-duration: 0.5s;
    font-family: 'FontAwesome';
}

.aboutSlider .slick-prev::before {
    transform: rotate(180deg);
}

.aboutSlider .slick-prev:hover,
.aboutSlider .slick-next:hover {
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.aboutSlider .slick-prev:hover::before,
.aboutSlider .slick-next:hover::before {
    color: var(--white);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.aboutSlider {
    max-width: 580px;
}

/* about-sec */

/* review-page-sec */

.review-page-sec {
    padding: 150px 0px 0px !important;
}

/* review-page-sec */

/* ebook-sec */

.books-section {
    padding: 150px 0px 100px;
}

.book-card {
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

.book-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.book-form .form-control {
    font-size: 14px;
    padding: 10px;
}

.book-form button {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.book-img {
    width: 100%;
    height: 500px;
    min-height: 100%;
    border-radius: 10px;
}

.book-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ebook-sec */

.about-second.home-about-sec {
    padding: 100px 0px 0px;
}

/* Testimonial Starts */

.testimonial-sec {
    position: relative;
    padding: 100px 5% 0px;
}

.testimonial-sec .sec-head h2 {
    font-size: 65px;
}

.test-box-text {
    background-image: url(../images/testi-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 40px 40px 40px 80px;
    position: relative;
}

.testi-img img {
    height: 370px;
    object-fit: cover;
    margin-top: -120px;
    margin-left: -25px;
    border-radius: 10px;
}

.testi-box {
    background: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 0 10px 0 #fff;
     */
}

.authr-box {
    display: flex;
    align-items: end;
}

.authr-box>div {
    margin-left: 10px;
}

.test-box-text h4 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 0px;
    padding-top: 0;
    color: #000;
}

.test-box-text span {
    font-size: 16px;
    color: #dfb76d;
    font-family: "Montserrat";
    line-height: 20px;
    margin: 0;
    font-weight: 600;
}

.authr-box img {
    margin-bottom: 30px;
}

.testi-box {
    margin: 0;
}

.authr-box>img {
    width: auto;
}

.testi-slider .slick-list {
    padding: 20px 0;
}

.testi-slider button.slick-arrow {
    width: 25%;
    transition: 2s all;
    border-radius: 10px;
    height: calc(84% - 40px);
    background-color: transparent;
    background-blend-mode: overlay;
    background-size: cover !important;
    background-position: center !important;
    border: var(--themeColor);
}

.testi-slider button.slick-prev.slick-arrow {
    left: -240px;
}

.testi-slider button.slick-next.slick-arrow {
    right: -240px;
}

.testi-slider button.slick-prev.slick-arrow:before {
    content: "\f177";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    color: #d7192e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: auto;
    right: -760px;
    bottom: -120px;
    height: 51px;
    width: 50px;
    display: none;
}

.testi-slider button.slick-next.slick-arrow:before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    color: #d7192e;
    display: flex;
    align-items: center;
    /* justify-content: center;
     */
    position: absolute !important;
    left: -153px !important;
    right: 0;
    height: 51px;
    width: 50px;
    bottom: -7px;
    margin: 0 0 -40px 52px;
    display: none;
}

.testi-slider .slick-slide {
    transition: all ease-in-out 0.3s;
    opacity: 1;
    margin: 10px;
    padding-top: 90px;
}

.testi-slider button.slick-arrow:before {
    color: #fff;
    font-size: 30px;
    opacity: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-left: 65px;
}

.testi-slider button.slick-arrow:hover:before {
    color: #fff;
    transition: 0.5s ease-in-out;
}

.testi-slider button.slick-next.slick-arrow:before {
    right: 50px;
    position: absolute;
    left: auto;
    bottom: -80px;
}

.testi-slider .slick-dots li.slick-active button {
    opacity: 1;
    font-size: 16px;
    border: 1px solid #0000009d;
}

.testi-slider .slick-dots li button {
    border-radius: 50%;
    border: 1px solid #0000009d !important;
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "" !important;
    text-align: center;
    opacity: 1;
    color: black;
    list-style: none !important;
}

.testi-slider .slick-dots li.slick-active button:before {
    background-color: #0000009d;
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    top: 50%;
    left: 19px;
    width: 55px;
    height: 1px;
    content: "";
}

.testi-slider .slick-dots li button:before {
    content: '';
    font-size: 0;
    /* number bilkul invisible */
}

/* Slick dots ke button ke andar ka text hide kare */
.slick-dots li button {
    font-size: 0 !important;
    /* Text hide */
}

.testi-slider .slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: end;
    right: 30px;
}

.testi-slider-box {
    gap: 20px;
    z-index: 2;
    width: 91%;
    display: flex;
    border-radius: 0;
    margin: 30px auto;
    position: relative;
    background: #fff;
    align-items: center;
    justify-content: center;
    transition: 1s ease-in-out;
    background-color: rgb(255, 255, 255);
    border-bottom: 2px solid var(--themeColor);
    box-shadow: 0px 6px 27px 0px rgba(0, 0, 0, 0.09);
}

.testi-slider-box:hover {
    transition: 1s ease-in-out;
    border-radius: 0px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 6px 27px 0px rgba(0, 0, 0, 0.09);
}

.testi-slider-box .col-lg-8 {
    position: relative;
    z-index: 1;
}

ul.tidti-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.star {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 3px;
}

.test-box-text ul.star i {
    color: #d4a654;
}

.test-box-text p {
    font-size: 14px;
    color: #8a8a8a;
    margin: 10px 0;
}

section.testimonial-sec .top-heading {
    margin-bottom: 10px;
}

.test-box-extra {
    left: 0;
    bottom: 0;
    right: unset;
    height: auto;
    width: fit-content;
    padding: 10px 12px;
    position: absolute;
    background: var(--themeColor);
}

.test-box-extra h5 {
    margin: 0;
    height: auto;
    color: #fff;
    font-size: 24px;
    font-weight: 200;
    line-height: 16px;
    text-align: center;
    letter-spacing: 9px;
    writing-mode: sideways-lr;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.pro_bar.testi-bar {
    bottom: 0;
    width: 45%;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.progress4,
.progress3 {
    display: block;
    width: 70%;
    height: 6px;
    border-radius: 10px !important;
    overflow: hidden;
    background-image: linear-gradient(to right, #264a5c, #264a5c);
    background: linear-gradient(190deg, #000 0%, #000 100%);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size 0.4s ease-in-out;
}

.progress4,
.progress3 {
    display: flex;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e7ebed;
    border-radius: 0;
    margin: -30px 0 0 71px;
}

.testi-slider-number span.end_number,
.testi-slider-number span.start_number1 {
    right: 0;
    font-family: "Montserrat";
    font-size: 25px;
    line-height: 20px;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testi-slider-number .nike-zoom-silder-number {
    top: auto;
    bottom: -48%;
    left: 5%;
}

.testi-slider-number {
    bottom: -52%;
    top: auto;
    left: 4%;
}

.testi-slider-number span.start_number1 {
    font-family: "Montserrat";
    font-size: 25px;
    line-height: 20px;
    bottom: 0;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide_counter h2 span.mid {
    font-family: "Montserrat";
    font-size: 17px;
    line-height: 20px;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading.text_center {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.heading.text_center p {
    width: 45%;
}

.testi-counter h2 {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 60%;
    margin: 0 auto -10px;
    font-weight: 400;
    gap: 10px;
}

.testimonial-heading h2 {
    color: #000;
}

.testi-slider .slick-dots li.slick-active button::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    z-index: -1;
    width: 10px;
    height: 10px;
    background: #e4bd75;
    border-radius: 50%;
}

.testi-slider .slick-dots li.slick-active button::before {
    background-color: rgba(0, 0, 0, 0.616);
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    top: 50%;
    left: 19px;
    width: 55px;
    height: 1px;
    content: "";
}

.testi-slider .slick-dots li.slick-active {
    margin: 0px 50px 0px 0px;
}

.testimonial-heading {
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

/* Testimonial Section End */

/* inner  Testimonial Section End */

.inner-test {
    padding: 100px 3%;
}

.inner-sldr-img2>img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.inner-test-box {
    margin-top: 0;
    position: relative;
    display: grid;
    align-items: center;
    align-content: center;
    height: 260px;
}

.inner-test-box::before {
    content: "";
    position: absolute;
    background-image: url(../images/comaas2.png);
    width: 104px;
    height: 71px;
    background-repeat: no-repeat;
    z-index: -1;
    left: 30%;
    top: 85px;
}

.inner-test-box {
    padding-left: 25px;
}

.inner-test-box ul {
    display: flex;
    /* align-items: center; */
    gap: 121px;
}

.inner-test-box img {
    width: inherit;
    margin-bottom: 5%;
    filter: brightness(0) saturate(100%) invert(27%) sepia(46%) saturate(763%) hue-rotate(193deg) brightness(92%) contrast(89%);
}

.inner-test-box ul li {
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 500;
    color: #8a8a8a;
}

.inner-test-box ul p {
    font-size: 26px;
    margin-bottom: 0;
    color: #000;
    /* font-weight: 700; */
    letter-spacing: 0;
    width: 100%;
    font-family: saudagar;
}

.inner-test-box p {
    font-weight: 400;
    font-size: 14px;
    font-style: italic;
    color: #8a8a8a;
    width: 90%;
    margin-bottom: 5%;
}

.bdr {
    /* border: solid 0.5px #00000052; */
    width: 98%;
    box-shadow: 0 0 4px #80808040;
    margin-bottom: 5%;
}

li.str-clor i {
    color: #d69655;
}

.bdr {
    width: 98%;
    margin-bottom: 5%;
    box-shadow: 0 0 4px #80808040;
}

.inner-sldr-img2>img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.inner-test-box {
    padding-left: 25px;
}

.inner-test-box {
    margin-top: 0;
    position: relative;
    display: grid;
    align-items: center;
    align-content: center;
    height: 260px;
}

.review-page-sec .abt-2-txt h4 {
    margin-bottom: 20px;
}

.review-page-sec .abt-2-txt p {
    padding-left: 0px;
}

.home-about-sec .abt-2-txt h4 {
    margin-bottom: 20px;
}

.home-about-sec .abt-2-txt p {
    padding-left: 0px;
}

.home-about-sec .abt-2-txt ul li {
    gap: 10px;
    display: flex;
    margin-bottom: 10px;
    align-items: first baseline;
    justify-content: flex-start;
}

.home-about-sec .abt-2-txt ul li i {
    color: var(--themeColor);
}

.home-about-sec .abt-2-txt ul li h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--headingColor2);
}

/* inner Testimonial Section End */


/* start-your-journey-sec */

.start-your-journey-sec {
    padding: 100px 3%;
}

.start-your-journey-img {
    padding-right: 50px;
}

.start-your-journey-img img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 10px;
}

.start-your-journey-img ul {
    columns: 2;
    margin-top: 30px;
}

.start-your-journey-text ul {
    margin-top: 30px;
}

.start-your-journey-img ul li {
    gap: 15px;
    display: flex;
    margin-bottom: 30px;
    align-items: baseline;
    justify-content: flex-start;
}

.start-your-journey-text ul li {
    gap: 15px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.start-your-journey-text ul li i,
.start-your-journey-img ul li i {
    flex-shrink: 0;
    color: var(--themeColor);
}

.start-your-journey-text ul li h5,
.start-your-journey-img ul li h5 {
    margin-bottom: 10px;
}

.start-your-journey-text h3 {
    font-weight: 500;
    margin-bottom: 15px;
}

.start-your-journey-text h3 span {
    display: block;
    font-size: 45px;
}

.start-your-journey-text p {
    margin-bottom: 20px;
}

.start-your-journey-text img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 10px;
}


/* start-your-journey-sec */

/* inner-start-your-journey-sec */

.inner-start-your-journey-sec .start-your-journey-img ul {
    columns: 1;
    margin-top: 5px;
}

.inner-start-your-journey-sec .start-your-journey-img ul li {
    margin-bottom: 20px;
}

.inner-start-your-journey-sec .start-your-journey-text img {
    height: 400px;
    object-position: top;
}

section.start-your-journey-sec.inner-start-your-journey-sec {
    padding-top: 0px;
}

/* inner-start-your-journey-sec */

/* contact-sec */

.contact-box {
    padding: 50px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 0px 36.72px 14.28px rgba(0, 0, 0, 0.04);
}

.contact-us-bg {
    padding: 50px 0px;
    border-radius: 10px;
    background-color: var(--themeColor);
    box-shadow: -3.119px 14.672px 38px 0px rgba(21, 21, 23, 0.21);

}

.contact-us-box {
    padding-left: 25px;
    padding-right: 25px;
    border-left: 3px solid var(--white);
}

.contact-box h2 {
    font-size: 30px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-box form {
    width: 95%;
    margin-top: 25px;
}

.contact-box form input {
    width: 100%;
    height: 60px;
    color: #fff;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid #e1e1e1;
    background-color: transparent;
}

.contact-box form input:focus,
.contact-box form textarea:focus,
.contact-box form input:focus-visible,
.contact-box form textarea:focus-visible {
    border-color: transparent;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 38.88px 15.12px rgba(0, 0, 0, 0.07);

}

.contact-box form textarea {
    width: 100%;
    height: 120px;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    color: var(--headingColor);
    border: 1px solid #e1e1e1;
    background-color: transparent;
}

.contact-box form input::placeholder,
.contact-box form textarea::placeholder {
    color: var(--textColor);
    text-transform: uppercase;
}

.contact-us-box h3 {
    font-weight: 300;
    color: var(--white);
}

.contact-us-box p {
    font-weight: 500;
    margin-top: 10px;
    color: var(--white);
}

.contact-us-box ul {
    gap: 50px;
    display: flex;
    margin-top: 25px;
    margin-bottom: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.contact-us-box ul li a i {
    font-size: 25px;
    color: var(--white);
}

.contact-us-box ul li a {
    gap: 20px;
    display: flex;
    align-items: center;
}

.contact-us-box ul li a h6 {
    color: var(--white);
}

.contact-us-box a.theme-1 {
    gap: 15px;
    padding: 20px;
    display: flex;
    font-size: 16px;
    width: fit-content;
    color: var(--white);
    border-radius: 70px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border: 1px solid var(--white);
}

/* contact-sec */

.support-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.support-box h3 {
    position: relative;
    color: var(--themeColor);
    padding: 40px 50px 40px 0px;
    background-color: #e3e3e3;
}

.support-box h3::before {
    top: 0;
    content: '';
    right: 100%;
    height: 100%;
    width: 100vw;
    position: absolute;
    background-color: #e3e3e3;
}

.support-box a {
    gap: 15px;
    height: 100%;
    display: flex;
    padding: 34px 80px;
    position: relative;
    color: var(--white);
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor2);
}

.support-box a i {
    font-size: 50px;
}

.support-box a span {
    font-size: 20px;
    font-family: 'Evogria';
}

.support-box a span b {
    display: block;
    font-size: 30px;
    margin-top: 5px;
    font-weight: 400;
    font-family: 'Montserrat';
}

.support-box a::before {
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 60%;
    content: '';
    margin: auto;
    position: absolute;
    background-color: var(--white);
}

/* what-we-do-sec */

.what-we-do-sec {
    position: relative;
    padding: 0px 5% 100px;
}

.what-we-do-sec::before {
    left: 0;
    bottom: 0;
    z-index: -1;
    content: '';
    height: 70%;
    width: 100%;
    position: absolute;
    background-color: var(--themeColor);
}

.whatWeDoSlider {
    border-radius: 10px;
    padding: 0px 20px 50px;
    background-color: var(--white);
}

.whatWeDoSlider .slick-slide {
    opacity: 1;
}

.whatWeDoSlider .slick-dots {
    left: 0;
    right: 0;
    z-index: 1;
    bottom: -95px;
    padding: 20px;
    display: flex;
    margin: 0px auto;
    width: fit-content;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #fff;
}

.whatWeDoSlider .slick-dots .slick-active {
    opacity: 1;
    width: 38px;
    border-radius: 50px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.whatWeDoSlider .slick-dots li button:before {
    font-size: 0px;
}

.whatWeDoSlider .slick-dots li {
    width: 10px;
    height: 10px;
    opacity: 0.4;
    border-radius: 20px;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.what-we-box {
    margin-bottom: 50px;
    border-radius: 10px;
    border: 1px solid var(--textColor);
}

.what-we-box .what-we-box-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.what-we-box .what-we-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-box-text {
    padding: 40px 25px 0px;
}

.what-we-box-text p {
    margin-bottom: 15px;
}

.what-we-box-text ul li {
    gap: 10px;
    display: flex;
    margin-bottom: 10px;
    align-items: first baseline;
    justify-content: flex-start;
}

.what-we-box-text ul li h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--headingColor2);
}

.what-we-box-text ul li i {
    color: var(--themeColor);
}

.what-we-box-text a {
    margin: 15px auto -25px;
}

.what-we-box-text h4 {
    margin-bottom: 10px;
}

/* what-we-do-sec */

/* ------------------------------ News Start  -----------------------*/

section.blog {
    padding: 100px 5%;
}

.blog .testimonial-heading {
    margin-bottom: 20px;
}


.blog-img {
    width: 100%;
    margin: 24px 0px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.blog-img img {
    width: 70%;
    height: 380px;
    object-fit: cover;
    transition: 0.5s;
    border-radius: 10px;
}

.blog-detail {
    top: 50%;
    right: -1%;
    width: 70%;
    height: auto;
    padding: 40px;
    position: absolute;
    border-radius: 10px;
    background: var(--white);
    transform: translateY(-50%);
    transition: transform 0.5s ease;
    box-shadow: 0px 0px 25.28px 6.72px rgba(0, 0, 0, 0.06);
}

.blog-detail h5 {
    line-height: 30px;
    padding-bottom: 5px;
    font-size: 18px;
}

.blog-detail p {
    width: 91%;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
}

.blog-detail h5 span {
    display: block;
}

.alignlist {
    display: flex;
    gap: 10px;
    justify-content: end;
    text-align: end;
    margin-left: 0;
}

.icons i {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50px;
    align-items: center;
    color: var(--themeColor);
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--textColor);
}

.icons {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.icons p {
    margin: 0;
}

img.blog-image-butter-big {
    width: auto;
    position: absolute;
    top: -30px;
    right: -70px;
}

img.blog-image-butter {
    margin: 0 0 0 40px;
    width: auto;
}

.blog-img:hover img {
    width: 100%;
    transform: scale(1.1);
}

.blog-img:hover .blog-detail {
    transform: translate(-40%, -50%);
}

/* ------------------------------ News End  ----------------------- */

/* blog-detail-box */

.blog-detail-sec {
    padding: 150px 0px 100px;
}

.blog-detail-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
}

.blog-detail-box h3 {
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-detail-box h4 {
    margin-bottom: 15px;
    color: var(--themeColor);
}

.blog-detail-box p {
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-detail-box ul {
    margin-bottom: 30px;
}

.blog-detail-box ul li {
    position: relative;
    padding-left: 15px;
}

.blog-detail-box ul li::before {
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: var(--themeColor2);
}


/* blog-detail-box */

/* membership-sec */

.membership-sec {
    padding: 100px 0px;
}

.membership-box {
    min-height: 95%;
    margin: 25px 0px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    padding-bottom: 80px;
    border: 1px solid #d0d0d0;
}

.membership-box .membership-box-title {
    padding: 20px;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 31px 84px 0px rgba(0, 0, 0, 0.09);
}

.membership-box-price {
    gap: 25px;
    z-index: 1;
    height: 185px;
    display: flex;
    overflow: hidden;
    padding: 20px 20px;
    margin-bottom: 20px;
    position: relative;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.membership-box-price h3 {
    display: flex;
    font-size: 46px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    align-items: baseline;
    justify-content: flex-start;
}

.membership-box-price h3 span {
    font-size: 25px;
}

.membership-box-price h6 {
    position: relative;
    padding: 20px 30px;
    color: var(--white);
    border-radius: 100px;
    text-transform: uppercase;
    background-color: var(--themeColor2);
}

.membership-box-price::before {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.9;
    position: absolute;
    background-color: var(--themeColor);
}

.membership-box-price img {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.membership-box-list {
    min-height: 100%;
    padding: 40px 25px 5px;
}

.membership-box-list a.theme-btn-1 {
    left: 25px;
    bottom: 25px;
    position: absolute;
}

.membership-box-list ul li {
    gap: 15px;
    display: flex;
    margin-bottom: 30px;
    align-items: baseline;
    justify-content: flex-start;
}

.membership-box-list ul li i {
    flex-shrink: 0;
    color: var(--themeColor);
}

.membership-box-list ul li p {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--headingColor2);
}


/* membership-sec */

section.what-we-do-sec.inn:before {
    background-color: unset !important;
}

section.what-we-do-sec.inn {
    padding: 140px 0px;
}

section.contact-sec.inn {
    padding: 100px 0%;
}


/* turning-sec */

.turning-sec {
    padding: 0px 5% 100px;
}

.turning-text {
    padding: 60px 5%;
    border-radius: 10px;
    text-align: center;
    background-color: var(--themeColor);
}

.turning-text * {
    color: var(--white);
}

.turning-text h3 {
    font-weight: 500;
    margin-bottom: 20px;
}

.turning-text h4 {
    font-style: italic;
    margin-bottom: 30px;
}

.turning-text p {
    opacity: 0.5;
    margin-bottom: 20px;
}


/* turning-sec */

/*about-page start*/

.about-more-text {
    margin-top: 25px;
}

.about-more-text h6 {
    font-size: 18px;
    font-style: italic;
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.about-more-text h6::before {
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    content: '\f10d';
    font-size: 30px;
    position: absolute;
    font-family: 'FontAwesome';
}


.about-more-text p {
    margin-bottom: 15px;
}

section.about-page {
    padding: 140px 2% 100px;
}

.abt-txt-pg {
    text-align: center;
}

.abt-txt-pg p {
    font-size: 14px;
    width: 89%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.abt-pg-img img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 20px;
}

.abt-txt-pg h3 {
    font-size: 60px;
    color: #161a1d;
    line-height: 80px;
    margin-bottom: 5px;
}

.abt-2-pg img {
    width: 100%;
    height: 485px;
    object-fit: cover;
    border-radius: 10px;
}

.abt-2-pg {
    text-align: center;
    width: 96%;
}

.abt-2-txt h3 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
}

.abt-2-txt h3 span {
    display: block;
}

.abt-2-txt p {
    padding-left: 8%;
    margin-bottom: 20px;
}

.facility-box {
    z-index: 6;
    overflow: hidden;
    position: relative;
    text-align: center;
    border-radius: 10px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 5% 120px;
    background-size: cover;
}


.FacilitySlider .slick-dots {
    left: 0;
    right: 0;
    z-index: 1;
    bottom: 30px;
    padding: 20px;
    display: flex;
    margin: 0px auto;
    width: fit-content;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #fff;
}

.FacilitySlider .slick-dots li {
    width: 10px;
    height: 10px;
    opacity: 0.4;
    border-radius: 20px;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.FacilitySlider .slick-dots .slick-active {
    opacity: 1;
    width: 38px;
    border-radius: 50px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.FacilitySlider .slick-dots li button:before {
    font-size: 0px;
}

section.about-second {
    padding-bottom: 100px;
}

section.our-fac h3 {
    z-index: 1;
    font-size: 37px;
    line-height: 45px;
    position: relative;
    color: var(--white);
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white);
}

section.our-fac p {
    position: relative;
}

.facility-box::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #464d80de;
    content: '';
    z-index: 0;
    border-radius: 10px;
}

section.our-fac p {
    font-size: 14px;
    color: #fff !important;
    width: 80%;
    margin: 0 auto;
    z-index: 5;
}

/* tutorial-sec */
.tutorial-sec {
    padding: 100px 0px;
}

.tutorial-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.tutorial-box::before {
    top: 0;
    left: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    backdrop-filter: blur(5px);
    background-color: #3e4a87b0;
}

.tutorial-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

.tutorial-box h4 {
    bottom: 0;
    z-index: 2;
    width: 100%;
    font-size: 20px;
    padding: 20px 30px;
    text-align: center;
    position: absolute;
    color: var(--white);
}


.tutorial-heading {
    text-align: center;
}

.tutorial-heading h3 {
    font-weight: 500;
    margin-bottom: 10px;
}

.tutorial-sec .tutorialSlider {
    margin: 50px 0px 100px;
}

.tutorialSlider .slick-dots {
    left: 0;
    right: 0;
    z-index: 1;
    bottom: -90px;
    padding: 20px;
    display: flex;
    margin: 0px auto;
    width: fit-content;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var(--white);
    background-color: var(--themeColor);
    box-shadow: 0px 11px 14px 0px rgba(34, 37, 68, 0.18);
}

.tutorialSlider .slick-dots li {
    width: 10px;
    height: 10px;
    opacity: 0.4;
    border-radius: 20px;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.tutorialSlider .slick-dots .slick-active {
    opacity: 1;
    width: 38px;
    border-radius: 50px;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--white);
}

.tutorialSlider .slick-dots li button:before {
    font-size: 0px;
}

.tutorialSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

/* tutorial-sec */

/* service-detail-sec */

.service-detail-sec {
    padding: 150px 5% 100px;
}

.service-detail-sec .what-we-box-img {
    height: 650px;
}

.service-detail-sec .what-we-box-text ul {
    columns: 3;
    margin-bottom: 20px;
}


/* service-detail-sec */

/*Footer Start*/

footer {
    overflow: hidden;
    padding: 0px 0% 0px 3%;
    background: var(--themeColor2);
}

.footer-logo {
    padding: 10px;
    background: #fff;
}

.footer-logo img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.quick-link {
    z-index: 9;
    padding-top: 50px;
    padding: 50px 0px;
    position: relative;
    text-align: center;
}

.quick-link h5 {
    font-size: 24px;
    color: #0b2834;
    padding: 0 0px 0 30px;
}

.quick-link ul li a {
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    margin: 0 30px 0;
    line-height: 30px;
    padding-bottom: 0;
    padding: 17px 10px 0;
    justify-content: center;
    text-transform: uppercase;
}

.footer-newsletter ul {
    gap: 40px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-top: 20px;
    align-items: center;
}

.footer-newsletter ul li h4 {
    color: #fff;
    font-size: 55px;
    font-weight: 300;
    margin: 0 0 10px;
    font-family: 'Evogria';
    text-transform: uppercase;
}

.newsinpt input {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    color: #7c7c7c;
    margin: 10px 0;
}

.newsinpt {
    position: relative;
}

.newsinpt button {
    position: absolute;
    top: 0;
    right: 10%;
    border: 0;
    padding: 11px 40px;
    height: 50px;
    background: #c9c9c9;
    border-radius: 10px;
}

.footer-contact h5 {
    font-size: 35px;
    color: #fff;
    font-family: 'Bebas Neue';
}

.footer-contact ul li a {
    font-size: 13px;
    font-family: 'Roboto';
    color: #c1c1c3;
}

.footer-contact ul li i {
    margin: 0 17px 0 0;
    font-size: 24px;
}

.footer-contact ul li {
    line-height: 50px;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-media ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0 10px 0 30px;
}

.footer-media ul li a {
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: 0.5s;
}

.footer-media ul li a:hover {
    background: #fff;
    color: #000;
    transition: 0.5s;
    transform: scale(1.2);
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
    text-align: right;
    color: #fff;
    text-transform: uppercase;
}

.footer-bottom {
    padding: 20px 0px;
    background: var(--themeColor2);
    position: relative;
}

.footer-bottom:before {
    position: absolute;
    content: '';
    background: transparent;
    border-top: 1px solid #cccccc87;
    width: 80%;
    right: 0;
    height: 1px;
    bottom: 60px;
}

.footer-newsletter {
    height: 100%;
    display: grid;
    padding-top: 0px;
    padding-left: 5%;
    align-content: center;
}

.footer-contact {
    display: grid;
    align-content: center;
    height: 470px;
    position: relative;
}

.footer-contact:before {
    position: absolute;
    background-image: url(../images/f-logo.png);
    width: 100%;
    height: 70%;
    background-size: contain;
    top: 10%;
    background-repeat: no-repeat;
}

.footer-contact:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 103%;
    top: 0;
    left: -13%;
    z-index: 9;
    background: #5a5a5a;
}

.quick-link:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 117%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--themeColor);
}

.quick-link ul {
    margin-top: 30px;
}

.footer-newsletter ul li p {
    color: #fff;
    width: 70%;
}

ul.news-list a {
    font-size: 16px;
    color: #fff;
    font-family: 'Montserrat';
    gap: 10px;
    display: flex;
    align-items: center;
}

ul.news-list a i {
    font-size: 22px;
    color: var(--white);
}

.foter-border {
    border: 1px solid #ffffff8c;
    border-top: 0;
    border-bottom: 0;
    padding: 0 25px;
}

.footer-bottom .row {
    align-items: center;
}

footer .container-fluid {
    padding: 0 0 0 5%;
}

/*footer End*/

/*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*/