@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&display=swap');
:root {
    --white: #fff;
    --black: #000;
    --primary: #662D91;
    --secondary: #33CFC6;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}


/* How to add New font */

@font-face {
    font-family: "cutoff regular";
    src: url("../fonts/cutoff\ pro.otf");
}

@font-face {
    font-family: "cutoff bold";
    src: url("../fonts/cutoffPro-bold.otf");
}

section {
    position: relative;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
    font-family: 'Jost', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: #4C1B77;
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}


/* loader */


/* btn css */

.themeBtn1 {
    background: transparent;
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.6em 1.4em;
    border-radius: 5px;
    line-height: normal;
    border: 2px solid #FFFFFF;
    font-family: 'Jost', sans-serif;
}

.themeBtn2 {
    background: linear-gradient(225deg, #30D5C8, #662D91);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.6em 1.4em;
    border-radius: 5px;
    line-height: normal;
    border: 2px solid #FFFFFF;
    font-family: 'Jost', sans-serif;
    transition: 0.5s ease;
    overflow: hidden;
    position: relative;
}

.themeBtn2:hover {
    background: linear-gradient(225deg, #2b8a82, #82629b);
    color: #fff;
    transition: 0.8s ease;
}

.themeBtn1:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

.main-slider h3 span {
    font-weight: 500;
}


/* btn css */


/* navigation css */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-nav {
    align-items: center;
    gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
}

.an-navbar {
    background: var(--theme-color);
    padding: 1.35rem 0;
}


/* navigation css */


/* slider css */

.main-slider {
    height: 1080px;
    position: relative;
    z-index: 1;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    /* overflow: hidden; */
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 3.4375rem;
    line-height: 1;
    font-weight: bold;
    text-transform: capitalize;
    font-family: "cutoff bold";
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.8;
    margin-top: 1rem;
    font-size: 17px;
}

.main-slider h3 {
    font-size: 1.25rem;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
}


/* slider css */


/* / sraachbar start / */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* / sraachbar end / */

li.nav-item i {
    color: #fff;
}

.slideimges {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: -38px;
}

.slideimges figure {
    /* position: absolute; */
    /* bottom: 0; */
    /* top: 0; */
    /* z-index: 11111; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* height: 100%; */
    /* right: 1rem; */
    /* width: 100%; */
}

img.img-fluid.bnr2 {
    position: absolute;
    right: -12rem;
    /* bottom: 0; */
    margin-bottom: 25px;
}

.slideimges span {
    position: absolute;
    top: -30px;
    left: 0;
    z-index: -1;
}

.setImg:before {
    content: "";
    position: absolute;
    top: 6%;
    left: 16px;
    border: 1px solid #fff;
    z-index: -1;
    width: 534px;
    height: 800px;
}

.socialIcons {
    position: absolute;
    bottom: 17rem;
    left: 3rem;
    width: fit-content;
    text-align: center;
    z-index: 2;
}

.socialIcons li a {
    color: var(--white);
    font-size: 1.8rem;
}

.socialIcons li+li {
    margin-top: 10px;
}

.socialIcons li a:hover {
    color: var(--secondary);
}

.navbar {
    border-bottom: 1px solid #ffffffa1;
    padding-bottom: 12px !important;
}

.mainHead {
    font-size: 5rem;
    text-transform: capitalize;
    color: #4C1B77;
    font-weight: bold;
    font-family: "cutoff bold";
}

.subHeading {
    font-size: 2.25rem;
    color: #3FA8B9;
    text-transform: capitalize;
    margin: 0;
    font-weight: 400;
}


/* shopflower css start  */

section.shopflower {
    background: #543360;
    padding: 6rem 0;
}

img.flower1 {
    position: absolute;
    top: -11rem;
    z-index: 1;
    left: -8rem;
}


/* aboutsec css start  */

.aboutImg {
    display: flex;
    align-items: flex-start;
    margin-top: 10.7rem;
}

.aboutImg figure {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    gap: 1rem;
}

.aboutImg figure .brdr {
    border: 15px solid var(--white);
    border-radius: 50%;
    display: table;
    /* position: relative; */
    margin: -70px -90px 0px 90px;
    position: relative;
    z-index: 11;
}

.aboutMain {
    padding: 1rem 0 5rem;
}

.aboutImg figure .dots {
    position: absolute;
    top: -50px;
    right: 0;
    z-index: -1;
}

.aboutImg figure .circle {
    background: #D3D9DB;
    width: 171px;
    height: 171px;
    border-radius: 50%;
    position: absolute;
    right: -50px;
    bottom: 0;
    z-index: -1;
}

.aboutImg figure+figure {
    z-index: 1;
}

.aboutContent .themeBtn1 {
    border-color: #643694;
    color: #643694;
}

.aboutContent p {
    color: #162537;
    font-size: 1rem;
}

.aboutContent .btn-group {
    gap: 10px;
}


/* aboutsec css end  */


/* serviceSec css start  */

.serviceSec {
    background: url(../images/servicebg.png)no-repeat;
    padding: 10rem 0 5rem 0;
}

.serwrap {
    text-align: center;
}

.srvcntnt h3 {
    font-size: 2.5rem;
    color: #000;
    font-weight: bold;
    font-family: 'cutoff bold';
    margin-bottom: 1rem;
}

.srvcntnt .themeBtn1 {
    border-color: #643694;
    color: #643694;
}


/* serviceSec css end  */


/* popularsec css start  */

.poplarcntt h3 {
    font-size: 1.5625rem;
    margin-top: 1rem;
    color: #4C1B77;
    font-family: "cutoff regular";
}

.poplarcntt h5 {
    font-size: 1.375rem;
    color: #33CFC6;
    margin: 10px 0;
    font-family: 'Jost';
}

.poplarcntt .themeBtn1 {
    border-color: #643694;
    color: #643694;
    padding: 8px 26px;
}

.poplarcntt {
    border: 1px solid #DFDFDF;
    padding: 1rem;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
}

.popularwrap figure img {
    width: 100%;
}

section.popularSec {
    padding: 5rem 0;
}


/* popularsec css end  */


/* watchsec css start  */

.watchSec p {
    font-size: 2.25rem;
    text-align: center;
    color: #727272;
}

section.watchSec figure {
    position: relative;
}

section.watchSec figure i {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    border: 1px solid #fff;
    width: 80px;
    height: 81px;
    top: 38%;
    border-radius: 50%;
    left: 47%;
    background: #fff;
}

.watchSec .swiper-button-prev {
    left: 26.75rem;
    top: 31rem;
}

.watchSec .swiper-button-next {
    right: 27.75rem;
    top: 31rem;
}

.watchSec .swiper-button-prev,
.watchSec .swiper-button-next {
    border: 1px solid #FFFFFF;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: transparent;
}

.watchSec .swiper-button-prev:hover,
.watchSec .swiper-button-next:hover {
    background-color: #D5D5D5;
    border-color: #D5D5D5;
}

.watchSec .swiper-button-prev:after,
.watchSec .swiper-button-next:after {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    font-family: 'Font Awesome 5 Pro';
    content: '\f060';
}

.watchSec .swiper-button-next:after {
    content: '\f061';
}

section.watchSec {
    padding: 2rem 0;
}


/* watchsec css end  */


/* Testimonial Sec Css Start */

.testimonialSec {
    padding: 5rem 0;
}

.reviewBox {
    border-radius: 19.5px;
    padding: 3rem 3rem;
    position: relative;
    border: 1px solid #A7A7A7;
    box-shadow: 0 10px 0 rgb(0 0 0 / 16%);
}

.quote::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #30D5C8;
    border-radius: 50px;
    top: -24px;
    right: -9px;
}

.quote {
    position: absolute;
    right: 0;
    top: 0;
    width: 101px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote img {
    margin: 0 -10px 10px 0;
    display: block;
    position: relative;
    z-index: 1;
}

.revewImg {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.revewImg h6 {
    font-size: 1.3125rem;
    color: var(--black);
    margin: 8px 0 0;
    font-weight: 500;
    font-family: 'Jost';
}

.reviewBox p {
    color: var(--black);
    margin: 1rem 0rem 0 0;
    width: 91%;
}

.reviewSlider {
    padding: 1rem 0 4rem 0;
}

.reviewSlider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #4C1B77;
    opacity: 1;
}

.reviewSlider .swiper-pagination-bullet-active {
    background: #4C1B77;
}

.reviewSlider .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}


/* Testimonial Sec Css End */


/* Footer Css Start */

footer {
    background-color: #F6F6F6;
    padding-top: 5rem;
    position: relative;
}

footer ul li a:hover {
    color: var(--primary);
}

footer h2 {
    font-size: 1.5625rem;
    font-family: 'cutoff regular';
}

.links li a {
    color: #403838;
    display: block;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.contctLinks li span {
    font-size: 0.9375rem;
    color: var(--black);
}

.contctLinks li a {
    font-size: 0.9375rem;
    line-height: 1.1;
    color: #403838;
}

.contctLinks li a span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #403838;
}

.contctLinks li+li {
    padding-top: 1.5rem;
}

.foorForm input {
    height: 50px;
    width: 100%;
    border: 1px solid #F1F1F1;
    background: #fff;
    font-size: 0.75rem;
    padding-left: 1.2rem;
}

.foorForm button {
    font-size: 0.9375rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: unset;
    border-radius: 7px;
    background: linear-gradient(225deg, #30D5C8, #662D91);
    color: var(--white);
    padding: 7px 1.375rem;
    letter-spacing: 3px;
    position: absolute;
    right: 10px;
}

.foorForm {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0.875rem 0 1.5rem 0;
}

.instaLinks {
    display: flex;
    gap: 1.5rem;
}

.instaLinks li a {
    font-size: 1.5rem;
    color: var(--black);
}

.termsLink {
    display: flex;
    gap: 1.5rem;
}

.termsLink li a {
    font-size: 0.875rem;
    color: var(--secondary);
}

.footBottom p {
    margin: 0;
    font-size: 1.25rem;
    color: #fff;
}

.termsLink li+li {
    border-left: 1px solid var(--secondary);
    padding-left: 1.5rem;
}

.footBottom {
    background: var(--primary);
    padding: 10px 0;
    margin-top: 3rem;
}

ul.contctLinks span {
    text-decoration: underline;
}

.footBottom::before {
    content: "";
    position: absolute;
    clip-path: polygon(23% 81%, 79% 81%, 100% 100%, 0% 100%);
    background: #4C1B77;
    width: 143px;
    height: 69px;
    left: 0;
    right: 0;
    bottom: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}


/* Footer Css End */


/* getsection Css start */

section.getsection {
    padding: 5rem 0;
}

.genwrap figure {
    position: relative;
}

.gencntnt h3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'cutoff bold';
    font-size: 40px;
}

.genwrap figure img {
    width: 100%;
}

.genwrap figure img {
    height: 806px;
    object-fit: cover;
}

.blockbx {
    display: flex;
    align-items: center;
}

.blockbx figure img {
    width: 100%;
}

.cpink {
    background: #662D91;
    text-align: center;
    padding: 7.7rem 1rem;
}

.cpink h3 {
    font-size: 40px;
    color: #fff;
    font-family: 'cutoff bold';
}

.cpink p {
    font-size: 14px;
    color: #fff;
}

.blockbx figure {
    flex-shrink: 0;
}

.cpink.black {
    background: #000;
}

.flwrgen figure {
    width: 100%;
}

.flwrgen figure {
    position: relative;
}

.flwrgen figure img {
    height: 806px;
    object-fit: cover;
}

.flwrcnt h3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'cutoff bold';
    font-size: 40px;
}


/* getsection Css End */

.navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary);
}

.scrol a {
    position: absolute;
    bottom: 4rem;
    left: 15rem;
    /* right: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: 'Jost';
    writing-mode: tb-rl;
}

.scrol a i {
    margin-top: 8px;
}


/* inner pages css start */

.innerBanner h2 {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    margin: 7rem 0 0;
    font-size: 3.4375rem;
    color: var(--white);
    font-weight: bold;
}

.aboutMain.aboutPage .row+.row {
    margin-top: 3rem;
}

.misionImg {
    text-align: center;
}

.misionImg img {
    border: 15px solid #FFFFFF;
    border-radius: 50%;
}

.aboutMain.blogPage {
    padding: 4rem 0;
}

.heading {
    font-size: 3.125rem;
    color: #4C1B77;
    font-weight: bold;
    font-family: "cutoff bold";
}

.aboutMain.blogPage .row+.row {
    margin-top: 5rem;
}

.reveal {
    overflow: hidden;
}

.aboutMain.workPage {
    padding: 5rem 0;
}

.aboutMain.workPage figure img {
    border: 10px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.line {
    background: #4C1B77;
    width: 2px;
    height: 82%;
    position: absolute;
    left: 0;
    right: 0;
    /* top: 0; */
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    margin-bottom: 6rem;
}

.line span {
    width: 17px;
    height: 17px;
    background: #4C1B77;
    display: block;
    border-radius: 50%;
}

.aboutMain.workPage .row+.row {
    margin-top: 3rem;
}

.aboutMain.tutorialsPage figure {
    position: relative;
    margin-bottom: 2rem;
}

.aboutMain.tutorialsPage figure img {
    height: 432px;
    object-fit: cover;
}

.aboutMain.tutorialsPage figure a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF3E45;
    font-size: 5rem;
}

.aboutMain.tutorialsPage figure a img {
    height: auto;
}

.aboutMain.tutorialsPage {
    padding: 5rem 0;
}

.aboutMain.shopPage .popularwrap {
    margin-bottom: 2rem;
}

.aboutMain.shopPage {
    padding-top: 4rem;
}

.aboutMain.contactPage {
    padding: 3rem 0;
}

.cntctHeading {
    font-size: 3.75rem;
    color: #393A3C;
    font-weight: 400;
    margin: 0 0 1rem;
}

.infoContact ul li label {
    font-size: 1.8125rem;
    font-family: 'Jost', sans-serif;
    color: #403838;
    display: block;
    margin: 0;
}

.infoContact ul li a {
    font-size: 2.1875rem;
    color: #393A3C;
    font-family: 'Jost', sans-serif;
}

.infoContact ul li+li {
    margin-top: 3rem;
}

.contactForm label {
    font-size: 1.125rem;
    color: #4C1B77;
    display: block;
}

.contactForm input {
    width: 100%;
    height: 74px;
    border: 1px solid #A8A6A6;
    background: #F2F2F2;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.contactForm textarea {
    width: 100%;
    height: 299px;
    border: 1px solid #A8A6A6;
    background: #F2F2F2;
    border-radius: 5px;
    margin-bottom: 2rem;
    resize: none;
}

.contactForm .themeBtn2 {
    padding: 0.6em 3.33em;
    display: table;
    margin: auto;
}


/* inner pages css end */