@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #161616;
}

@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
}

img {
    max-width: 100%;
    position: relative;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.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;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #000;
    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;
}

p {
    font-weight: 400;
    line-height: 29px;
    margin: 0;
    font-size: 16px;
    font-family: 'Poppins', Sans-Serif;
    color: #000;
}

h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 91px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0;
    display: block;
}

h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 70px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    line-height: 1;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

h4 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
    background-position: right 0.7rem top 50%;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*---------------------------------------------------- Tabs Section Start ----------------------------------------------------------- */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/*---------------------------------------------------- Tabs Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Carousel Section Start ----------------------------------------------------------- */

.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 [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;
}

/*---------------------------------------------------- Carousel Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Button Section Start ----------------------------------------------------------- */

.theme_btn {
    padding: 16px 33px;
    border: unset;
    border-radius: 40px !important;
    color: #000;
    z-index: 1;
    position: relative;
    font-size: 17px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    background-image: -webkit-linear-gradient(49deg, rgb(234, 214, 147) 0%, rgb(222, 191, 102) 50%, rgb(234, 214, 147) 100%) !important;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

.theme_btn:hover::before {
    width: 100%;
}

/*---------------------------------------------------- Button Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Header Section Start ----------------------------------------------------------- */

.menuSec {
    padding: 38px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 10px 0px;
    font-size: 40px;
    z-index: 9999;
    text-transform: uppercase;
    font-weight: 900;
    margin: 30px 0;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #fff;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec 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;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.slick-slide {
    opacity: 1;
}

.main_slider {
    margin-bottom: 100px;
}


.menu-box>nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    margin: 0px auto;
}

.path1,
.path2 {
    stroke-dasharray: 104;
    stroke-dashoffset: -81;
    transition: 1s all ease;
    stroke: #debf66;
    stroke-width: 3px;
}

.cross {
    stroke-dashoffset: 68;
    stroke: #000;
}

.mline {
    stroke-dasharray: 41;
    stroke-dashoffset: -82;
    transition: 1s all ease;
    stroke: #debf66;
    stroke-width: 3px;
}

.hide {
    stroke-dasharray: 43;
    stroke-dashoffset: 130;
}

.menu-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #debf66f0;
    z-index: 9;
    text-align: center;
    padding-top: 100px;
}

.menu-box nav a {
    transition: 0.3s;
}

body.overflow-hidden {
    overflow: hidden;
}

.mline.hide {
    opacity: 0;
    transition: 0.2s ease;
}

svg {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.site-logo {
    text-align: center;
    position: relative;
    left: 63px;
}

.site-header-bbtns {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.menu-btn {
    padding: unset !important;
}

.site-header-bbtns a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: -webkit-linear-gradient(49deg, rgb(234, 214, 147) 0%, #debf66 50%, rgb(234, 214, 147) 100%) !important;
}

.container-fluid {
    padding: 0 6%;
}

/*---------------------------------------------------- Header Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

footer {
    background: #000000;
    padding-top: 75px;
}

footer * {
    color: #fff;
}

.quick-link ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .container-fluid.lst {
    border-top: 1px solid #fff;
    padding: 22px 6%;
    margin-top: 7%;
}

.quick-link ul li:before {
    content: '';
    position: absolute;
    top: 7px;
    right: -24px;
    background: #fff;
    width: 1px;
    height: 13px;
}

.quick-link ul li {
    position: relative;
}

.quick-link ul li:Last-child:before {
    background: unset;
}

.footer-info ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

footer h5 {
    font-family: 'Poppins', Sans-Serif;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-info i {
    font-size: 20px;
}

.foter-socail ul li a:hover {
    background: #fff;
}

.foter-socail ul li a:hover i {
    color: #000;
}

.footer-about img {
    margin-top: -45px;
    margin-bottom: 22px;
}

.foter-socail h5 {
    width: 220px;
    margin: 0 0 30px auto;
}

.footer-info {
    position: relative;
    left: 24%;
}

.foter-socail ul {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: end;
}

.foter-socail ul li a {
    border: 1px solid #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.7s all;
}

.foter-socail {
    position: relative;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */


.baner-main.inr {
    padding-top: 6%;
    padding-bottom: 16%;
}

.baner-main.inr:before {
    background-size: cover;
    bottom: -10px;
    width: 1000px;
    right: 0;
    left: 0;
}

.baner-main.inr:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    /* background: #161616; */
    width: 100%;
    height: 50%;
    z-index: -2;
    /* background: radial-gradient(circle, rgba(22, 22, 22, 0.93) 69%, rgba(0, 0, 0, 0) 100%); */
}


.baner-main {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    /* z-index: 9999; */
}

.baner-main .site-title-all {
    width: max-content;
}

.site-title-all {
    display: block;
    background-color: rgb(43 43 43 / 84%);
    width: max-content;
    margin: 0 auto 24px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', Sans-Serif;
    padding: 12px 25px;
    width: 306px;
    text-align: center;
}

.baner-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 35px;
    gap: 18px;
}

.baner-tabs a:hover {
    background-color: #fff;
    background-image: unset !important;
}

.baner-main:before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 60px;
    background-image: url(../images/baner-circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1200px;
    height: 100%;
    z-index: -1;
    margin: 0 auto;
}

.box-bnr-1 {
    background: #fff;
    width: max-content;
    padding: 20px 22px;
    border-radius: 20px;
    box-shadow: 0px 0px 11.85px 3.15px rgb(0 0 0 / 68%);
    position: absolute;
    top: 32%;
    left: 8%;
    text-align: justify;
}

.box-bnr-1 p {
    font-size: 16px;
}

.banner-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/baner-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: top;
}

.box-bnr-2 {
    position: absolute;
    background: #fff;
    top: 42%;
    right: 10%;
    padding: 20px 20px 8px;
    border-radius: 20px;
    text-align: justify;
    box-shadow: 0px 0px 11.85px 3.15px rgb(0 0 0 / 68%);
}

.box-bnr-3F {
    background: #fff;
    position: absolute;
    bottom: 20%;
    left: 21%;
    padding: 20px 30px 15px 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 11.85px 3.15px rgb(0 0 0 / 68%);
    z-index: 4;
}

.box-bnr-2 span, .box-bnr-3F span {
    font-family: 'Bebas Neue';
    font-size: 89px;
    line-height: 1;
    background-image: -webkit-linear-gradient(49deg, rgb(234, 214, 147) 0%, rgb(222, 191, 102) 50%, rgb(234, 214, 147) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.box-bnr-2 p {
    margin-bottom: 7px;
    font-size: 16px;
}

/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Testimonial Section Start ------------------------------------------------------------- */

.testi-sec {
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.testi-slider {
    background: #fff;
    padding: 48px 38px;
    border-radius: 20px;
    width: 91%;
    margin: 0 auto;
}

.testi-main img {
    width: 60px;
}

.testi-sec:before {
    content: '';
    position: absolute;
    bottom: -59%;
    left: 20%;
    background-image: url(../images/footer-hom-shade.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.testi-head h2 {
    text-align: center;
    margin-bottom: 55px;
    margin-top: 40px;
}

.testi-main p {
    font-size: 30px;
    margin: 25px 0 45px;
    line-height: 1.6;
    font-weight: 500;
}

.user-testi {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 22px;
    color: #000;
    font-family: 'Poppins';
    font-weight: 500;
}

.notice-tsti {
    width: 55px;
    height: 55px;
    background: #debf67;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.testi-main small {
    font-size: 17px;
    font-family: 'Poppins';
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.testi-main.inr {
    background: #fff;
    padding: 30px 38px;
    border-radius: 20px;
    margin-bottom: 35px;
}

.testi-main.inr small {
    font-size: 11px;
    margin-bottom: 8px;
}

.testi-main.inr p {
    font-size: 17px;
    margin: 25px 0 26px;
}

.testi-main.inr .user-testi {
    font-size: 13px;
}

.testi-main.inr img {
    width: 40px;
}

button.slick-arrow {
    right: 57px;
    left: unset;
    top: 83%;
    opacity: 1;
    z-index: 2;
}

button.slick-prev {
    right: 8%;
}

button.slick-arrow:before {
    background: #000;
    border-radius: 50%;
    opacity: 1 !important;
    content: '\f053';
    font-family: 'FontAwesome';
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.5s all;
}

button.slick-next:before {
    content: '\f054';
}

button.slick-arrow:hover:before {
    background: gray;
    opacity: 0.8 !important;
}

/*---------------------------------------------------- Testimonial Section End ------------------------------------------------------------- */

/*---------------------------------------------------- League Section Start ------------------------------------------------------------- */

.league-head {
    text-align: center;
    margin-bottom: 40px;
}

.league-head p {
    width: 55%;
    color: #fff;
    margin: 0 auto;
}

.league-head h2 {
    width: 50%;
    line-height: 1.3;
    margin: 0 auto 10px;
}

.league-main {
    background: #fff;
    padding: 15px 15px 15px 40px;
    border-radius: 20px;
    width: 91%;
    margin: 0 auto 60px;
}

.league-sec.iner {
    padding-bottom: 100px;
}

.league-pgintion ul {
    gap: 10px;
    justify-content: center;
}

.league-pgintion ul li a {
    border-radius: 50px !important;
    background: transparent;
    border: unset;
    padding: 20px 20px !important;
    color: #fff;
    opacity: 50%;
}

.league-pgintion ul li.page-item.disabled a, .league-pgintion ul li a:hover {
    padding: 20px 30px !important;
    background-image: -webkit-linear-gradient(49deg, rgb(234, 214, 147) 0%, rgb(222, 191, 102) 50%, rgb(234, 214, 147) 100%);
    opacity: 1;
    color: #000;
}

.league-sec {
    padding: 0 0 60px;
    position: relative;
}

.league-main-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.league-main-img a {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
    width: max-content !important;
}

.league-main-img {
    position: relative;
}

.league-text-main ul li {
    font-family: 'Poppins';
    font-size: 16px;
    color: #000;
    font-weight: 400;
    margin-bottom: 15px;
}

.league-text-main ul li span {
    font-weight: 600;
}

.league-text-main ul {
    column-count: 2;
    margin: 20px 0 17px;
}

.league-text-main ol {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.league-text-main ol li {
    display: block;
    padding: 7px 25px;
    border-radius: 30px;
    background-image: -webkit-linear-gradient(49deg, rgb(234, 214, 147) 0%, rgb(222, 191, 102) 50%, rgb(234, 214, 147) 100%) !important;
    font-size: 13px;
    color: #000;
    font-weight: 500;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.league-text-main h3 {
    margin-bottom: 15px;
}

/*---------------------------------------------------- League Section End ------------------------------------------------------------- */

/*---------------------------------------------------- About Section Start ------------------------------------------------------------- */

.league-hme-one {
    padding: 0 0 100px 0;
    position: relative;
}

.design-review-main h2 span {
    color: #dfc16a;
}

.design-review-main h2 {
    text-align: center;
    line-height: 1.3;
    width: 66%;
    margin: 0 auto;
}

.league-hme-img img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0px 0px 35.4px 23.6px rgba(0, 0, 0, 0.33);
}

.league-hme-txt p {
    line-height: 2.6;
    margin-bottom: 30px;
    color: #fff;
    width: 90%;
}

.about-inr-prg p {
    line-height: 2.6;
    margin-bottom: 30px;
    color: #fff;
    width: 95%;
    word-spacing: 3px;
}

.about-inr-prg {
    margin-top: 30px;
}

.league-hme-txt .site-title-all {
    margin: 0 0 24px;
}

.league-hme-img {
    width: 81%;
    margin: 0 auto;
}

.league-hme-txt h2 {
    line-height: 1.06;
    margin-bottom: 17px;
}

/*---------------------------------------------------- About Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Design league Section Start ------------------------------------------------------------- */

.review-main img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.design-review-sec {
    padding: 130px 0 250px;
    background: #000;
    box-shadow: 0px 0px 35.4px 23.6px rgba(0, 0, 0, 0.33);
    position: relative;
    margin-bottom: 100px;
}

.review-main {
    position: absolute;
}

.review-main.degn-1 {
    top: 11%;
    left: 11%;
}

.review-main.degn-2 {
    top: 6%;
    right: 14%;
}

.review-main.degn-3 {
    top: 35%;
    right: 0%;
}

.review-main.degn-4 {
    bottom: 10%;
    left: 22%;
}

.review-main.degn-5 {
    bottom: 10%;
    right: 17%;
}

.review-text-ome {
    background: #fff;
    padding: 13px 35px 13px 30px;
    border-radius: 10px;
    position: relative;
    transition: 0.5s all;
    bottom: 30px;
    z-index: 5;
    left: 60px;
    width: 220px;
    text-align: center;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    color: #000;
    opacity: 0;
}

.review-main:hover .review-text-ome, .review-main.active .review-text-ome {
    opacity: 1;
}

.review-text-ome:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: -15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 5px 3px 0 0 #fff;
}

.review-text-ome.ct {
    left: unset;
    right: 191px;
    bottom: 42px;
}

.review-text-ome.ct:before {
    left: unset;
    right: -18px;
    transform: rotate(100deg);
    bottom: 1px;
}

.review-text-ome.wt {
    left: unset;
    bottom: 10px;
    right: 80%;
}

.review-text-ome.wt:before {
    left: unset;
    right: 0;
    top: -13px;
}

.review-text-ome.bl {
    bottom: 40px;
}

/*---------------------------------------------------- Design league Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Work Section Start ------------------------------------------------------------- */

.head-work-it {
    text-align: center;
    margin-bottom: 30px;
}

.work-main {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    text-align: center;
    height: 100%;
}

.work-num {
    font-size: 24px;
    font-family: 'Bebas Neue';
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    background-image: -webkit-linear-gradient(49deg, rgb(234, 214, 147) 0%, rgb(222, 191, 102) 50%, rgb(234, 214, 147) 100%);
}

.work-main h3 {
    font-size: 30px;
    margin-bottom: 15px;
    background-image: -webkit-linear-gradient(49deg, rgb(234, 214, 147) 0%, rgb(222, 191, 102) 50%, rgb(234, 214, 147) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.work-main p {
    width: 89%;
    margin: 0 auto;
}

.howit-work-sec {
    padding-bottom: 100px;
    position: relative;
}

/*---------------------------------------------------- Work Section End ------------------------------------------------------------- */

/*---------------------------------------------------- League Detail Section Start ------------------------------------------------------------- */

.shre-legu-detl ul {
    column-count: unset;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: unset;
}

.shre-legu-detl ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgb(255, 241, 201);
    border-radius: 50%;
    margin: unset;
}

.shre-legu-detl ul li a {
    font-size: 20px;
}

.shre-legu-detl {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
}

.shre-legu-detl h4 {
    font-size: 46px;
    color: #000;
}

.league-main.detl {
    padding: 14px 14px 20px 40px;
}

.league-main.detl .league-text-main {
    margin-top: 21px;
}

.league-main.detl .league-text-main ol {
    flex-wrap: wrap;
    margin: 26px 0 17px;
}

.league-main.detl .league-text-main ol li {
    margin-bottom: 5px;
    background-color: #fff1c9;
    font-size: 16px;
    background-image: unset !important;
}

.league-main.detl .league-text-main p {
    width: 95%;
}

.league-main.detl .league-text-main ol li span {
    font-weight: 600;
}

.league-detail-sec.iner {
    position: relative;
    top: -60px;
}

/*---------------------------------------------------- League Detail Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Cart Section Start ------------------------------------------------------------- */

Section.cart .row.cart {
    background: #fff;
    padding: 40px 40px;
    border-radius: 20px;
    width: 91%;
    margin: 0 auto;
}

Section.cart td.col-md-2 {
    text-align: center;
    align-content: center;
    height: 100%;
}

Section.cart td.col-md-3 {
    text-align: center;
}

Section.cart .cart-text .poduct-name {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

Section.cart th {
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    color: #000;
    padding-bottom: 25px;
    border-bottom: 1px solid #b5b2b1 !important;
}

Section.cart thead {
    margin-bottom: 30px;
}

Section.cart td.col-md-8 {
    padding: 30px 30px;
}

Section.cart {
    margin-bottom: 100px;
}

Section.cart .product-img img {
    width: 170px;
    object-fit: cover;
    height: 170px;
    border-radius: 20px;
}

Section.cart .pro-cart-det {
    display: flex;
    align-items: center;
    gap: 20px;
}

Section.cart th {
    text-align: center;
}

Section.cart th:First-Child {
    text-align: justify;
}

Section.cart tr.space h6 {
    font-family: 'Poppins';
    font-size: 25px;
    color: #000;
}

Section.cart td.col-md-2 i {
    font-size: 30px;
    color: #000;
}

Section.cart tr.space:Last-child {
    border: none !important;
}

Section.cart tr.space:Last-child td {
    border: none;
    padding-bottom: 0;
}

/*---------------------------------------------------- Cart Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Checkout Section Start ------------------------------------------------------------- */


.billing_form h3 {
    color: #131211;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.billing_form label {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    font-family: 'Poppins', Sans-Serif;
}

.radiosss p {
    color: #000;
    font-size: 12px;
    font-weight: 400;
}

.billing_form input, .billing_form select {
    width: 100%;
    height: 50px;
    border: 1px solid #000;
    margin-bottom: 20px;
    padding-left: 15px;
    background: transparent;
    font-size: 14px;
    border-radius: 40px;
}

.billing_form input::placeholder {
    color: #7c7c7c;
}

section.checkout_page .row.main {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 100px;
}

.cart_sidebar {
    border: 1px solid #000;
    border-radius: 30px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.cart_sidebar h3 {
    font-size: 15px;
    font-family: 'Poppins';
    margin-bottom: 30px;
}

ul.cart_lst li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #00000073;
    padding-bottom: 8px;
    margin-bottom: 30px;
    font-size: 17px;
    color: #000;
}

.cart_sidebar a.theme_btn {
    width: 100% !important;
    text-align: center;
}

/*---------------------------------------------------- Checkout Section End ------------------------------------------------------------- */


.banner-sec {
}

img.shadeban1 {
    position: absolute;
    bottom: -16%;
    left: 0;
    z-index: -1;
}

img.wrkshade {
    position: absolute;
    top: -80%;
    right: 0;
    z-index: -1;
    object-fit: cover;
    object-position: right;
    opacity: 80%;
}

img.sunwrk-back {
    position: absolute;
    top: 10%;
    right: 0;
    z-index: -1;
}

img.sunreview {
    position: absolute;
    top: 20%;
    left: 0;
    height: 1000px;
    z-index: 2;
}

img.review-shadehome {
    position: absolute;
    left: 0px;
    height: 1600px;
    top: -90%;
    z-index: 0;
}

img.league-sunr {
    position: absolute;
    bottom: -40%;
    right: 0;
    z-index: -1;
}

img.home-banlyr {
    position: absolute;
    top: -40%;
    right: 0;
    z-index: -1;
    height: 283vh;
}

img.hedr-back {
    position: absolute;
    top: 0;
    right: 0px;
    z-index: -2;
    height: 500px;
}

header {
    position: relative;
    z-index: 3;
}

.league-hme-txt {
    position: relative;
    z-index: 2;
}

