/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
html{
	overflow-x: hidden;
	height: 100%;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 13px;
	text-align: center;
	font-family: "Roboto";
	background: #fcfcfd;
} */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    /* background: linear-gradient(135deg, #71b7e6, #9b59b6); */
}

:root {
    --yellow: #F7CA3E;
}

* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    /* text-transform: capitalize; */
    transition: all 0.2s linear;
}


/**Contact Section**/

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-section {
    position: absolute;
    align-self: flex-start;
    flex-shrink: 0.5;
    z-index: 10;
    width: 100%;
    height: 51px;
    /* background-color: #0d2d3a; */
    background: hsl(0, 95%, 75%);
    /* padding: 10px 197px; */
    padding: 10px 320px;
    margin: -10px -130px;
}

.home-content {
    margin: 171px 260px;
}


/* .contact {
    position: relative;
    animation: heading;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes contact {
    0% {
        top: -100px;
    }
    100% {
        top: 0px;
    }
} */

.contact-section p a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    margin-right: 5px;
    align-items: flex-end;
}

.distributor-tab {
    background-color: #0d2d3a;
    height: 80px;
    /* padding: 20px 0px; */
    /* margin-right: auto; */
    right: 0;
    display: table;
    /* margin: 30px 0; */
    /* float: right; */
    padding-top: 19px;
    padding-bottom: -31px;
    padding-left: 15px;
    padding: auto 1%;
    /* margin: 0px 770px; */
    /* margin: 0 5%; */
    justify-items: end;
    align-content: end;
    width: 235px;
    display: flex;
    /* display: grid; */
    /* justify-content: end; */
    /* flex-direction: row; */
    /* justify-content: flex-end; */
    position: absolute;
}

.mail-section {
    display: flex;
    margin: 5px 0;
}

.mail-section p {
    margin: 6px 1px;
}

.mail-section .fas {
    background-color: #0d2d3a;
    border-radius: 50%;
    color: white;
    margin: 0px 8px;
    padding: 8px 8px;
    font-size: 1.2rem;
}

.fab,
.far {
    font-weight: 400;
    padding: 10px 10px;
    font-size: 20px;
    color: black;
}


/***Root Selection***/

h1,
h3 {
    font-family: "Oswald", sans-serif;
}

*::selection {
    background: var(--yellow);
    color: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    /* overflow-x: hidden; */
    /* height:200rem; */
}

html::-webkit-scrollbar {
    width: 1.4rem;
}

html::-webkit-scrollbar-track {
    background: #333;
}

html::-webkit-scrollbar-thumb {
    background: var(--yellow);
}

section {
    min-height: 100vh;
    padding: 1rem 10%;
    padding-top: 8.5rem;
}

.contact {
    height: 50px;
    background-color: #000000;
    top: 0;
    position: sticky;
    width: 100%;
    z-index: 100;
}

.btn {
    font-size: 1.7rem;
    padding: 0.7rem 4rem;
    border-radius: 5rem;
    margin-top: 1rem;
    background: none;
    color: #333;
    cursor: pointer;
    border: 0.2rem solid var(--yellow);
}

.btn:hover {
    background: var(--yellow);
}

.heading {
    text-align: center;
    font-size: 4rem;
    padding: 0 0.5rem;
    color: #333;
}

.heading span {
    color: var(--yellow);
}

header {
    /* position: fixed; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 15%;
    /* background: #fff; */
    background: hsl(0, 95%, 75%);
    padding: 1.5rem 10%;
    box-shadow: 0 0.3rem 2rem rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
}

header .logo img {
    position: absolute;
    height: 15em;
    width: 15rem;
    margin: 7px -70px;
    background: rgb(255, 255, 255);
    /* border-radius: 10%; */
    padding: 10px 10px;
    border-radius: 100%;
    top: 8px;
    box-shadow: 0rem 1px 1px 0.4rem #b5b2b2;
}


/* header .logo img {
    height: 8rem;
    width: 8rem;
    margin: 0px -57px;
} */

header .navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

header .navbar ul li {
    margin-left: 5rem;
    padding: 20px 0px;
}

header .navbar ul li a {
    font-size: 1.7rem;
    color: #666;
}

header .navbar ul li a.actives,
header .navbar ul li a:hover {
    color: var(--yellow);
}

header #menu-bar {
    font-size: 3rem;
    color: #666;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

article {
    float: left;
    position: relative;
    padding: 30px 0;
    background: #fcfcfd;
    z-index: 0;
    width: 100%;
    top: 48rem;
}

.section-title {
    float: left;
    position: relative;
    width: 100%;
    padding-bottom: 0px;
}

.section-title p {
    color: #7d93b2;
    font-size: 13px;
    line-height: 20px;
    max-width: 550px;
    margin: 0 auto;
}

.section-title h2 {
    float: left;
    width: 100%;
    text-align: center;
    color: var(--yellow);
    font-size: 34px;
    font-weight: 800;
    position: relative;
}

.section-separator {
    float: left;
    width: 100%;
    position: relative;
    margin: 20px 0;
}

.section-separator:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 3px;
    width: 50px;
    border-radius: 3px;
    z-index: 2;
    background-color: var(--yellow);
    margin-left: -25px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.listing-carousel-button {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    z-index: 100;
    cursor: pointer;
    background: #007aff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.45);
    transition: all 200ms linear;
    outline: none;
}

.listing-carousel-button.listing-carousel-button-next {
    right: -30px;
    /* padding-right: 4rem; */
    padding: 8px 23px;
    border-radius: 60px 0 0 60px;
    margin: -36rem 0px;
}

.listing-carousel-button.listing-carousel-button-prev {
    left: -30px;
    /* padding-left: 4rem; */
    padding: 8px 40px;
    border-radius: 0 60px 60px 0;
    margin: -36rem 0px;
}

.listing-carousel-button.listing-carousel-button-next:hover {
    right: -15px;
    background: rgba(6, 27, 65, 0.4);
}

.listing-carousel-button.listing-carousel-button-prev:hover {
    left: -15px;
    background: rgba(6, 27, 65, 0.4);
}

.testi-item {
    transition: all .3s ease-in-out;
    transform: scale(0.9);
    opacity: 0.9;
}

.testimonials-text {
    padding: 75px 50px 75px;
    overflow: hidden;
    background: #f5f6fa;
    border: 1ps solid #f1f1f1;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.testimonials-text-after {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: .3;
    font-size: 35px;
    transition: all 400ms linear;
    bottom: 25px;
    right: 30px;
}

.testimonials-text-before {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: .3;
    font-size: 35px;
    transition: all 400ms linear;
    top: 25px;
    left: 30px;
}

.testimonials-text .listing-rating {
    float: none;
    display: inline-block;
    margin-bottom: 12px;
}

.listing-rating i {
    color: #007aff;
}

.testimonials-avatar h3 {
    font-weight: 600;
    color: #7d93b2;
    font-size: 18px;
}

.testimonials-avatar h4 {
    font-weight: 400;
    font-size: 12px;
    padding-top: 6px;
    color: #007aff;
}

.testimonials-carousel .swiper-slide {
    padding: 30px 0;
}

.testi-avatar {
    position: absolute;
    left: 50%;
    top: -30px;
    width: 90px;
    height: 90px;
    margin-left: -45px;
    z-index: 20;
}

.testi-avatar img {
    width: 115px;
    height: 117px;
    float: left;
    border-radius: 157%;
    border: 6px solid #fff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.swiper-slide-active .testimonials-text {
    background: #fff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.testimonials-text p {
    color: #878c9f;
    font-size: 14px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
}

.text-link {
    position: absolute;
    bottom: 0;
    padding: 15px 0;
    border-radius: 10px 10px 0 0;
    background: #f9f9f9;
    border: 1px solid #eee;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
    left: 50%;
    width: 200px;
    margin-left: -100px;
}

.swiper-slide-active .testi-item {
    opacity: 1;
    transform: scale(1.0);
}

.tc-pagination {
    float: left;
    margin-top: 10px;
    width: 100% !important;
}

.tc-pagination_wrap {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
}

.tc-pagination2 {
    float: none;
    display: inline-block;
    padding: 14px 0;
    background: #fff;
    border-radius: 30px;
    min-width: 250px;
    border-bottom: 0;
}

.tc-pagination .swiper-pagination-bullet,
.tc-pagination2.swiper-pagination-bullet {
    opacity: 1;
    background: #384f95;
    margin: 0 2px;
    width: 10px;
    height: 10px;
    transition: all 300ms ease-in-out;
}

nav ul ol {
    position: absolute;
    top: 72px;
    margin: 0px -20px;
    list-style: none;
    display: none;
    padding: 5px 0px;
    background: hsl(0, 95%, 75%);
    /* margin: 20px -14px; */
}

nav ul li:hover>ol {
    display: block;
}

nav ul ol li {
    float: none;
    display: list-item;
    position: relative;
    width: 93px;
    height: 56px;
    padding: -3px 20px;
    margin: -11px 0px;
}

nav ul ol li a {
    margin: 0px -24px;
}

.fas {
    margin-left: 5px;
    padding-top: 2px;
    font-size: 18px;
    color: #666;
}

nav ul ol ol li {
    position: relative;
}

nav ul ol ol {
    /* background: hsl(0deg 100% 91%); */
    padding: 0px -47px;
    margin: -65px 88px;
    width: 135%;
}

.tc-pagination {
    font-size: 10px;
    align-items: center;
    justify-content: center;
    justify-items: center;
    display: inline-flex;
    align-content: center;
}

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about .image3 {
    flex: 1 1 40rem;
    height: 50rem;
    background: url(about-frame-img.png), url(IMG20220711222430\ \(1\).jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: screen;
}

.contain {
    width: 90%;
    margin: 50px auto;
}

.headingss {
    text-align: center;
    font-size: 12px;
    margin-bottom: 50px;
}

.headingss {
    position: relative;
}

.rowes {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
}

.card {
    width: 40%;
    /* background: #fff; */
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    /* border: 1px solid #ccc; */
    /* margin-bottom: 50px; */
    transition: 0.3s;
    margin: 20px 40px;
    border-radius: 35px;
}

.card-header {
    text-align: center;
    padding: 50px 10px;
    /* background: linear-gradient(to right, #ff416c, #ff4b2b); */
    background: rgba(255, 255, 255, 0.895);
    color: #fff;
}

.card-body {
    padding: 30px 20px;
    text-align: center;
    font-size: 18px;
}

.card-body .btn {
    display: block;
    color: #fff;
    text-align: center;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    margin-top: 30px;
    text-decoration: none;
    padding: 10px 5px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.25);
}

.headingss h3 {
    font-size: 14px !important;
    font-style: normal !important;
    margin: 20px 60px;
}

@media screen and (max-width: 1000px) {
    .card {
        width: 90%;
    }
}

@media screen and (max-width: 620px) {
    .container {
        width: 100%;
    }
    .heading {
        padding: 20px;
        font-size: 20px;
    }
    .card {
        width: 100%;
    }
}

.headingss h1::before,
.headingss h1::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    height: .3rem;
}

.headingss h1::before {
    width: 40%;
    bottom: -2rem;
}

.headingss h1::after {
    width: 60%;
    bottom: -1rem;
}


/* media queries  */

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    .home::before,
    .home::after {
        display: none;
    }
}

@media (max-width: 1176px) {
    .mail-section {
        display: none;
    }
    .social-media {
        display: none;
    }
    .distributor-tab p a {
        font-size: 10px;
        text-align: center;
        padding: 50% 0;
    }
}

@media (max-width: 605px) {
    .distributor-tab {
        /* right: 100px;
        width: 285px; */
        /* padding: 10px 320px; */
    }
    .contact-section {
        padding: 0 0;
    }
}

@media (max-width: 768px) {
    header #menu-bar {
        display: block;
    }
    header .navbar {
        position: fixed;
        top: 8rem;
        left: 0;
        width: 100%;
        background: var(--yellow);
        border-top: 0.2rem solid rgba(0, 0, 0, 0.1);
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }
    header .navbar ul {
        flex-flow: column;
        padding: 2rem;
    }
    header .navbar ul li {
        margin: 1.5rem;
        width: 100%;
    }
    header .navbar ul li a {
        display: block;
        color: #fff;
        padding-left: 2rem;
        border-left: 0.2rem solid #fff;
        font-size: 2rem;
    }
    header .navbar ul li a:hover,
    header .navbar ul li a.active {
        color: #333;
        border-color: #333;
    }
    .fa-times {
        transform: rotate(180deg);
    }
    header .navbar.nav-toggle {
        transform: scaleY(1);
        opacity: 1;
    }
    .home .content {
        text-align: center;
    }
    .home .content h3 {
        font-size: 4.5rem;
    }
    .order .row .image {
        display: none;
    }
    .home {
        background-size: cover;
    }
}

@media (max-width: 500px) {
    html {
        font-size: 50%;
    }
    section {
        padding: 1rem 5%;
        padding-top: 8.5rem;
    }
}

.distributor-tab p a {
    font-size: 15px;
}

.distributor-tab p {
    line-height: 375%;
}

.home-content p {
    margin: 0px -80px;
}


/* .fa-caret-right {
    position: absolute;
    margin: auto;
    height: 20px;
} */