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

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

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  font-weight: 400;
  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 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
  font-family: 'Poppins';
}


/***** 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: 'barlow-black';
  src: url(../fonts/barlow-black.ttf);
  font-weight: 400;
  font-style: normal
}
/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  padding: 12px 35px;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: uppercase;
  background: #fff;
  font-family: 'Poppins';
  color: #000;
  border: unset;
}

.theme-btn:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.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: 'barlow-black';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'barlow-black';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'barlow-black';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'barlow-black';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'barlow-black';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'barlow-black';
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

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

.menuSec {
  padding: 10px 0;
  background: #f16427;
  margin-bottom: 40px;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  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: #fff;
    padding: 10px 18px;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 300;
}

/*.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}
*/
.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.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:hover a {}

.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;
}
/*header css start */

.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;
}
/*banner css 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 {}
.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 css end*/

.blog_sec {
  padding: 5% 0;
}
/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}


/*Top bar Start*/

.top-search-field input {
    border: 1px solid #00000045;
    width: 100%;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 12px;
}

.top-search-field button {
    border: 1px solid #f16427;
    padding: 6px 10px;
    border-radius: 50%;
    background: #f16427;
    color: #fff;
    position: absolute;
    right: 5px;
    top: 4px;
}

.top-search-field {
    position: relative;
    margin-left: 60px;
}

.top-right-con-info li a {
    font-family: 'Poppins';
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.top-right-con-info li span {
    font-size: 12px;
    font-family: 'Poppins';
    display: block;
}

.top-right-con-info li i {
    border: 1px solid #f16427;
    padding: 10px 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #f16427;
}

.top-right-con-info ul {
    display: flex;
    gap: 10px;
    margin-bottom: 0px;
}

.top-right-con-info ul li {
    line-height: 23px;
}
a.right-pg-user {
    border: 1px solid #00000030;
    padding: 10px 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: transparent;
    position: relative;
    color: #f16427;
}

a.right-pg-user span {
    
1px:
    s;
    position: absolute;
    right: -17px;
    top: -6px;
    border: 1px solid #fff;
    background: #fff;
    font-size: 10px;
    padding: 1px 9px;
    border-radius: 50px;
}

.top-right-con-info {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 18px;
}

a.right-pg-user:hover {
    background: #f16427;
    color: #fff;
    border-color: #f16427;
}

a.right-pg-user:hover span {
    color: #f16427;
}

.topSec {
    padding: 21px 0px;
}
.head-categories {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

/* Button */
.cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 8px 9px;
    border-radius: 36px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: 'barlow-black';
    font-weight: unset;
    width: fit-content;
}

/* Icon */
.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border: 1px solid #e95f31;
    padding: 10px 8px;
    border-radius: 50%;
    background: #e95f31;
}
.menu-icon span {
    width: 16px;
    height: 2px;
    background: #fff;
}

/* Dropdown */
.cat-dropdown {
    position: absolute !important;
    top: 110%;
    left: 0;
    width: 220px;
    background: #e95f31;
    border-radius: 6px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    display: none;
    z-index: 999;
    text-align: left !important;
}

.cat-dropdown li {
    padding: 10px 15px !important;
    font-size: 14px;
    color: #fff !important; 
    cursor: pointer;
}

.cat-dropdown li:hover {
    background: #000;
}

.head-categories.active .cat-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
span.cat-text {
    padding-right: 10px;
}
.head-categories.active .cat-dropdown {
    display: block; 
}
/*Top Bar End*/

/*Banner Start*/

.banner_text h1 {
    text-transform: uppercase;
    font-size: 90px;
    line-height: 77px;
}

img.banner-img {
    width: 100%;
}

.banner_text p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

.banner_img {
    margin-bottom: -130px;
}

.banner-back-txt h2 {
    color: #fff;
    font-size: 260px;
    line-height: 60px;
    margin-bottom: 146px;
}

.banner-back-txt {
    position: absolute;
    right: -140px;
    top: 41px;
    line-height: 60px;
}

section.main_slider {
}

.banner_img img {
    position: relative;
    z-index: 2;
}

.banner_img {
    text-align: end;
}


/*Banner End*/


/*Section Category Start*/
.category-heading h2 {
    font-size: 60px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
}

.category-heading p {
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 400;
    font-family: 'Poppins';
}

.category-heading {
    text-align: center;
    margin-bottom: 40px;
}

.categoryimg {
    background: #eaeaea;
    text-align: center;
    padding: 50px 0px;
    border-radius: 10px;
}

.categoryimg img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin: 0 auto;
}

.categoryimg a.theme-btn {
    background: #f16427;
    color: #fff;
    margin: unset;
}

.text-category h2 {
    text-transform: uppercase;
    font-size: 30px;
    color: #000;
    text-align: center;
}
.category-btn {display: none;}


.category-main-box:hover .category-btn {
    display: block;
    transition: 0.9s;
}


.category-main-box:hover .categoryimg img {
    margin-top: -20px !important;
    transition: 0.9s;
}
.category-main-sec {
    padding: 90px 0px;
}
.categoryslid .slick-next:hover:before {
    background: #f16427;
    color: #fff !important;
}

.categoryslid .slick-active {
    opacity: 1;
}

.categoryslid .slick-slide {
    margin: 0px 11px;
}

.categoryslid .slick-next {
    top: 40%;
}
.categoryslid .slick-next:before {
    content: '\f061' !important;
    font-family: 'FontAwesome';
    border: 1px solid #f16427;
    padding: 10px 10px;
    border-radius: 50%;
    color: #f16427 !important;
}
.categoryslid .slick-prev:before {
    content: '\f060' !important;
    font-family: 'FontAwesome';
    border: 1px solid #f16427;
    padding: 10px 10px;
    border-radius: 50%;
    color: #f16427 !important;
}
.categoryslid .slick-prev {
    top: 40%;
    left: -45px;
}
.categoryslid .slick-prev.slick-disabled:before, .categoryslid .slick-next.slick-disabled:before {
    opacity: 1;
}
.category-main-box:hover .categoryimg {
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.16);
}

/*Section Category End*/



/*Section Watch STart*/

.play-btn {
    position: relative;
    width: 113px;
    height: 112px;
    background: #f15a24;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.text-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon i {
    color: #fff;
    font-size: 22px;
    border: 1px solid #fff;
    padding: 18px 31px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    font-size: 27px;
}
.watch-main-video {
    position: relative;
}

.watch-main-sec {
    padding: 70px 0px 90px;
    position: relative;
}
.watch-main-sec::before {
    position: absolute;
    content: '';
    background-image: url(../images/watch-back.jpg);
    width: 100%;
    height: 440px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    top: 0;
}

.watch-main-sec .category-heading h2 {
    color: #fff;
}

.watch-main-sec .category-heading p {
    color: #fff;
}
.play-btn text {
    font-size: 19px;
    font-weight: 400;
}
.play-btn:hover {
    background: #000;
}
/*Section Watch End*/


/*Section Deal Start*/

.deals-main-sec .category-heading {
    text-align: left;
}

.deal-select select {
    padding: 10px 83px 10px 11px;
    appearance: auto;
    border-radius: 30px;
}

.deal-select {
    text-align: end;
    margin-top: 60px;
}

.deal-img img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.deal-img {
    background: #f2f2f2;
    border-radius: 6px 6px 0px 0px;
    padding: 30px 0px;
}


.deal-text h3 {
    font-size: 15px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.deal-text p {
    font-size: 13px;
    font-family: 'Poppins';
}

.deal-btn-price a.theme-btn {
    background: #f16427;
    color: #fff;
    margin: unset;
}

.deal-btn-price span.price-txt {
    font-size: 25px;
    font-family: 'barlow-black';
    color: #000;
}

.deal-btn-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deal-text {
    padding: 0px 13px 17px;
}
ul.deal-tag-reviews li {
    color: #000;
    font-family: 'barlow-black';
    font-size: 13px;
}

ul.deal-tag-reviews li i {
    color: #fd8f00;
    margin-right: 5px;
}

ul.deal-tag-reviews li span {
    font-family: 'Poppins';
    font-size: 14px;
    color: #5d5c5c;
}

ul.deal-tag-reviews {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #00000033;
    padding-bottom: 10px;
    padding: 10px 11px;
    margin-bottom: 13px;
}

.deal-main-box {
    border: 1px solid #00000033;
    border-radius: 7px;
    margin-bottom: 30px;
}

.deal-text h3 a {
    color: #000;
}
.deals-main-sec {
    padding: 60px 0px 90px;
}
/*Section Deal End*/

/*Section Why Start*/

.why-card {
  perspective: 1000px;
  margin-bottom: 30px;
}

.why-card-inner {
  position: relative;
  width: 100%;
  height: 280px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.why-card:hover .why-card-inner {
  transform: rotateY(180deg);
}

.why-card-front,
.why-card-back {
  position: absolute;   
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  overflow: hidden;
}

.why-card-front {
  background: #fff;
  text-align: center;
  padding: 40px 25px;
  border: 1px solid #c9c8c8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-img {
  width: 70px;
  height: 70px;
  background: #f15a24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  flex-shrink: 0; 
}

.icon-img img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.why-card-back {
  transform: rotateY(180deg);
}

.why-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-card-front h4 {
    font-size: 23px;
    color: #000;
    text-transform: uppercase;
}

.why-card-front p {
    font-size: 14px;
    font-weight: 400;
    color: #7c7c7c;
    font-family: 'Poppins';
}
.why-main-sec {
    padding-bottom: 90px;
}


/*Section Why End*/



/*Section Customer Start*/

.real-slid .slick-active {
    opacity: 1;
}

.real-img-sm img {width: 60px;border-radius: 5px;height: 60px;object-fit: cover;}



.real-img-sm {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #00000052;
    padding-top: 20px;
}

.real-img-sm h5 {font-size: 18px;color: #000;margin: 0;line-height: 22px;font-family: 'barlow-black';text-transform: uppercase;}

.real-img-sm h5 span {
    display: block;
    font-family: 'Poppins';
    font-size: 12px;
    text-transform: capitalize;
}

.real-talk-txt {
    text-align: center;
}
.real-talk-txt h3 {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 10px;
    font-weight: 300;
    margin-bottom: 50px;
}

.real-talk-txt p {
    font-size: 14px;
    color: #141414;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.real-main-bx p {font-size: 14px;color: #363636;margin-top: 15px;font-family: 'Poppins';font-weight: 400;width: 85%;}

.star {
    display: flex;
    gap: 20px;
}

.main-bx-work:hover {
    background-color: #b3242b;
    transition: 2s;
}

.main-bx-work:hover p {
    color: #fff;
}

.main-bx-work:hover h5 {
    color: #fff;
}

.main-bx-work:hover h4 {
    background-color: #fff;
    color: #000;
}
.star ul {
    display: flex;
    align-items: center;
    margin: 0;
}
.star ul li a i {
    color: #f39f1e;
}
.star h5 {font-size: 13px;color: #363636;margin: 0;font-family: 'Poppins';font-weight: 400;}

section.real-talk {
    padding-bottom: 100px;
}

section.real-talk .container-fluid {padding-left: 100px;}
section.real-talk .real-slid {
    width: 103vw;
}
.real-main-bx {padding: 15px 24px;background-color: rgb(255, 255, 255);border-radius: 6px;box-shadow: 19.799px 19.799px 51px 0px rgba(0, 0, 0, 0.05);}
.real-slid .slick-track {
    padding-left: 60px;
}

.real-slid .slick-current .real-main-bx {
    background: #f16427;
}

.real-slid .slick-current .real-main-bx h5 {
    color: #fff;
}

.real-slid .slick-current .real-main-bx p {
    color: #fff;
}

.real-slid .slick-current .real-main-bx .real-img-sm img {
    /* border: 5px solid #fff; */
}
section.real-talk .category-heading {
    text-align: left;
    margin-left: 5%;
    margin-bottom: 10px;
}

p.hide-text {
    display: none;
}

.real-slid .slick-current .star ul li a i {
    color: #fff;
}

.real-slid .slick-current  p.hide-text {
    display: block;
}

.real-slid .slick-slide {
    margin: 20px 26px;
}

.real-slid .slick-current .real-img-sm {
    border-top: 1px solid #fff;
}
.real-slid .slick-next {
    top: -70px;
    right: 22%;
    z-index: 99999;
    border: unset;
}
.real-slid .slick-next:before {
    content: '\f061' !important;
    font-family: 'FontAwesome';
    border: 1px solid #f16427;
    padding: 10px 10px;
    border-radius: 50%;
    color: #f16427 !important;
    z-index: 9999;
    position: absolute;
}
.real-slid .slick-prev:before {
    content: '\f060' !important;
    font-family: 'FontAwesome';
    border: 1px solid #f16427;
    padding: 10px 10px;
    border-radius: 50%;
    color: #f16427 !important;
}
.real-slid .slick-prev {
    top: 40%;
    left: unset;
    top: -47px;
    right: 25%;
    z-index: 99999;
    border: unset;
}
.real-slid .slick-next:hover:before {
    background: #f16427;
    color: #fff !important;
}
.real-slid .slick-prev.slick-disabled:before, .real-slid .slick-next.slick-disabled:before {
    opacity: 1;
}
.real-slid .slick-prev:hover:before {
    background: #f16427;
    color: #fff !important;
}
/*Section Customer End*/


/*Section Aboyut Us Start*/
.about-txt h2 {
    text-transform: uppercase;
    color: #000;
    font-size: 60px;
    margin-bottom: 17px;
}

.about-txt p {
    font-size: 14px;
    font-family: 'Poppins';
    color: #000000ad;
}
.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-main-sec .row {
    justify-content: center;
    align-items: center;
}

.about-txt {
    margin-left: 10px;
}

.about-main-sec {
    padding: 30px 0px 100px;
}

.about-btn a.theme-btn {
    background: #f76129;
    color: #fff;
}

.about-btn {
    margin-top: 20px;
}
.about-txt ul li {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    list-style-type: disc;
    margin-bottom: 10px;
    margin-left: 20px;
}

.about-txt ul {
    margin-bottom: 30px;
}
/*Section About Us End*/


/*Section Compare Start*/
.comparison-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  margin-top: unset;
  padding-top: unset;
}

.table-title {
  text-align: center;
  color: #f16427;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.comparison-table thead {
  background: #f16427;
  color: #fff;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: center;
}

.comparison-table th {
  font-size: 15px;
  letter-spacing: 0.5px;
  font-family: 'barlow-black';
  text-transform: uppercase;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #fff7f3;
}

.comparison-table tbody tr:hover {
  background-color: #ffe3d8;
  transition: 0.3s;
}

.comparison-table td:first-child {
  font-weight: bold;
  color: #f16427;
  font-family: 'Poppins';
}
.compare-main-sec {
    padding-bottom: 90px;
}
/*Section Compare End*/


/*Section Faqs start*/
section.faqs {
    padding: 0px 0px 100px;
    position: relative;
    background-size: cover;
    width: 100%;
    background-image: url(../images/cont-bg.png);
    background-repeat: no-repeat;
}
button.accordion-button.collapsed {
    background-color: #f16427;
    font-size: 20px;
    /* font-family: 'Saira'; */
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Poppins';
    padding: 0px 20px;
}


.faq-txt h3 {
    text-align: center;
    font-size: 50px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;
}
.faq-txt p {
    text-align: center;
    margin: 0 auto;
    width: 58%;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 40px;
    color: #fff;
}
.faq-inn-mn .accordion-body{
  padding: 10px 20px;
}
.accordion-body p {
    font-size: 16px;
    line-height: 29px;
    color: #000;
}
.accordion-button:not(.collapsed) {
    background-color: #f6f5f1;
    color: #000;
    font-size: 20px;
    line-height: 40px;
    font-family: 'Poppins';
    font-weight: 500;
}
.accordion-item {
    border-bottom: unset;
}
.accordion-button:focus {
    z-index: 3;
     border-color: unset; 
    outline: 0;
     box-shadow: unset; 
}
.accordion-button::after {
    filter: invert(1);
}

section.testimonial {
    padding: 70px 0px;
}
.testimonial-box.box2 {
    position: relative;
}
.quote.quote2 {
    position: absolute;
    top: 24px;
    right: 54px;
}
.testi-body.body2 p {
    font-size: 18px;
    line-height: 29px;
    color: #7c7c7c;
    font-family: 'Poppins';
}
.author-img.img2 {
    position: relative;
    top: 18px;
}
.testi-body.body2 {
    margin-top: 30px;
}

.testi-body.body2 p {
    font-size: 16px;
    line-height: 28px;
}
.car-reviews-txt p {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.accordion-item p {
    font-size: 14px;
    font-family: 'Poppins';
    padding: 10px 20px;
    margin-bottom: unset;
}
/*Section Faqs end*/


/*Section Instagram Start*/


.insta-img img {
    width: 100%;
    border-radius: 10px;
    height: 330px;
    object-fit: cover;
}

.insta-main-box {
    position: relative;
}

img.insta-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    bottom: 0;
    margin: 0 auto;
    opacity: 0;
    filter: brightness(0) saturate(100%) invert(61%) sepia(69%) saturate(4780%) hue-rotate(345deg) brightness(96%) contrast(96%);
}

.insta-img {
    overflow: hidden;
    border-radius: 10px;
}

.insta-main-box:hover .insta-img img {
    transform: scale(1.1);
    filter: brightness(0.5);
    transition: 0.9s;
}

.insta-main-box:hover  img.insta-img {
    opacity: 1;
}
.instagram-mnain-sec {
    padding: 0px 0px 100px;
}

.instagram-mnain-sec .heading-collection h2::before {
    display: none;
}

/*Section Instagram End*/

/* footer-start */
.footerSec {
    padding: 5% 0 0;
    background: #1d1d1d;
}

.footer-logo h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 49.02px;
    line-height: 40.85px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px;
    border: 1px solid #ffffff;
    border-radius: 9px;
    text-align: center;
}

.footer-logo p {
    margin: 8% 0;
    color: #ffffffb0;
    font-family: 'Poppins';
    font-weight: 400;
    font=si: 1;
    font-size: 14px;
    width: 90%;
}

.footer-logo ul li a {
    color: #ffffff;
    background-color: #067c8a;
}

.footerSec h5 {
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8%;
    /* border-bottom: 1px solid #ffffffb0; */
    padding-bottom: 5px;
    width: fit-content;
    font-family: 'barlow-black';
}

.foot-links ul li a {
    font-size: 14px;
    line-height: 36px;
    color: #ffffffb0;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 26px;
}

.foot-links ul li a:hover {
    color: #e95f31;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    padding: 0 0 13px;
}

.footer-contact ul li a {
    color: #ffffff;
}

.footer-contact ul li a:hover {
    color: #067c8a;
}

.footer-contact ul li i {
    color: #ffffff;
    padding-right: 9px;
}

.footer-contact ul li p {
    color: #ffffff;
    margin: 0;
}

.news-letter p {
    color: #ffffffb0;
    line-height: 50px;
    margin-bottom: 0;
    font-size: 12px;
    font-family: 'Montserrat';
    line-height: 26px;
}

.news-letter input {
    height: 60px;
    width: 95%;
    border: 0;
    border-radius: 31px;
    padding-left: 20px;
    background: transparent;
    border: solid white 0.5px;
    color: white;
}

.news-letter ::placeholder {
    color: #fff;
}

.news-letter button.btn-theme {
    border: 0;
    border-radius: 12px;
    margin-top: 20px;
}

.footer-btm {
    padding: 17px 0 17px;
    margin-top: 3%;
    border-top: 1px solid #ffffff61;
}

.copy-txt p {
    line-height: 25px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 0px;
}

.news-btn a.btn1 {
    margin-top: 10px;
    border-radius: 67px;
    background: #58c749;
    height: 50px;
    width: 96%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

ul.footer_social {
    display: flex;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

ul.footer_social li {
    margin-right: 10px;
}

ul.footer_social li a {
    line-height: 49px;
    color: #fff;
    font-size: 16px;
    font-family: 'Roboto';
}

ul.footer_social li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.col-f1 {
    background-color: #3b5998;
}

.col-f2 {
    background-color: #0e76a8;
}

.col-f3 {
    background-color: #2296f9;
}

.col-f4 {
    background-color: #cd1f29;
}

.footer-socials h6 {
    font-size: 20px;
    font-family: 'cubano';
    text-transform: uppercase;
    color: #fff;
    margin: 21px 0;
}

.footer-socials {
    margin: 50px 0 0;
}

.footer-socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.footer-socials ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    background-color: #3853e8;
    border-radius: 100px;
    color: #ffffff;
    transition: ease-out 0.2s;
}

.visa_icon {
    text-align: end;
}

ul.ftr-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat';
    font-size: 14px;
}

.foot-links {
    margin-left: 25px;
    margin-left: unset;
    position: relative;
    height: 100%;
    padding-top: 11px;
}

.foot-links.tw {
    padding-left: 54px;
    border-left: 1px solid #ffffff70;
}

.footer-logo img {
    /* border-bottom: 1px solid #ffffffb0; */
    padding-bottom: 0px;
}
ul.ftr-list li {
    margin-bottom: 30px;
}
.ft-up-btn a {
    background: #3853e8;
    padding: 20px 40px;
    float: inline-end;
    margin-top: -21px;
    margin-right: -11px;
}

.copy-txt {
    /* padding-left: 50px; */
}
.payment-cards {
    text-align: end;
}
.foot-links ul li {
    margin-bottom: 14px;
}
.foot-links.tw.contact-ft-info {
    margin-left: 25px;
}
.foot-links.ft-social {
    border-left: 1px solid #ffffff70;
    padding-left: 60px;
    margin-left: 0px;
}
/* footer-end */


/*on Load Modal  Start*/

 .custom-modal {
      border-radius: 10px;
      text-align: center;
      padding: 20px;
    }

    .modal-title {
      font-weight: 700;
      font-size: 40px;
      color: #000;
    }

    .modal-text {
      color: #777;
      font-size: 14px;
      margin: 15px 0;
      font-family: 'Poppins';
      font-weight: 400;
    }

    .btn-orange {
      background-color: #f05a28;
      color: #fff;
      border-radius: 30px;
      padding: 10px 25px;
      border: none;
      font-family: 'Poppins';
    }

    .btn-orange:hover {
      background-color: #d94e20;
    }

    .no-thanks {
      margin-left: 15px;
      color: #000;
      text-decoration: none;
      font-size: 14px;
    }
    .modal-dialog {
    max-width: 630px;
    position: relative;
}
a.no-thanks {
    font-family: 'Poppins';
    border-bottom: 2px solid #000;
    font-size: 15px;
}


/*OnLoad Modal End*/


