@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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');

/***** General CSS *****/

html {
    overflow-x: hidden;
}

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

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;
}

img {
    max-width: 100%;
}

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;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

i {
  font-family: FontAwesome !important;
}

i::before {
  font-family: FontAwesome !important;
}

section.bg-color {
    /* background-color: #50b9fe; */
    background-image: url(../images/bubble-back.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.txt-fff * {
    color: #fff;
}

/***** 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: 'Proxima_Nova_Condensed_Regular';
    src: url('../fonts/Proxima_Nova_Condensed_Regular.otf');
}

@font-face {
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
    src: url('../fonts/Proxima_Nova_Alt_Condensed_Bold.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;
}

.sec {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 50px;
    padding: 0 40px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background: #e6b935;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1::Before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-radius: 100px;
    transform: translate(-50%, -50%);
    background: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1:hover::Before {
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-family: 'Proxima_Nova_Condensed_Regular';
    text-transform: capitalize;
    position: relative;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt  {
    color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}
 
.theme1 span.theme1-icon {
    color: #fff;
    font-size: 20px;
    position: relative;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
    color: #000;
    font-size: 20px;
    position: relative;
    z-index: 9;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-icon i {
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon i {
    color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}












.theme2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 50px;
    padding: 0 20px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background: #282828;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2::Before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-radius: 100px;
    transform: translate(-50%, -50%);
    background: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2:hover::Before {
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-family: 'Proxima_Nova_Condensed_Regular';
    text-transform: capitalize;
    position: relative;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt  {
    color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}
 
.theme2 span.theme2-icon {
    color: #fff;
    font-size: 20px;
    position: relative;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon {
    color: #000;
    font-size: 20px;
    position: relative;
    z-index: 9;
    transition: ease-out;
    transition-duration: 0.5s;
}














.theme3 {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme3 span.theme3-icon i {
    color: #fff;
    font-size: 18px;
}

.theme3 span.theme3-txt {
    position: relative;
    color: #fff;
    font-size: 14px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme3 span.theme3-txt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme3 span.theme3-txt:hover::before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}



/* Buttons Css Ends */

.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-family: 'Proxima_Nova_Alt_Condensed_Bold';
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'Proxima_Nova_Condensed_Regular';
    font-size: 55px;
    line-height: 60px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: 'Proxima_Nova_Condensed_Regular';
    font-size: 30px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-family: 'Proxima_Nova_Condensed_Regular';
    font-size: 24px;
    line-height: 29px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'Proxima_Nova_Condensed_Regular';
    font-size: 20px;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'Proxima_Nova_Condensed_Regular';
    font-size: 18px;
    line-height: 23px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

p {
    color: #000;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Proxima_Nova_Condensed_Regular';
    font-weight: 300;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
header {
    padding: 0;
}
.topSec-top-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4e535a;
    padding: 10px 0;
}
.topSec-top-txt p {
    color: #fff;
}
.topSec-top-txt p a {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}
.topSec-top-txt p a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}
.topSec-top-txt p a:hover::before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}
.menuSec {
    padding: 5px 0 10px 0;
}
.menuSec .row {
    position: relative;
}
.topSec {
    padding: 5px 0;
}
/* .menuSec img {
    margin: 0;
} */
.menu-box {
    height: 70px;
}
.menu-box ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    /* text-align: right; */
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
    height: 100%;
}

.menu-box ul li {
    /* position: relative; */
    /* display: inline-block; */
    /* margin: 0; */
    /* padding: 0; */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: ease-in;
    transition-duration: 0.5s;
}

.menuSec-inner-card-list {
    width: 100%;
}

.menuSec-inner-card-ex {
    justify-content: end !important;
    height: 80% !important;
}

.menuSec-inner-card-list-ex ul {
    height: 100%;
}

.menu-box li ul {
    display: none;
}

.menuSec-inner-main {
    display: none;
    height: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.menu-box ul li:hover .menuSec-inner-main {
    display: flex;
    align-items: start;
    justify-content: start;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 9;
    background-color: #fff;
    padding: 30px 30px;
    bottom: -550px;
    position: absolute;
    height: 560px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menuSec-inner-card {
    width: 100%;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    height: 100%;
}

.menuSec-inner-card-list-top {
    width: 100%;
}

.menu-box ul li a {
    position: relative;
    text-decoration: none;
    color: #50b9fe;
    padding: 0;
    font-size: 16px;
    line-height: 20px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    gap: 5px;
    font-family: 'Proxima_Nova_Condensed_Regular';
    text-transform: uppercase;
    /* height: 100%; */
    transition: ease-in;
    transition-duration: 0.5s;
}

.menuSec-inner-card-list ul li {
    display: flex;
    align-items: start;
    justify-content: start;
}

.menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 0;
    margin: 0 auto;
    border-bottom: 1px solid #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menu-box ul li a i {
    font-size: 15px;
    color: rgb(82 82 91);
}

.menuSec-inner-card-list-top a {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    text-align: start;
}

.menuSec-inner-card-list-top a {
    align-items: start !important;
    padding: 20px !important;
    background-color: #f3f4f6;
    border-radius: 5px;
}

.header-links-main ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}

.header-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    border: 1px solid #0000;
    border-radius: 100px;
    padding: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-links a:hover {
    border: 1px solid #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menu-box ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menu-box li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    right: 0;
    width: 30%;
    text-align: left;
    top: 55px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    height: 180px;
}

.menu-box li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menu-box li>ul>li,
.menu-box li>ul>li>a {
    display: block;
    margin: 0;
}

.menu-box li>ul>li>a:before,
.menu-box li>ul>li>a:after {
    display: none;
}

.menu-box li:hover li {
    float: none;
    width: 100%;
}

.menuSec-inner-card-list ul li a {
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 0 0 5px 0;
    width: 100%;
}

.menuSec-inner-card-list ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    width: 100%;
}


.menu-box li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menu-box ul ul ul {
    left: 100%;
    top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}


/*header css start */

/*banner css start */

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_text {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 10px;
    text-align: end;
}

.banner_text h5 {
    font-size: 24px;
    line-height: 29px;
    color: #fff;
    font-weight: 600;
}

.banner_text p {
    color: #fff;
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    width: 77%;
}



/*banner css end*/

/*Search Css Starts*/

.header-search {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 100%;
    height: 50px;
    background-color: #fff;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #00000024;
}

.header-search .header-search-input {
    width: 100%;
    height: 100%;
}

.header-search .header-search-input input {
    width: 100%;
    height: 100%;
    background-color: #0000;
    border: none;
    outline: none;
    padding: 0;
    font-size: 16px;
    line-height: 20px;
}

.header-search .header-search-input input::placeholder {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Proxima_Nova_Condensed_Regular';
}

.header-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header-search-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
}

/*Search Css Ends*/

/*Mac Sec Css Starts*/

section.mac-sec {
    position: relative;
    background-image: url(../images/bubble-back.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

section.mac-sec::Before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 500px;
    background-image: url('../images/ex-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

section.mac-sec::after {
    /* content: ''; */
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 500px;
    rotate: 180deg;
    background-image: url('../images/ex-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.mac-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
    margin: 0 5px 20px 5px;
}

.mac-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 54%) 0%, rgb(0 0 0 / 23%) 100%);
    transition: ease-out;
    transition-duration: 0.5s;
}

.mac-card:hover::before {
    background: linear-gradient(0deg, rgb(0 0 0 / 76%) 0%, rgb(0 0 0 / 23%) 100%);
    transition: ease-out;
    transition-duration: 0.5s;
}

.mac-card-txt {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 90%;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.mac-card-txt h4 {
    font-size: 36px;
    line-height: 41px;
    color: #fff;
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
    text-transform: uppercase;
}

.mac-card-txt p {
    font-size: 18px;
    line-height: 25px;
    color: #fff;
}

.mac-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 370px;
    width: 100%;
    object-fit: cover;
}

.mac_slider .slick-current, .mac_slider .slick-slide {
    opacity: 1;
}



/*Mac Sec Css Ends*/

/*Fav Sec Css Starts*/

a.fav-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
}

a.fav-card-btn span.fav-card-btn-txt {
    position: relative;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    transition: ease-in;
    transition-duration: 0.5s;
}

a.fav-card-btn span.fav-card-btn-icon i {
    color: #fff;
    font-size: 13px;
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 2px;
}

a.fav-card-btn span.fav-card-btn-txt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

a.fav-card-btn:hover span.fav-card-btn-txt::before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}


.fav-card-heading {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin: 0 0 50px 0;
}

.fav-card-heading h5 {
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
    font-size: 30px;
    line-height: 35px;
}

.fav-card-heading p {
    font-size: 22px;
    line-height: 27px;
}

.fav-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    /* border: 1px solid #0000003b; */
    /* padding: 20px; */
    height: 580px;
}

.fav-card-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 5px;
    width: 100%;
    padding: 15px;
    background-color: #fafafa;
    height: 100%;
}

.fav-card-txt h5 {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
}

.fav-card-price h5 {
    font-size: 18px;
    line-height: 25px;
    color: #e6b935;
    font-weight: 600;
}

.fav-card-price h6 {
    font-size: 14px;
    line-height: 20px;
    position: relative;
    padding: 0 5px;
}

.fav-card-sale {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 40px;
    padding: 0 30px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background: #e6b935;
    transition: ease-in;
    transition-duration: 0.5s;
}

.fav-card-sale::Before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-radius: 100px;
    transform: translate(-50%, -50%);
    background: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.fav-card-sale:hover::Before {
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.fav-card-sale span.fav-card-sale-txt {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    font-family: 'Proxima_Nova_Condensed_Regular';
    text-transform: capitalize;
    position: relative;
    text-transform: uppercase;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.5s;
}

.fav-card-sale:hover span.fav-card-sale-txt  {
    color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.fav-card-price-sale-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.fav-card-price {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
 
.fav-card-price h6::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 0;
    border-bottom: 1px solid #000;
    width: 100%;
}

.fav-card-reviews-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.fav-card-reviews-txt h6 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.fav-card-reviews-star i {
    color: #edaf44;
}

.fav_slider_main .slick-active {
    opacity: 1;
}

.fav_slider_main .slick-slide {
    margin: 0 5px;
}

.fav-card-top-main {
    display: flex;
    align-items: center;
    justify-content: start;
    /* gap: 30px; */
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
}

.fav-card-top-txt {
    width: 100%;
}

.fav-card-top-txt h5 {
    color: #217a97;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.fav-card-top-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 60px;
    background-color: #217a97;
}

.fav-card-top-icon i {
    font-size: 23px;
    color: #fff;
}

.fav-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 0 0;
    background-color: #fff;
}

.fav-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 330px;
    width: 100%;
    object-fit: cover;
}

.fav_slider_main .slick-prev, .fav_slider_main .slick-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: #f0f0f0;
    border-radius: 100px;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
    opacity: 1;
    bottom: unset;
    top: -15%;
}

.fav_slider_main .slick-next:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 20px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.fav_slider_main .slick-prev:before {
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 20px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.fav_slider_main .slick-next:hover, .fav_slider_main .slick-prev:hover {
    background-color: #e6b935;
    transition: ease-out;
    transition-duration: 0.5s;
}

.fav_slider_main .slick-next:hover::before, .fav_slider_main .slick-prev:hover::before {
    color: #fff;
}

.fav_slider_main .slick-next {
    right: 0;
}

.fav_slider_main .slick-prev {
    left: unset;
    right: 5%;
}

/*Fav Sec Css Ends*/

/*Shi Sec Css Starts*/

section.shi-sec {
    padding: 30px 0;
    background-color: #e0e0e0;
}

.shi-txt h5 {
    font-size: 18px;
    line-height: 23px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
}

.shi_sldier .slick-active, .shi_sldier .slick-slide {
    opacity: 1;
}


/*Shi Sec Css Starts*/

/*Dis Sec Css Starts*/

.dis-card-main {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 5px;
}

.dis-card-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.04) 100%);
}

.dis-card-txt {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 90%;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.dis-card-txt * {
    color: #fff;
}

.dis-card-txt h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.dis-card-txt h4 {
    font-size: 36px;
    line-height: 41px;
    font-weight: 600;
}

.dis-card-txt p {
    font-size: 18px;
    line-height: 23px;
}

.dis-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 660px;
    width: 100%;
    object-fit: cover;
}

.dis-card-btn {
    width: 100%;
}

.dis-card-btn a.dis-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 40px;
    padding: 0 20px;
    border: 1px solid #fff;
    width: 100%;
    border-radius: 5px;
    background-color: #3e3e3eb5;
    transition: ease-in;
    transition-duration: 0.5s;
}

.dis-card-btn a.dis-btn:hover {
    background-color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

/*Dis Sec Css Ends*/

/*Exc Sec Css Starts*/

section.exc-sec {
    position: relative;
}

img.exc-img2 {
    left: -10%;
}

img.exc-img3 {
    right: -10%;
}

.exc-txt-mian {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.exc-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.exc-txt h5 {
    font-size: 36px;
    line-height: 41px;
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
    text-transform: uppercase;
}

.exc-txt h2 {
    font-size: 96px;
    line-height: 101px;
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
    font-weight: 600;
    text-transform: uppercase;
}

.exc-txt h2 span {
    color: #e6b935;
}

.exc-txt p {
    font-size: 24px;
    line-height: 35px;
    width: 58%;
    margin: 0 auto;
}

img.exc-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 300px;
    object-fit: cover;
    position: absolute;
    top: 25%;
}

/*Exc Sec Css Ends*/

/*Int Sec Css Starts*/

.int-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 50px 0;
}

.int-heading h5 {
    font-size: 36px;
    line-height: 41px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
}

.int-heading h2 {
    font-size: 96px;
    line-height: 102px;
    text-transform: uppercase;
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
}

section.int-sec .row.int-ex{
    background-image: url('../images/int-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 80%;
    height: 690px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    padding: 30px;
    display: flex;
    align-items: start;
    justify-content: center;
    object-fit: cover;
}

.intin-top-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 12%;
    margin: 0 auto;
    border-radius: 100px;
    background-color: #e6b935;
    height: 30px;
}

.intin-top-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(198deg) brightness(107%) contrast(104%);
}

.intin-top-txt  h6 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 650;
    color: #fff;
    letter-spacing: 1px;
}

.intin-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.intin-heading-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.intin-heading-txt h2 {
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
    font-size: 96px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

.intin-heading-txt h2 span {
    color: #e6b935;
}

.intin-heading-txt p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-weight: 200;
}

.intin-mid-card-box {
    position: relative;
    height: 400px;
}

.intin-card-main {
    display: inline-flex;
    position: absolute;
}

.intin-card-main1 {
    top: 17%;
    left: 5%;
}

.intin-card-main2 {
    top: 10%;
    right: 0;
}

.intin-card-main3 {
    top: 55%;
}

.intin-card-main4 {
    top: 47%;
    right: 5%;
}

.intin-card-main4::before {
    width: 37% !important;
}

.intin-card-main4::after {
    right: 134% !important;
}

.intin-card-main-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    border-top: 1px solid #fff;
    width: 60%;
}

.intin-card-main3::before {
    width: 65%;
}

.intin-card-main3::after {
    left: 164% !important;
}

.intin-card-main-right::after {
    content: '';
    position: absolute;
    top: 44%;
    left: 155%;
    background-color: #fff;
    height: 15px;
    width: 15px;
    border-radius: 100px;
}

.intin-card-main-left::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    border-top: 1px solid #fff;
    width: 60%;
}

.intin-card-main-left::after {
    content: '';
    position: absolute;
    top: 44%;
    right: 120%;
    background-color: #fff;
    height: 15px;
    width: 15px;
    border-radius: 100px;
}

.intin-card-txt {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 130px;
    width: 250px;
    background-color: #00000099;
    border-radius: 5px;
    padding: 20px;
    border: 1px solid #ffff;
}

.intin-card-txt h6 {
    font-size: 23px;
    line-height: 30px;
    color: #fff;
}

.intin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intin-btn a.intin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 40px;
    padding: 0 30px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: #000000c9;
}

.intin-btn a.intin-btn span.intin-btn-txt {
    color: #fff;
}

.intin-btn a.intin-btn span.intin-btn-icon {
    color: #fff;
}

button.nav-link.active {
    position: relative;
    background-color: #0000 !important;
}

button.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 100px;
    margin: 0 auto;
}

.int-bottom-tab button.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
}

.int-bottom-tab button.nav-link img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.int-bottom-tab ul.nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    margin: 0 !important;
}

.int-bottom-main {
    width: 80%;
    margin: 0 auto;
    background-color: #f4f4f5;
    /* z-index: -1; */
    position: relative;
    border-radius: 0 0 10px 10px;
    padding: 0 0 70px 0;
}

.int-bottom-card {position: relative;}

.int-bottom-card p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    line-height: 70px;
    text-align: center;
    width: 80%;
    margin: -10px auto 0 auto;
    padding: 100px 0;
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: 0;
}

/*Int Sec Css Ends*/

/*Yt Sec Css Starts*/

section.yt-sec {
    position: relative;
    background-image: unset;
    /* background-color: #50b9fe; */
}

img.bub {
    position: absolute;
}

img.bub1 {
    height: 80px;
    width: 80px;
    top: 2%;
    left: 2%;
}

img.bub2 {
    height: 20px;
    width: 20px;
    top: 15%;
    right: 7%;
}

img.bub3 {
    height: 300px;
    width: 300px;
    bottom: -24%;
    left: -6%;
}

img.bub4 {
    height: 100px;
    width: 100px;
    bottom: 30%;
    right: 3%;
}


.yt-heading {
    margin: 0 0 50px 0;
}


.yt-heading h5 {
    font-size: 36px;
    line-height: 45px;
    font-weight: 600;
    text-transform: uppercase;
    /* color: #fff; */
}

.yt-card-icon i {
    color: #ff0000;
    font-size: 70px;
}

.yt-card-txt h5 {
    font-size: 76px;
    line-height: 1;
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
    text-transform: uppercase;
    /* color: #fff; */
}

.yt-card-txt p {
    font-size: 20px;
    line-height: 30px;
    /* color: #fff; */
}

.yt-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.yt-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.yt-vid-card-mian {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 560px;
    width: 100%;
}

.yt-vid-card {
    position: relative;
}

.yt-vid-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    color: #ff0000;
    font-size: 20px;
}

.yt-vid-card a i {
    border: 3px solid #ff0000;
    border-radius: 100px;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt_slider .slick-active {
    opacity: 1;
}

.slick-slide {
    margin: 0 5px;
}

.yt-card-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.yt-card-btn a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #000;
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.yt-card-btn a:hover::before  {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}


/*Yt Sec Css Ends*/


/* FOOTER SECTION START  */


section.footer-sec {
    padding: 80px 0 10px;
    background: #f0f0f0;
}

.footer-links h5 {
    margin-bottom: 15px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #000;
    opacity: .5;
    text-transform: capitalize;
}

.footer-social ul {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 30px;
}

.footer-end-line {
    text-align: end;
}

.footer-end-line a {
    color: #000;
    opacity: .5;
    font-size: 12px;
}

.contact-footer h5 {
    margin-bottom: 15px;
}

.contact-footer p {
    margin-bottom: 8px;
    font-size: 18px;
    color: #000000db;
}

.contact-footer input {
    margin-bottom: 10px;
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 1px solid #0000005c;
    background: transparent;
}

.contact-footer button {
    border: 1px solid #e6b935;
    padding: 12px 20px;
    color: #e6b935;
    border-radius: 10px;
}

.contact-footer button:hover {
    background: #e6b935;
    color: #fff;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-social ul li a i {
    font-size: 20px;
    color: #000;
    opacity: 0.6;
    font-style: normal;
}

.footer-logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
}

/* FOOTER SECTION END  */

/* COFEE BRANDS START  */

.cof-brand-txt h1 {
    font-size: 30px;
    /* COLOR: #000; */
    line-height: 1.5;
}

.cof-brand-txt p {
    font-size: 16px;
    opacity: .8;
    margin: 5px 0;
}

.cof-brand-txt {
    margin-bottom: 25px;
}

section.cofee-brand-sec a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

section.cofee-brand-sec {
    /* margin-bottom: 100px; */
}

section.cofee-brand-sec a img:hover {
    filter: opacity(0.6);
}

/* COFEE BRANDS END  */


section.community-sec {
    margin-bottom: 100px;
}

section.community-sec h1 {
    color: #000;
}

.community-img-main img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.community-img-main {
    position: relative;
}

.coumnity-main-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.community-sec .row {
    margin: 0 0 0 auto;
}

.community-img-main i.fa-brands.fa-instagram {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
}

/* Blog Dec Starts */


section.blog-sec {
    position: relative;
}

section.blog-sec::after {
    /* content: ''; */
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 660px;
    rotate: 180deg;
    background-image: url('../images/ex-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.latest_blog_sec {
    padding: 80px 0;
}

.blog_card {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.blog_image {
    width: 100%;
    position: relative;
    transition: ease-in-out;
    transition-duration: 0.5s;
}


.blog_image img {
    object-fit: cover;
    width: 100%;
    height: 444px;
}

.blog_text .admin ul {
    gap: 20px;
    display: flex;
    align-items: center;
}

.blog_text .admin ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_text .admin ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_text .admin ul li a i {
    color: #4e2782;
}

.blog_text .admin ul li a p {
    color: #2d2d2d;
    font-weight: 600;
    margin: 0;
}

.blog_text {
    position: absolute;
    background-color: white;
    width: 90%;
    /* height: 310px; */
    bottom: 0;
    padding: 40px 20px 20px 20px;
    border-top-left-radius: 0;
    /* border-bottom-right-radius: 0; */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    border-radius: 0 10px 0 0;
}

.blog_text h4 {
    font-family: "Montserrat", serif;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.blog_image:hover .blog_text h4 {
    color: #50b9fe;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.blog_slider .slick-slide , .blog_slider .slick-active {
    opacity: 1;
    outline: none;
}

/* Blog sec Ends */

/* Blog Details Starts */

.blog_details_card {
    margin: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 60px;
}

.blog_details_card .blog_text {
    position: relative;
    width: 100%;
    padding: 0;
    border-radius: 0;
    margin: 80px 0 0 0;
}

.blog_details_card img {
    height: 600px;
    border-radius: 5px;
    overflow: hidden;
}

.blog_image_main {
    width: 100%;
}

/* Blog Details Ends */

/* FAVORITE SEC START  */

section.blog-sec.fav .blog-head p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 3px;
}

.blog-main.fav h3 {
    color: #217a97;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0px;
}

.blog-main.fav img {
    height: 280px;
}

.blog-main.fav h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.blog-main.fav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-main.fav {
    border: 1px solid #00000066;
    padding: 15px 20px;
    position: relative;
}

.thumb-icon {
    background: #217a97;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.thumb-icon i {
    color: #fff;
    font-size: 23px;
}

.blog-main.fav h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 100;
}

.blog-main.fav ul li {
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
    font-size: 18px;
}

.blog-main.fav ul li i {
    font-size: 15px;
    color: #edaf44;
}

h3.fav-spc {
    color: #ffff !important;
    opacity: 0;
}

/* FAVORITE SEC END  */


/* SHOWCASE SEC START  */

section.showcase-sec {
    margin-bottom: 100px;
}

.showcase-text a.theme3:hover {
    background: #e6b935;
    color: #fff;
    opacity: 0.5;
}

.showcase-head p {
    font-size: 17px;
    /* opacity: 0.6; */
}

.showcase-head h1 {
    font-size: 30px;
    /* color: #000; */
    line-height: 1.3;
}

.showcase-head {
    margin-bottom: 20px;
}

.show-case-main {
    background-color: #fff;
    padding: 0 0 20px 0;
    border-radius: 8px;
    overflow: hidden;
    height: 880px;
}

.showcase-img {
    width: 100%;
    height: 570px;
    position: relative;
    margin-bottom: 20px;
}

.showcase-img img.showcase-back {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 7px;
}

img.showcase-absol {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
}

.showcase-text {
    text-align: center;
}

.showcase-text h1 {
    line-height: 1;
    font-size: 36px;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #282828;
    font-weight: 900;
}

.showcase-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e6b935;
}

.showcase-text h6 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #282828;
}

.showcase-text a.theme3 {
    border: 1px solid #e6b935;
    padding: 12px 20px;
    color: #e6b935;
    border-radius: 10px;
    width: max-content;
    margin: 0 auto;
}

.showcase-text p {
    width: 74%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.showcase-text {
    padding: 0 17px;
}

section.showcase-sec .row.show {
    padding: 0 10px;
}

/* SHOWCASE SEC END  */

/* LOCATION SEC START  */

.location-main {
    padding: 30px 35px;
    width: 100%;
    background-image: url(../images/SCG_Store.jpg);
    position: relative;
    z-index: 0;
    height: 800px;
    border-radius: 14px;
}

section.location-sec {
    margin-bottom: 100px;
}

.location-main:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(99deg, rgba(0, 0, 0, 0.53) 52%, rgba(255, 255, 255, 0.19) 89%);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 14px;
}

section.location-sec h1 {
    /* color: #000; */
    text-transform: capitalize;
    font-size: 35px;
    margin-bottom: 12px;
}

.location-main h1 {
    color: #fff;
}

.location-main h4 {
    color: #fff;
    margin-bottom: 5px;
}

.pin-locate-main h1 {
    color: #fff !important;
    line-height: 1;
    margin: 0 !important;
    font-weight: 700;
}

.location-main h6 {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

.pin-locate-main {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-cntct {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

.social-cntct h3 {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
}

.adrs ul li {
    color: #fff;
    font-size: 16px;
}

.cntact-main ul li a {
    color: #06b6d4;
}

.cntact-main ul li a:hover {
    text-decoration: underline;
}

.location-main h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.location-main p {
    font-size: 16px;
    color: #fff;
    line-height: 23px;
}

.main-expreso {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.locate-serv a {
    color: #06b6d4;
}

.locate-serv {
    margin-top: 15px;
}

.pin-locate-main i {
    color: #e63360;
    font-size: 28px;
}

.expreso-in {
    width: 310px;
    border: 1px solid #fff;
    padding: 20px;
    border-radius: 6px;
    background: #00000091;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.expreso-in h6 {
    font-size: 16px;
    margin-bottom: 10px;
}

.expreso-in p {
    font-size: 16px;
    margin-bottom: 20px;
}

.expreso-in a {
    border: 1px solid #fff;
    padding: 10px 75px;
    border-radius: 2px;
    color: #fff;
}

.expreso-in a:hover {
    opacity: 0.5;
}

.show-case-main:hover .showcase-img {
    filter: opacity(0.5);
}

/* LOCATION SEC END  */



.header-logo img {
    width: 80%;
}

a.the1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
}

/* Banbot Sec Starts */

/* section.banbot-sec {
    width: 80%;
    margin: 0 auto;
} */

.banbot-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.banbot-card-img {
    width: 100%;
}

.banbot-card .banbot-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.banbot-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.banbot-card-txt h4 {
    font-size: 30px;
    line-height: 35px;
}

.banbot_slider .slick-active {
    opacity: 1;
}

a.banbot-btn span.banbot-btn-txt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #000;
    transition: ease-in;
    transition-duration: 0.5s;
}

a.banbot-btn span.banbot-btn-txt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 1px solid #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

a.banbot-btn span.banbot-btn-txt:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banbot_slider button.slick-next.slick-arrow, .banbot_slider button.slick-prev.slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: #e6b935;
    border-radius: 100px;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
    opacity: 1;
}

.banbot_slider .slick-next {
    right: -80px;
}

.banbot_slider .slick-prev {
    left: -80px;
}

.banbot_slider .slick-next:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 20px;
    transition: ease-out;
    transition-duration: 0.5s;
    color: #000;
}

.banbot_slider .slick-prev:before {
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 20px;
    transition: ease-out;
    transition-duration: 0.5s;
}

/* Banbot Sec Ends */

/* About Us Sec Starts */

.about-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 640px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.inner-shop-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 750px;
    width: 100%;
    object-fit: cover;
    object-position: 0 0;
    border-radius: 20px;
    overflow: hidden;
}

.inner-shop-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.inner-shop-card-txt h4 {
    font-size: 70px;
    line-height: 75px;
    font-family: 'Proxima_Nova_Alt_Condensed_Bold';
    font-weight: 600;
    text-transform: uppercase;
}

.inner-shop-card-txt ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 0 0 0 20px;
    list-style-type: disc;
}

.inner-shop-card-txt h5 {
    font-size: 30px;
    line-height: 35px;
}

.inner-shop-card-txt ul li p span.color-ex {
    color: #ff0000;
}

.inner-shop-card-txt ul p span {
    font-style: italic;
    font-weight: 500;
}

/* About Us Sec Ends */

/* Gift Sec Starts */

section.gift-sec {
    position: relative;
    background-image: url('../images/gift-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 70px 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.gift-sec::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background-color: #00000052;
}

.gift-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    /* padding: 50px 20px 50px 50px; */
    /* background-color: #fff; */
    border-radius: 0 20px 20px 0;
    /* box-shadow: 0 0 20px 0 #00000030; */
    text-align: center;
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}

.gift-txt * {
    color: #fff;
}

.gift-txt h2 {
    font-size: 90px;
    line-height: 1;
}

.gift-txt p {
    font-size: 20px;
    line-height: 35px;
}

.gift-txt p a.theme3 span.theme3-txt {
    font-size: 20px;
    line-height: 35px;
}

.gift-txt a.gift-link {
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Proxima_Nova_Condensed_Regular';
    transition: ease-in;
    transition-duration: 0.5s;
}

.gift-txt a.gift-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.gift-txt a.gift-link:hover::before {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.gift-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.gift-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: ease-out;
    transition-duration: 0.5s;
}

section.gift-sec:hover .gift-img img  {
    scale: 1.2;
    transition: ease-out;
    transition-duration: 0.5s;
}

/* Gift Sec Ends */

/* Caboose Sec Starts */

.caboose-txt-heading h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    text-transform: uppercase;
}

.caboose-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
}

.caboose-txt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.caboose-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    background-position: 0 0;
}

section.caboose-ex-sec {
    position: relative;
    background-image: url(../images/bubble-back.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

section.caboose-ex-sec::Before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 600px;
    background-image: url('../images/ex-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

section.caboose-ex-sec .caboose-txt-main {
    padding: 70px 20px;
    background-color: #fff;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 0 20px 0px #0000001f;
}


/* Caboose Sec Ends */
section.caboose-sec:before {
    position: absolute;
    content: '';
    background-image: url(../images/bubble-back.png);
    width: 100%;
    height: 80%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}