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

/***** General CSS *****/

body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    background-image: url(../images/body-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #2c2c2c;
    --themeColor: #5e366e;
    --themeColor2: #9b59b6;
    --themeColor3: #b59a5b;
    --headingColor: #161a1d;
    --headingColor2: #131212;
}

a {
    text-decoration: none;
    white-space: initial;
    display: inline-block;
    color: var(--textColor);
}

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: #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: 'American-Captain';
    src: url(../fonts/American-Captain.ttf);
}

@font-face {
    font-family: 'Ballantines';
    src: url(../fonts/Ballantines-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-weight: 500;
    font-size: 100px;
    line-height: 85px;
    color: var(--themeColor);
    font-family: 'American-Captain';
}

h2 {
    line-height: 1;
    margin: 0 0 0px;
    font-size: 89px;
    font-weight: 500;
    color: var(--themeColor);
    font-family: 'American-Captain';
}

h3 {
    line-height: 1;
    font-size: 75px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--themeColor);
    font-family: 'American-Captain';
}

h4 {
    line-height: 1;
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--themeColor2);
    font-family: 'American-Captain';
}

h5 {
    color: #000;
    margin: 0 0 0px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'American-Captain';
}

h6 {
    color: #000;
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    font-family: 'Poppins';
    color: var(--textColor);
}

.theme-btn-1 {
    gap: 10px;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    width: fit-content;
    align-items: center;
    color: var(--white);
    border-radius: 50px;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    text-transform: uppercase;
    padding: 9px 7px 9px 25px;
    border: 1px solid var(--white);
    background-color: var(--themeColor3);
}

.theme-btn-1 i {
    font-size: 25px;
}

.theme-btn-1:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.theme-btn-2 {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 50px;
    width: fit-content;
    border-radius: 50px;
    color: var(--white);
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    background-color: #b59a5b;
}

.theme-btn-2:hover {
    color: var(--white);
    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;
}


.container {
    max-width: 1400px;
}

/*header css start */

.menuSec {
    width: 105%;
    padding: 0px 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 {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    color: var(--themeColor2);
}

.menuSec ul li a::before {
    left: 0;
    width: 0%;
    bottom: 0;
    content: '';
    height: 1px;
    position: absolute;
    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(--themeColor);
}

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
    width: 100%;
}

.menuSection {
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 10px 0px;
    position: absolute;
}

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

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-logo {
    height: 120px;
    width: fit-content;
}

.header-logo a,
.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*header css start */


/*banner css start */


.main_slider {
    position: relative;
    padding: 180px 0px 100px;
}

.main_slider::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.7;
    position: absolute;
    filter: grayscale(1);
    background-image: url(../images/banner-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.banner_img {
    width: 100%;
    height: 550px;
    position: relative;
}

.banner_img::before {
    top: -25%;
    left: 18%;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background-image: url(../images/banner-img-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.banner_img img {
    left: -13%;
    width: 135%;
    height: 100%;
    max-width: 135%;
    position: relative;
    object-fit: contain;
}

.banner-img-img {
    right: 0px;
    z-index: 1;
    bottom: 110px;
    position: absolute;
    width: fit-content;
    border-radius: 50px;
    border: 0.5px solid var(--white);
    background-color: var(--themeColor2);
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.26);
}

.banner-img-img i {
    top: -19px;
    width: 70px;
    left: -30px;
    height: 70px;
    display: flex;
    font-size: 30px;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.banner-img-img i img {
    left: 0;
    width: 70%;
    height: 70%;
}

.banner-img-img h5 {
    font-size: 24px;
    padding: 20px 50px;
    color: var(--white);
    font-family: 'Poppins';
    text-transform: uppercase;
}

.banner_text {
    width: 110%;
}

.banner_text h1 {
    margin-bottom: 10px;
}

.banner_text h1 span {
    font-size: 75px;
}

.banner_text h1 span span {
    color: var(--themeColor2);
}

.banner_text p {
    width: 90%;
    max-width: 580px;
    margin-bottom: 30px;
}

.banner_text ul {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}



.main_slider .footer-bg-img {
    left: 0%;
    width: 100%;
    z-index: -1;
    opacity: 0.1;
    bottom: -50px;
    line-height: 1;
    font-size: 25vw;
    object-fit: cover;
    position: absolute;
    text-align: center;
    color: var(--themeColor2);
    font-family: 'American-Captain';
}



/*banner css end*/

/* about-sec */

.about-sec {
    padding: 0px 0px 50px;
}

.about-img {
    width: 100%;
    height: 750px;
    max-width: 570px;
    position: relative;
}

.about-img .about-img-1 {
    top: 8px;
    left: 11%;
    width: 80%;
    z-index: 2;
    height: 320px;
    object-fit: cover;
    position: absolute;
    transform: rotate(-10deg);
    box-shadow: 0px 0px 73px 0px rgba(0, 0, 0, 0.3);
}

.about-img .about-img-2 {
    z-index: 1;
    top: 306px;
    right: 0;
    width: 45%;
    margin: auto;
    height: 220px;
    object-fit: cover;
    position: absolute;
    transform: rotate(10deg);
    box-shadow: 0px 0px 73px 0px rgba(0, 0, 0, 0.3);
}

.about-img .about-img-3 {
    left: 21%;
    bottom: 90px;
    width: 53%;
    z-index: 1;
    height: 220px;
    object-fit: cover;
    position: absolute;
    transform: rotate(-5deg);
    box-shadow: 0px 0px 73px 0px rgba(0, 0, 0, 0.3);
}

.about-img .about-img-4 {
    left: 0;
    bottom: 0;
    width: 100%;
    position: absolute;
    height: fit-content;
    object-position: left;
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about-text h2 span {
    color: var(--themeColor2);
}

.about-text p {
    margin-bottom: 20px;
}

.about-text h3 {
    margin-bottom: 15px;
    color: var(--themeColor2);
}

/* about-sec */

/* women-sec */

.women-sec {
    padding: 50px 0px;
}

.women-sec .row {
    align-items: center;
}

.women-img {
    height: 720px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-image: url(../images/women-img-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.women-img::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    content: '';
    margin: auto;
    height: 450px;
    max-width: 480px;
    position: absolute;
    transform: rotate(-10deg);
    background-color: var(--white);
}

.women-img img {
    width: 90%;
    z-index: 1;
    height: 450px;
    max-width: 480px;
    object-fit: cover;
}

.women-img-img {
    left: 0px;
    z-index: 1;
    bottom: 110px;
    width: fit-content;
    position: absolute;
    border-radius: 50px;
    border: 0.5px solid var(--white);
    background-color: var(--themeColor);
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.26);
}

.women-img-img i {
    top: -19px;
    width: 70px;
    left: -43px;
    height: 70px;
    display: flex;
    font-size: 30px;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.women-img-img i img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.women-img-img h5 {
    font-size: 24px;
    padding: 20px 30px;
    color: var(--white);
    font-family: 'Poppins';
}

.Women-text h2 {
    font-size: 75px;
}

.Women-text h2 span {
    color: var(--themeColor2);
}

.Women-text {
    margin: 10px 0px 20px;
}

.Women-text ul {
    gap: 15px;
    z-index: 1;
    display: flex;
    margin: 30px 0px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 30px 30px 0px;
}

.Women-text ul::before {
    top: 0;
    right: 0;
    z-index: -1;
    content: '';
    width: 100vw;
    height: 100%;
    opacity: 0.2;
    position: absolute;
    border-radius: 200px;
    background-color: #5e366e;
}

.Women-text ul li h5 {
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    color: var(--themeColor);
}

.Women-text ul li h5 i {
    font-size: 25px;
    color: #d988a1;
}

/* women-sec */

/* welcome-sec */

.welcome-sec {
    padding: 50px 0px;
}

.welcome-sec .section-heading {
    gap: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.welcome-sec .section-heading h4 {
    font-size: 50px;
    font-family: 'Ballantines';
}

/* welcome-sec */

/* powerful-sec */

.powerful-sec {
    padding: 50px 0px;
}

.powerful-text {
    gap: 20px;
    display: flex;
    padding: 60px 5%;
    position: relative;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: var(--themeColor);
    box-shadow: 2px 7px 23px -1px rgba(0, 0, 0, 0.77);
}

.powerful-text::before {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    opacity: 0.5;
    height: 100%;
    filter: sepia(1);
    position: absolute;
    background-image: url(../images/powerful-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.powerful-text h2 {
    z-index: 1;
    position: relative;
    color: var(--white);
}

.powerful-text::after {
    top: -5%;
    right: 5%;
    width: 20%;
    content: '';
    height: 110%;
    position: absolute;
    background-image: url(../images/powerful-before-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* powerful-sec */

/* purpose-sec */

.purpose-sec {
    position: relative;
    padding: 50px 0px;
}

.purpose-heading img {
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    position: absolute;
}


.purpose-text {
    z-index: 1;
    padding: 30px;
    position: relative;
    background-color: var(--white);
}

.purpose-text .purpose-text-icon {
    top: -70px;
    width: 80px;
    height: 80px;
    left: -30px;
    display: flex;
    border-radius: 50%;
    position: relative;
    align-items: center;
    margin-bottom: -50px;
    justify-content: center;
    background-color: var(--themeColor2);
}

.purpose-text .purpose-text-icon img {
    width: 80%;
    height: 55%;
    object-fit: contain;
}

.purpose-text a {
    color: var(--themeColor2);
    text-decoration: underline;
}

.purpose-text.purpose-text-1 {
    margin-top: 120px;
}

.purpose-text.purpose-text-2 {
    margin-top: 40px;
}

.purpose-text.purpose-text-3 {
    margin-top: -130px;
}

/* purpose-sec */

/* Health and wealness start  */


.health-sec {
    margin: 72px 52px;
}

.health-slider-btm .prev {
    padding: 7px 10px;
    border: 1px solid #0000001a;
    background: transparent;
    border-radius: 5px;
}

.health-slider-btm .next {
    background-color: #fbad90;
    border: 1px solid transparent;
    padding: 7px 10px;
    margin: 0 0 0 4px;
    border-radius: 5px;
}

.health_slider .slick-slide.slick-current.slick-active .testimonial_box i {
    background-color: #ffffff;
}

.health_slider .slick-slide.slick-current.slick-active .profile_text p {
    padding: 0 !important;
}

.health_slider .slick-slide.slick-current.slick-active .testimonial_box p {
    /* padding: 20px 0 16px 0; */
}

.health_slider .slick-slide.slick-current.slick-active .testimonial_box {
    box-shadow: 1px 1px 20px 14px #0000001f;
    background: var(--orange-color);
    border-radius: 10px;
}

.health_slider .slick-slide.slick-current.slick-active {
    max-width: 620px;
    width: 11% !important;
}

.health_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active {
    width: 7% !important;
    max-width: 370px;
}

.health_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active {
    width: 7% !important;
    max-width: 370px;
}

.health_slider .slick-list.draggable {
    height: 463px;
    padding: 60px 0;
}

.health_slider .slick-active {
    opacity: 1;
    margin: 0px 10px;
}

.health_box_text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.health_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testimonial_box {
    background-color: white;
    border-radius: 10px;
}

.health_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active .testimonial_box {
    background-color: #e5e5e5;
}

.health_slider .slick-slide.slick-current.slick-active .health_box_text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.health_slider .slick-prev:before {
    background-repeat: no-repeat;
    width: 39px;
    transform: rotate(180deg);
    content: '' !important;
    background-image: url(../images/left-arrow.png);
    display: block;
    height: 20px;
}

.health_slider .slick-prev.slick-arrow {
    left: -4%;
}

.health_slider .slick-next:before {
    background-repeat: no-repeat;
    width: 39px;
    content: '' !important;
    background-image: url(../images/right-arrow.png);
    display: block;
    height: 20px;
}

.health_slider .slick-slide.slick-active+.slick-slide.slick-active .testimonial_box p {
    color: black;
    margin: 0 0 10px;
}

.health_slider .slick-slide.slick-active+.slick-slide.slick-active .testimonial_box h6 {
    color: black;
}

.health_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active .testimonial_box {
    background-color: white;
    border-radius: 10px;
}

.health_box_text p {
    padding: 10px 0 0px;
}

.health_box {
    position: relative;
}

.health_box_text {
    position: absolute;
    bottom: -99px;
    background-color: white;
    width: 82%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
        0 -2px 4px rgba(0, 0, 0, 0.05),
        2px 0 4px rgba(0, 0, 0, 0.05),
        -2px 0 4px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.health_box_text h2 {
    font-size: 20px;
    color: var(--black);
    padding: 0 0 10px 0;
    font-family: 'Poppins';
    border-bottom: 1px solid #00000029;
}

.profile-wrapper {
    display: flex;
    margin-top: 20px;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.profile-wrapper h3 {
    font-size: 12px;
    color: #666666;
    font-family: 'Poppins';
}

.profile-wrapper i {
    width: 35px;
    display: flex;
    height: 35px;
    font-size: 16px;
    color: #d988a1;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #b2b2b2;
}

.profile-wrapper .show-avtive {
    gap: 10px;
    display: flex;
    display: none;
    align-items: center;
}

.share-icon {
    top: 10px;
    right: 10px;
    position: absolute;
}

.health-sec .slick-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.health-sec .slick-slide a img {
    width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 0px;
}

.health-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.health-heading div h2 {
    margin: 0 0 10px 0;
}

.health_slider .slick-slide.slick-current.slick-active .show-avtive {
    display: flex;
}

.health_slider .slick-slide.slick-current.slick-active .share-icon {
    top: 0;
    right: 0;
    position: relative;
}


/* Health and wealness end */



/* section start */

.footer-box {
    overflow: hidden;
    max-width: 2000px;
    position: relative;
    border-radius: 0px;
    margin: 0 auto 50px;
    padding: 100px 5% 30px;
}

.footer-box::before {
    top: -30%;
    left: -50%;
    width: 200%;
    z-index: -1;
    content: "";
    height: 208%;
    position: absolute;
    background: var(--themeColor);
}

.footer-box .footer-bg {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -2;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-left-text h3 {
    font-size: 40px;
    margin-top: 15px;
    max-width: 450px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Poppins';
}

.footer-links h6 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-links {
    min-height: 85px;
    margin: 0 0 50px 0;
    height: fit-content;
}

.footer-links a {
    font-size: 16px;
    color: #fff !important;
    transition: 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #000;
    transition: 0.3s ease-in-out;
}

.footer-links p {
    color: #fff;
}

form.footer-form {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    max-width: 550px;
    margin: 100px 0 0 0;
    align-items: center;
    border-bottom: 1px solid #ffffff7c;
    justify-content: space-between;
}

form.footer-form input {
    border: none;
    color: #fff;
    height: 70px;
    font-size: 20px;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid #ffffff00;
}

form.footer-form input:focus {
    color: #ffff;
    border-color: transparent;
    background-color: transparent;
}

form.footer-form input::placeholder {
    color: #fff;
    font-size: 20px;
}

form.footer-form button {
    width: 60px;
    height: 60px;
    border: none;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    background-color: transparent;
}

form.footer-form button img {
    width: 27px;
    height: 20px;
    object-fit: contain;
}

ul.follow-ftr-list li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    border-radius: 50%;
    transition: 0.5s ease-in-out;
}

ul.follow-ftr-list li a:hover {
    background-color: #fff;
    transition: 0.5s ease-in-out;
}

ul.follow-ftr-list li a:hover i {
    color: #000;
    transition: 0.5s ease-in-out;
}

ul.follow-ftr-list {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
}

ul.footer-nav-list {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
}

ul.footer-nav-list a {
    color: #fff;
    transition: 0.3s ease-in-out;
}

ul.footer-nav-list a:hover {
    color: #000;
    transition: 0.3s ease-in-out;

}

.ftr-bottom {
    margin: 70px 0 30px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #dee2e65c !important;
}

.ftr-copyright p {
    color: #fff;
}

.ftr-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ftr-copyright ul {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ftr-copyright ul li a {
    color: #fff;
    font-size: 15px;
    position: relative;
    padding-right: 15px;
}

.ftr-copyright ul li a::before {
    top: 0;
    right: 0;
    width: 1px;
    content: '';
    height: 100%;
    position: absolute;
    background-color: #fff;
}

html {
    overflow-x: hidden;
}

.ftr-copyright ul li:last-child a::before {
    display: none;
}

.footer-box .footer-bg-img {
    left: 0%;
    width: 106%;
    z-index: -1;
    opacity: 0.1;
    bottom: -50px;
    line-height: 1;
    font-size: 335px;
    object-fit: cover;
    position: absolute;
    color: var(--white);
    font-family: 'American-Captain';
}

/* footer */


/*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*/