@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Barlow: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&family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
  overflow-y: scroll;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

a {
  text-decoration: none;
  color: #000;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jersey";
  src: url(../fonts/Jersey.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 100px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1 {
  font-size: 74px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
  width: fit-content;
  border-bottom: 2px solid #8f969a;
  margin-bottom: 15px;
}


h2 {
  font-size: 60px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
}

h3 {

  font-size: 51px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
}

h4 {

  font-size: 34px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h5 {
  font-size: 31px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h6 {
  font-size: 23px;
  font-family: "Montserrat", serif;
  color: #000;
  font-weight: 500;
}

p {
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  color: #727879;
  font-family: "Montserrat", serif;
}

/* Menu */


.nav ul {
  list-style: none;
  text-align: center;
  justify-content: space-around;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #0a0909;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  display: block;
}


section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: -28px;
  left: 50%;
  right: 0;
  width: 0%;
  content: ".";
  color: transparent;
  background: #2e5f78;
  height: 2px;
  transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
  width: 100%;
}

.nav.stroke ul li a.active:after {
  width: 100%;
}

.nav.stroke ul li a.active::before {
  height: 100%;
}



/* Buttons Css Start*/


.theme-btn-1 {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.theme-btn-1 span img {
  width: 18px;
  transition: transform 0.4s ease;
}

/* Hover effect */

/* Arrow move animation */
.theme-btn-1:hover span img {
  transform: translateX(6px) rotate(-5deg);
}

/* Shine effect */
.theme-btn-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.theme-btn-1:hover::before {
  left: 120%;
}


/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #f48a12;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page Start*/

/* Header Start */


.hdr_logo a img {
  object-fit: scale-down;
  display: block;
  width: fit-content;
}

section.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  border-bottom: 2px solid #46494b;
  padding: 20px 0;
}

.container-fluid.add-padding {
  padding: 0 3%;
}


.hdr-serach-bar input {
  width: 100%;
  height: 60px;
  border-radius: 50px;
  padding: 0 20px;
  background: #f4fafd;
  border: none;
  font-family: "Montserrat", serif;
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
}

.theme-btn-1 {
  background: #2e5f78;
  display: flex;
  align-items: center;
  height: 64px;
  border-radius: 50px;
  padding: 7px 9px 7px 30px;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff !important;
  width: fit-content;
  transition: 0.5s;
}


.about-us-text p {
  margin-bottom: 25px;
}

.about-us-text a {
  background: #529cd4;
}

.theme-btn-1 span {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  border-radius: 50%;
}

.theme-btn-1 span img {
  width: 16px;
  height: 10px;
  object-fit: contain;
}

.hdr-serach-bar form {
  position: relative;
  display: flex;
  align-items: center;
  width: 85%;
  margin: 0 auto;
}

.hdr-serach-bar form input::placeholder {
  color: #000;
}

.hdr-serach-bar-button {
  position: absolute;
  right: 10px;
}

.hdr-serach-bar-button button {
  background: #2e5f78;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  border: none;
}

.hdr-button ul {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}

.hdr-button ul li a {
  background: #2e5f78;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  border: none;
}


/* Header Ends */

/* Main Banner Start */


.banner_text label {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Cinzel", serif;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.banner_text label:before {
    content: "";
    position: absolute;
    background: #d2dde1;
    width: 63%;
    height: 2px;
    right: 0;
}

.banner_text label:after {
  content: "";
  position: absolute;
  background: #d2dde1;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  right: 0;
}

.banner_text p {
  width: 80%;
  margin-bottom: 30px;
  font-weight: 700;
  color: #818789;
}

.banner_images img {
  width: 477px;
  height: 803px;
  object-fit: cover;
}

.banner_images {
  display: flex;
  align-content: end;
  justify-content: end;
  position: relative;
  z-index: 1;
  margin-right: 70px;
}

.banner_sec {
  position: relative;
  z-index: 1;
  height: 900px;
  padding-top: 145px;
}

.banner-bottom-heading {
  position: absolute;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
}

.banner-bottom-heading h2 {
    color: #dfeaef;
    margin-bottom: 0;
    font-weight: 800;
    font-size: 170px;
    line-height: 180px;
}

.banner_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98%;
  z-index: -1;
  content: '';
  background: #eaf6fb;
}

.banner_text {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}


/* Main Banner Ends */


/*About Us Start*/

.about-us-image img {
    width: 96%;
    height: 775px;
    object-fit: cover;
    border-radius: 10px;
}

.about-us-text h2 {
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
  width: fit-content;
}

.about-us-text h2 span {
  display: block;
}

section.about-us-sec {
  margin-top: 50px;
}

.about-us-text h2 label {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.about-us-text h2 label:before {
  content: "";
  position: absolute;
  background: #e3e3e3;
  width: 68%;
  height: 2px;
  right: 0;
}

.about-us-text h2 label:after {
  content: "";
  position: absolute;
  background: #e3e3e3;
  width: 20px;
  height: 20px;
  right: 0;
  border-radius: 50%;
}

/*About Us Ends*/


/*Diabolous Swap Series Start*/


.diabolous-swap-series-text h2 span {
  display: block;
}


.diabolous-swap-series-text h2 {
  color: #000;
  line-height: 65px;
  margin-bottom: 5px;
}

.diabolous-swap-series-sec {
  padding: 50px 0 0;
  position: relative;
}

.diabolous-swap-series-sec:before {
  content: "";
  position: absolute;
  background-image: url(../images/diabolous-swap-series-back.png);
  width: 100%;
  height: 70%;
  background-size: cover;
  z-index: -1;
  top: 0;
}

.diabolous-swap-series-text {
  margin-top: 170px;
}

.diabolous-swap-series-text label {
  font-size: 18px;
  font-family: "Montserrat", serif;
  font-weight: 600;
  color: #2e5f78;
  margin: 10px 0 10px;
  text-transform: uppercase;
}

.diabolous-swap-series-text ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}

.diabolous-swap-series-images img {
  width: 95%;
  height: 1027px;
  object-fit: contain;
}

.diabolous-swap-series-images {
  text-align: end;
}


/*Diabolous Swap Series Ends */


/*Sneak Peek Start */

.sneak-peek-heading h2 {
  color: #000;
}

.sneak-peek-heading h2 {
  margin-bottom: 0;
}

.sneak-peek-heading {
  text-align: center;
}

.sneak-peek-heading p {
  width: 48%;
  margin: 0 auto;
}

.sneak-peek-box {
  margin-top: 8px;
  box-shadow: 0 0 10px 0 #00000038;
  padding: 20px 20px 30px;
  border-radius: 10px;
}

.sneak-peek-box-text {
  margin-top: 25px;
}

.sneak-peek-box-img img {
  width: 100%;
  height: 405px;
  object-fit: cover;
  border-radius: 10px;
}

.sneak-peek-box-text h2 {
  color: #000;
  font-size: 25px;
  margin-bottom: 8px;
}

.sneak-peek-box-text h2 span {
  display: block;
}

.sneak-peek-silder .slick-slide {
  margin: 20px 20px;
}

.sneak-peek-silder .slick-slide {

  opacity: 1.2;
}

.sneak-peek-silder .slick-slide.slick-current.slick-active.slick-center .sneak-peek-box {
  background-color: #2e5f78;
}

.sneak-peek-silder .slick-slide.slick-current.slick-active.slick-center .sneak-peek-box a {
  background-color: #fff;
  color: #000000 !important;
  border: 1px solid #000;
}

.sneak-peek-silder .slick-slide.slick-current.slick-active.slick-center .sneak-peek-box a span {
  background-color: #2e5f78;
}

.sneak-peek-silder .slick-slide.slick-current.slick-active.slick-center .sneak-peek-box a span img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(122deg) brightness(103%) contrast(101%);
}

.sneak-peek-silder .slick-slide.slick-current.slick-active.slick-center .sneak-peek-box p {
  color: #97afbc;
}

.sneak-peek-silder .slick-slide.slick-current.slick-active.slick-center .sneak-peek-box h2 {
  color: #fff;
}

.sneak-peek-box-text p {
  width: 80%;
}

/*Sneak Peek Ends */

/*Our Insight Start*/


.our-insights-sec {
  margin: 100px 0;
  background: #eaf6fb;
  padding: 100px 0;
}

.our-insights-pragf h2 {
  margin-bottom: 0;
}

.our-insights-heading h2 {
  margin-bottom: 0;
  color: #000;
}

.our-insights-box {
  margin-top: 25px;
}

.our-insights-box img {
  width: 100%;
  height: 465px;
  object-fit: cover;
  border-radius: 5px;
}

.our-insights-pragf p {
  margin-bottom: 0;
}

/*Our Insight Ends*/


/*Our Testimonials Ends*/

.our-testimonails-silder-items ul li img {
  width: auto;
  height: auto;
}

ul.our-testimonails-img li h2 {
  font-family: "Montserrat", serif;
  font-size: 16px;
  color: #000;
  margin-bottom: 0;
  font-weight: 700;
}

ul.our-testimonails-img li h3 {
  font-family: "Montserrat", serif;
  font-size: 16px;
  color: #2e5f78;
  margin-bottom: 0;
  font-weight: 700;
}

ul.our-testimonails-star {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

ul.our-testimonails-star li span {
  font-family: "Montserrat", serif;
  font-weight: 600;
}

ul.our-testimonails-star li i {
  color: #2e5f78;
}

ul.our-testimonails-img li img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

ul.our-testimonails-img {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 2px solid #333333;
  padding-top: 25px;
  margin-top: 35px;
}

.our-testimonails-silder .slick-slide {

  opacity: 1.2;
}

.our-testimonails-silder-items {
    box-shadow: 0 0 10px 0 #00000036;
    padding: 50px 30px;
    border-radius: 5px;
    height: 458px;
    transition: 0.5s;
}

.our-testimonails-silder-items:hover {
  background: #2e5f78;
  transition: 0.5s;
}

.our-testimonails-silder-items:hover * {
  color: #fff;
}

.our-testimonails-silder-items:hover p {
  color: #97afbc;
}

.our-testimonails-silder-items:hover ul.our-testimonails-img {

  border-top: 2px solid #d5dfe4;

}

.our-testimonails-heading h2 {
  color: #000;
  margin-bottom: 0;
}

.our-testimonails-heading {
  text-align: center;
  margin-bottom: 10px;
}

.our-testimonails-heading p {
  width: 45%;
  margin: 0 auto;
}

.our-testimonails-silder button.slick-prev,
button.slick-next {
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #7f7f7f !important;
  border-radius: 50px !important;
  transition: 0.5s !important;
}

.our-testimonails-silder .slick-slide {
  margin: 20px 10px;
}

.our-testimonails-silder .slick-prev:before,
.slick-next:before {
  color: #7a8c91 !important;
  font-size: 12px !important;
  content: "" !important;
  font-family: "Font Awesome 6 Pro";
  font-weight: 800 !important;
  background-image: url(../images/theme-btn-arrow.png) !important;
  width: 16px !important;
  height: 10px !important;
  filter: brightness(0) saturate(100%) invert(54%) sepia(0%) saturate(0%) hue-rotate(342deg) brightness(92%) contrast(86%) !important;
}

.our-testimonails-silder button.slick-prev.slick-arrow:hover {
  background: #2e5f78;
  border: 2px solid #2e5f78 !important;

}

.our-testimonails-silder button.slick-next.slick-arrow:hover {
  background: #2e5f78;
  border: 2px solid #2e5f78 !important;
}

.our-testimonails-silder button.slick-prev.slick-arrow:hover:before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(4793%) hue-rotate(19deg) brightness(109%) contrast(101%) !important;
}

.our-testimonails-silder button.slick-next.slick-arrow:hover:before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(4793%) hue-rotate(19deg) brightness(109%) contrast(101%) !important;
}

/*Our Testimonials Ends*/


/*Contact Us Start*/

.contact-us-images img {
    width: 100%;
    height: 625px;
    object-fit: cover;
    border-radius: 10px;
}

.contact-us-text h2 {
  color: #000;
  margin-bottom: 0;
}

.contact-us-text {
  margin-left: 30px;
}

.contact-us-text input {
  width: 100%;
  height: 65px;
  border: 2px solid #e8e8e8;
  padding: 0 25px;
  border-radius: 50px;
  font-family: "Montserrat", serif;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.contact-us-text input::placeholder {

  font-family: "Montserrat", serif;
  color: #000;

}

.contact-us-text textarea {
  width: 100%;
  height: 300px;
  border: 2px solid #e8e8e8;
  padding: 20px 25px;
  border-radius: 20px;
  font-family: "Montserrat", serif;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  resize: none;
}

.contact-us-text textarea::placeholder {

  font-family: "Montserrat", serif;
  color: #000;

}

.contact-us-text button {
  border: none;
}

/*Contact Us Ends*/


/* Footer Start */

.footerSec {
  background: #020202;
}

ul.ftr_contact li {
  color: #ffffff;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px !important;
  font-weight: 600;
}

.quick_links ul li a {
  color: #ffffff;
  font-family: "Montserrat", serif;
  font-weight: 600;
}

.useful_links ul li a {
  color: #ffffff;
  font-family: "Montserrat", serif;
  font-weight: 500;
}

.sevice_links ul li a {
  color: #ffffff;
  font-family: "Montserrat", serif;
  font-weight: 500;
}

.ftr_left h2 {
  font-size: 25px;
  font-family: "Montserrat", serif;
  margin-top: 35px;
}

.ftr_left p {
  color: #ffffff;
  margin-bottom: 20px;
}

ul.ftr_socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}

ul.ftr_socials li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 47px;
  width: 47px;
  border-radius: 50%;
  border: 1px solid #b5b5b5;
  color: #b5b5b5;
  font-size: 16px;
  transition: all ease-in .3s;
}

ul.ftr_socials li a:hover {
  border: 1px solid #2e5f78;
  color: #ffffff;
  background: #2e5f78;
}

.copy-txt p {
  margin-bottom: 0;
}

.footerSec h5 {
  font-weight: 600;
  font-size: 25px;
  color: #ffffff;
  margin: 0 0 0px;
  border-bottom: 1px solid #353535;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
  padding-top: 80px;
  font-family: "Cinzel", serif;
}

.footerSec h5::before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0;
  left: 0;
  width: 130px;
  height: 1px;
  z-index: 1;
}

.ftr_left {
  padding-top: 60px;
  padding-right: 70px;
  border-right: 1px solid #353535;
  height: 100%;
}


.footer-btm {
  padding: 20px 0;
  border-top: 1px solid #353535;
}

.copy-txt p {
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
}

.footer-atm-card-box img {
  width: 204px;
  height: 29px;
  object-fit: contain;
}

.footer-atm-card-box {
  text-align: end;
}

.quick_links {
  padding: 0 40px 0 40px;
}

.sevice_links {
  padding: 0 0 0 40px;
}

.useful_links {
  padding: 0 40px 0 40px;
}

.footerSec ul li {
  margin-bottom: 8px;
}

.subscribe_sec h4 {
  height: 65px;
  color: #ffffff;
  font-size: 20px;
  background: #222121;
  width: 65%;
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 50px 0px 0px 50px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.subscribe_sec form {
  width: 60%;
  position: relative;
  display: flex;
  align-items: center;
}

.subscribe-news-btn {
  position: absolute;
  right: 5px;
}

.subscribe_sec {
  height: 55px;
  border-radius: 5px;
  display: flex;
  margin: 50px 40px 70px;
  align-items: center;
}

.subscribe_sec input {
  background: #ffffff;
  border: none;
  padding: 0 20px;
  width: 110%;
  font-family: "Montserrat", sans-serif;
  border-radius: 50px;
  height: 65px;
  font-weight: 600;
  margin-left: -40px;
  position: relative;
}

.subscribe_sec input::placeholder {
  text-transform: uppercase;
}

.subscribe_sec button {
  height: 60px;
  text-transform: uppercase;
  background: #2e5f78;
  font-size: 14px;
  border: none;
  padding: 0 40px;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  border-radius: 50px;
}

.ftr_logo {
  border-bottom: 1px solid #353535;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

.ftr_logo a img {
  width: 275px;
  height: 19px;
  object-fit: contain;
}


ul.ftr_contact li a {
  color: #fff;
  font-weight: 600;
}

.ftr_logo::before {
  content: '';
  position: absolute;
  background: #ffffff;
  bottom: 0;
  left: 0;
  width: 130px;
  height: 1px;
  z-index: 1;
}

/* Footer Ends */


/* Home Page Ends */


/*Inner About Us Start*/

.about-us-row {
  margin-top: 50px;
}

.inner-banner-sec h2 {
  color: #000;
  margin-bottom: 0;
}

.inner-banner-sec {
  background: #eaf6fb;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
}


/*Inner About Us Ends*/


/*Inner Sneak Peek Start*/

.sneak-peek-box.inner {
  margin-top: 30px;
}

.inner-sneak-peak-sec {
  padding: 70px 0 100px;
}

/*Inner Sneak Peek Ends*/

/*Inner Our Testimonails Start*/

.our-testimonails-silder-items.inner {
  margin-top: 30px;
}

.inner-reviews-sec {
  padding: 70px 0 100px;
}

/*Inner Our Testimonails Ends*/


/*Inner Contact Us Start*/


.cont-bx {
  background-color: #2e5f78;
  padding: 50px 30px;
  border-radius: 0px;
  height: 200px;
}

.cont-bot-txt input::placeholder {
  color: #000;
}

.cont-bot-txt textarea::placeholder {
  color: #000;
}

.cont-bx h3 {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 15px;
  color: #ffffff;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffffff8c;
  width: 75%;
  font-weight: 500;
}


.cont-bx span {

  color: #fff;

}


.cont-bx a {
  color: #f7f6f5;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
}


.cont-bot-txt {
  text-align: center;
  margin-top: 60px;
}


.cont-bot-txt h3 {
  font-size: 55px;
  line-height: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 400;
  color: #2e2e2e;
}


.cont-bot-txt p {

  font-size: 14px;

  width: 70%;

  margin: 0 auto;

  margin-bottom: 30px;

}


.cont-bot-txt form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 30px;
  color: #000;
  font-family: "Montserrat", sans-serif;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 600;
  height: 65px;
  text-transform: uppercase;
  border: 2px solid #e8e8e8;
}


.cont-bot-txt form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 30px;
  height: 220px;
  font-family: "Montserrat", sans-serif;
  border-radius: 0;
  resize: none;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  border: 2px solid #e8e8e8;
}

.contact-us-btn button {
  border: none;
}

.cont-bot-txt button {
  border: bisque;
  margin: 0 auto;
}


/*Inner Contact Us Ends*/


/* Inner Product Detail Start */

.productdetailsec {
  padding: 100px 0 30px;
  position: relative;
}

.product-detail-images {
  text-align: center;
  padding: 50px 50px;
  border-radius: 10px;
  background: #eaf6fb;
  width: 99%;
}

.product-detail-images img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 8px;
}

.productdetailtext h3 {
  font-size: 55px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.productdetail-cart-btn {

  margin-top: -10px;
}

.prd-btn a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  padding: 17px 25px;
  font-weight: 700;
}

.productdetailtext del {
  color: #2b2828;
  font-family: 'Cormorant Garamond', serif;
  font-size: 35px;
  font-weight: 900;
  margin-left: 5px;
}

.productdetailtext ul {
  padding: 0;
  margin: 1px 0 0;
  align-items: center;
  justify-content: flex-start;
}


.productdetailtext ul li {
  list-style: none;
  display: inline-block;
  color: black;
  font-size: 21px;
  font-weight: 500;
  font-family: 'Poppins';
}

ul.d-flex li {}

ul.product-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

ul.product-social li i {
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50px;
}

ul.product-social li i:hover {
  background: #93d50a;
  color: #fff;
  border: 0;
  transition: 0.5s ease-in-out;
}

.productdetailtext ul li a i {
  color: #ffc21f;
  font-size: 16px;
  margin-right: 0px;
}

.clearfix ul li span {
  font-size: 15px;
  color: #000;
  margin-left: 5px;
  font-family: "Montserrat", serif;
  font-weight: 600;
}

span.wite-your-rewiew i {
  color: #2e5f78;
  margin-right: 3px;
}

.productdetailtext ul li:last-child a i {
  color: #DADADA;
}


.productdetailtext p {
  width: 80%;
}

.productdetailtext strong {
  color: #000;
  margin-bottom: 25px;
  display: block;
  font-size: 22px;
  font-weight: 600;
  font-family: "Cinzel", serif;
  margin-top: 20px;
}


.quanity.product-detail h2 {
  font-size: 25px;
  color: #000;
  font-weight: 600;
  margin-bottom: 25px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
  font-size: 13px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-plus {
  font-size: 13px;
  margin: 0;
  top: -15px;
  right: 3px;
}

.productdetailtext .input-group input.form-control.input-number {
  width: 100%;
  margin: 0 auto;
  display: table;
  height: 50px;
  text-align: center;
}

.productdetailtext .input-group button.btn.btn-default.btn-number {
  border-radius: 50px;
  width: 30px;
  height: 30px;
  margin: 0 15px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
  font-size: 13px;
  margin: 0;
  top: -13px;
  right: 5px;
}

.productdetailtext .input-group {
  width: 50%;
  margin: 0 0 34px;
}


.iconlist ul li i {
  margin: 0 0px 0px 10px;
  font-size: 18px;
  color: #2e5f78;
}

.productdetailtext .input-group span.input-group-btn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.productdetailsmallportion {
  position: relative;
  top: 0;
  z-index: 99;
}

.productdetailsmallportion img {
  margin: auto;
  width: 100%;
  border: 2px solid #0000000d;
  height: 100%;
  background: #ffff;
  box-shadow: 0 0 5px #00000021;
}

.productdetailsec .productdetailportion {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eae5e9;
  border-radius: 10px;
}

.productdetailnav .slick-slide {
  opacity: 1;
  z-index: 9999;
  position: relative;
  margin: 0;
}

.product-detail span {
  margin: 0;
}

.iconlist ul li {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "Cinzel", serif;
}

.iconlist {
  margin-top: 60px;
  width: 65%;
}

span.pull-rightnumber {
  font-size: 55px;
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: #2e5f78;
}

.product-detail .num-in {
  background: transparent;
  box-shadow: none;
  width: 75%;
}

.product-detail input.in-num {
  border: 1px solid #DADADA;
  background-color: transparent;
  width: 40%;
  margin: 0 5px;
}

.product-detail span {
  width: 30px !important;
  border: 1px solid #dadada;
  border-radius: 50px;
  height: 30px !important;

}

.product-detail .skin-2 .num-in span:before,
.product-detail .skin-2 .num-in span:after {
  background-color: #000;
}

.product-detail span:hover:before,
.product-detail span:hover:after {
  background-color: rgb(255, 255, 255) !important;
}

.product-details-btn.btn10 {
  background-color: #CFA55A !important;
  color: black;
  border-color: #CFA55A;
  font-size: 17px;
}

.quanity.product-detail {
  margin-left: 0;
  width: 35%;
}

.product-detail span:hover {
  background-color: #2e5f78;
}

ul.product-detail-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 15px;
}

.product-details-btn {
  height: 60px;
  border: 0;
  width: 180px;
  margin-left: 10px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #cfa55a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  cursor: pointer;
}

a.cat-sub-btn {
  background: #335650;
  color: #fff;
  padding: 15px 40px;
  font-weight: 500;
}

a.cat-sub-btn:hover {
  background: #000;
}


.description li.nav-item {
  margin-right: 12px;
}

.description li.nav-item button {
  border-radius: 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
  text-align: center;
  padding: 0;
  font-family: "Cinzel", serif;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: inherit !important;
  isolation: inherit !important;
}

.nav-tabs .nav-link:hover {
  border: none !important;
}

ul.dolor-sit-amet-points li {
  font-family: 'big-noodle';
  font-size: 20px;
  color: #000;
}

ul.dolor-sit-amet-points li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #070606;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  font-family: "Cinzel", serif;
}

ul.dolor-sit-amet-points {
  margin-bottom: 20px;
  line-height: 35px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #000;
  background-color: inherit;
  border-color: inherit;
  border: none !important;
  position: relative;
}

.nav-tabs .nav-link.active:before {
  content: "";
  position: absolute;
  background: #2e5f78;
  width: 100%;
  height: 3px;
  bottom: -23px;
  right: 0;
  left: 0;
  margin: 0 auto;
}


.description .nav-tabs {
  gap: 40px;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 3px solid #ededed;
}

.description {
  padding: 20px 0 80px;
}


.description .tab-content p {}

.productdetailfor .slick-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.productdetailsmallportion img {
  width: auto;

  position: relative;
  z-index: 999999999999999;
}

.productdetailnav .slick-list.draggable {
  margin-top: -25px;
}

/* skin 2 */

.skin-2 .num-in {
  background: #F0F0F0;
  box-shadow: 0px 1px 4px rgb(0 0 0 / 15%);
  height: 40px;
  width: 110px;
  float: left;
  border-radius: 12px;
  cursor: pointer;
}

.skin-2 .num-in span {
  width: 40%;
  display: block;
  height: 40px;
  float: left;
  position: relative;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
  content: '';
  position: absolute;
  background-color: #667780;
  height: 2px;
  width: 10px;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -5px;
}

.skin-2 .num-in span.plus:after {
  transform: rotate(90deg);
}

.skin-2 .num-in input {
  float: left;
  width: 20%;
  height: 37px;
  border: none;
  text-align: center;
  background-color: #f0f0f0;
  font-family: 'Roboto';
}

.product-detail .num-in {
  background: transparent;
  box-shadow: none;
  width: 75%;
  display: flex;
  align-items: center;
}

.product-detail input.in-num {
  border: 1px solid #DADADA;
  background-color: transparent;
  width: 40%;
  margin: 0 5px;
  padding: 30px 0;
}

.productdetailsec .btn10 {
  color: white;
}

.productdetailsmallportion img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}


a.btn.shp-btn {
  font-family: 'cereR';
  font-size: 18px;
  color: #fff;
  background: #000;
  border-radius: 0;
  padding: 14px 45px;
}


.productdetailnav {
  margin-top: 40px;
}

.productdetailnav .slick-slide {
  margin: 0px 8px !important;
}

.productdetailfor .slick-slide {
  margin: 0;
}

section.related-prod {
  position: relative;
  padding: 50px;
}

.product-head {
  text-align: center;
  margin-bottom: 50px;
}

.quanity.product-detail input {
  width: 50%;
  height: 50px;
  border: 1px solid #dadada;
  padding: 13px;
  color: #000;
}


ul.product-quintity li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.quanity.product-detail input::-webkit-outer-spin-button,
.quanity.product-detail input::-webkit-inner-spin-button {
  -webkit-appearance: auto !important;
  margin: 0px !important;
  opacity: 1 !important;
}

/* product tabs css */

.rate {
  height: 46px;
  float: left;
  display: block;
  clear: both;
  margin-bottom: 10px;
}


.productdetailtext {
  margin-left: 15px;
}

.rate input {
  top: 0;
  visibility: hidden;
}

.rate:not(:checked)>input {
  position: absolute;
  /* top: -9999px; */
}

.rate:not(:checked)>label {
  float: right;
  width: 0.8em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 35px;
  color: #ccc;
  margin: 0 3px;
}

.rate:not(:checked)>label:before {
  content: '\f005';
  font-family: 'Font Awesome 5 Free';
  font-weight: 800;
  color: #000;
  font-size: 24px;
}

.rate>input:checked~label {
  color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
  color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
  color: #c59b08;
}

.prd-commets .testimonial-heading {
  letter-spacing: 1px;
  margin: 30px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.prd-commets .testimonial-heading span {
  font-size: 1.3rem;
  color: #252525;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.prd-commets .testimonial-box-container {
  display: block;
}

.prd-commets .testimonial-box {
  width: 100%;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px;
  margin: 15px;
  cursor: pointer;
}

.testi-box {
  border: 1px solid #e1e1e1;
  padding: 30px;
  margin: 20px 0;
}

.prd-commets .prd-commets .profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.prd-commets .profile-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
  margin-right: 20px;
}

.prd-commets .profile {
  display: flex;
  align-items: center;
}

.prd-commets .name-user {
  display: flex;
  flex-direction: column;
}

.prd-commets .name-user strong {
  color: #000;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-family: "Cinzel", serif;
}

.prd-commets .name-user span {
  color: #2e5f78;
  font-size: 14px;
  font-family: "Montserrat", serif;
  font-weight: 600;
}

.prd-commets .reviews {
  color: #f9d71c;
}

.prd-commets .box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.prd-commets .client-comment p {
  margin-bottom: 0;
}

.prd-commets .testimonial-box:hover {
  transform: translateY(-10px);
  transition: all ease 0.3s;
}

.description .tab-content input[type="text"] {
  width: 100%;
  padding: 15px;
  margin-bottom: 30px;
  color: #000;
  font-family: "Montserrat", sans-serif;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 600;
  height: 65px;
  text-transform: uppercase;
  border: 2px solid #e8e8e8;

}

.rev-btn h6 {
  color: #000;
  font-size: 30px;
  margin-bottom: 5px;
  font-family: "Cinzel", serif;
  text-transform: capitalize;
}

.prdtc-rvw ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.description .tab-content form .row {
  align-items: center;
}

.prdtc-rvw i {
  font-size: 25px;
  margin-right: 10px;
}

.description .tab-content textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 30px;
  color: #000;
  font-family: "Montserrat", sans-serif;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 600;
  height: 185px;
  text-transform: uppercase;
  border: 2px solid #e8e8e8;
}

.description .tab-content input::placeholder {
  color: #000;
}

.description .tab-content textarea::placeholder {
  color: #000;
}

.description .tab-content form {
  margin-bottom: 30px;
}

.review-btn button {
  border: none;
}

.prdtc-rvw i:hover {
  color: #FFC107;
}

.products-box img {
  width: 40%;
  height: 220px;
  object-fit: contain;
}


.product-ratting {
  margin-top: 10px;
  margin-bottom: 20px;
}

ul.dolor-sit-amet-points li a img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(33%) sepia(17%) saturate(1439%) hue-rotate(156deg) brightness(92%) contrast(89%);
}


/* Inner Product Detail Ends */


/* Inner Cart Start */


.inner-cart-sec {
  padding: 100px 0;
}

.inner-cart-sec .shopping_cart_table h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #0e0d0d;
  font-size: 35px;
  font-family: "Cinzel", serif;
}

.inner-cart-sec .shopping_cart_table table th {
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 10px;
  color: #151414;
  font-weight: 600;
  font-family: "Cinzel", serif;
}

.inner-cart-sec .shopping_cart_table table thead {
  border-bottom: 1px solid #e6e6e6;
}

.inner-cart-sec .shopping_cart_table table tbody td {
  padding: 25px 0;
  border-bottom: 1px solid #e3d4ce;
}

.inner-cart-sec .shopping_cart_table table tbody .cart_box_product {
  display: flex;
  align-items: center;
}

.inner-cart-sec .shopping_cart_table table tbody td {
  padding: 25px 0;
  border-bottom: 1px solid #e6e6e6;
}

.cart_product_img img {
  width: 100px;
  height: 117px;
  object-fit: cover;
  border-radius: 5px;
}

.inner-cart-sec .shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  text-transform: capitalize;
}

.inner-cart-sec .shopping_cart_table table tbody .cart_box_product .cart_product_name p {
  font-size: 14px;
  line-height: 20px;
  margin-top: 2px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #000;
}


.cart_product_name h2 {
  margin-bottom: 0 !important;
  font-size: 22px !important;
  line-height: 30px !important;
}

.inner-cart-sec .shopping_cart_table table tbody td select {
  height: 50px;
  appearance: auto;
  border: 1px solid #b8b8b8;
  width: 135px;
  color: #000;
  font-weight: 600;
  padding: 0 15px;
}

.inner-cart-sec .shopping_cart_table table tbody td .skin-2 .num-in {
  border-radius: 0;
}

.inner-cart-sec .shopping_cart_table table tbody td .t_price {
  font-size: 35px;
  text-transform: uppercase;
  color: #2e5f78;
  margin-bottom: 0 !important;
  font-weight: 500;
  font-family: "Cinzel", serif;
}

.inner-cart-sec th.w-40 {
  width: 40%;
}

.inner-cart-sec .shopping_cart_table table tbody td i.fas.fa-times {
  font-size: 20px;
  color: #000;
}

.inner-cart-sec .cart_recipt {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.inner-cart-sec .cart_recipt>a {
  padding: 15px 35px;
  border: 1px solid #c6c6c6;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #151414;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border-radius: 2px;
}

.inner-cart-sec .cart_recipt>a i {
  margin-right: 10px;
}

.inner-cart-sec .recipt {
  width: 30%;
}

.inner-cart-sec .recipt li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.inner-cart-sec .recipt li:last-child {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e6e6e6;
  color: #000;
}

.inner-cart-sec .recipt li span {
  font-size: 16px;
  letter-spacing: 2px;
  color: #000000;
  font-weight: 700;
}

.inner-cart-sec .payment_card {
  padding: 30px 30px;
}

.inner-cart-sec .payment_card h3 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 25px;
  padding-bottom: 30px;
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  color: #000;
  font-family: "Cinzel", serif;
}

.inner-cart-sec .expiry_cvv a {
  border: none !important;
}

.inner-cart-sec .credit_paypal a {
  padding: 12px 25px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  background: #f3f3f3;
}

.inner-cart-sec .credit_paypal a img {
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
  width: 20px;
}

.inner-cart-sec .credit_paypal {
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}

.cart-btn {
  text-align: center;
  margin-top: 35px;
}

.inner-cart-sec .payment_card form label {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}


.inner-cart-sec .payment_card form {
  margin-top: 15px;
}

.inner-cart-sec .payment_card form input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 15px;
  background: transparent;
  padding: 0;
  color: #0e0d0d;
  font-weight: 600;
  font-size: 14px;
}

.inner-cart-sec .payment_card form select {
  height: 50px;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 15px;
  background: transparent;
  padding: 0;
  font-weight: 600;
  color: #0e0d0d;
}

.credit_paypal label {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #0e0d0d;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.inner-cart-sec .payment_card form input::placeholder {
  color: #0e0d0d;
  font-weight: 700;
  font-size: 14px;
}

.inner-cart-sec .expiry_cvv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-cart-sec .expiry_date {
  width: 70%;
}

.inner-cart-sec .cvv_box {
  width: 26%;
}

.inner-cart-sec .month_year {
  display: flex;
  justify-content: space-between;
}

.inner-cart-sec .month_year select {
  width: 48% !important;
  appearance: auto;
}

.inner-cart-sec .month_year select option {
  color: #000;
}

.inner-cart-sec .payment_card form .btn1 {
  margin: 30px 85px;
  border: none;
}

.inner-cart-sec .shopping_cart_table {
  padding-right: 40px;
}

section.shopping_cart .skin-2 .num-in {
  height: 50px;
  width: 150px;
  float: left;
  border: 0;
  border-radius: 25px;
  cursor: pointer;
  color: #9d9d9d;
}

section.shopping_cart .skin-2 .num-in span {
  width: 40px !important;
  height: 40px !important;
  float: left;
  position: relative;
  color: #9d9d9d;
  border: 1px solid #0d0d0d;
  border-radius: 50%;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-quantity-box {
  margin-top: 20px;
}

.pro-quantity-box .quanity.product-detail input {

  border: none !important;
}

.pro-quantity-box .product-detail .num-in {
  background: #ffffff;
  width: 160px;
  border: 1px solid #cfcfcf;
}

.pro-quantity-box .row {
  align-items: center;
}

.productdetail-line {
  margin-top: 40px;
}

.products-detail-text p {
  margin-bottom: 30px;
}

.productdetail-line p {
  font-size: 17px;
  color: #1d1d1d;
  font-weight: 600;
}

.productdetail-line ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.productdetail-line ul li p {
  margin-bottom: 0;
}

.productdetail-line ul li a {
  color: #f26877;
  font-size: 22px;
}

.pro-quantity-box .quanity.product-detail input {
  width: 50%;
  height: 40px;
  border: 1px solid #000;
  padding: 13px;
  color: #000;
}

section.shopping_cart .skin-2 .num-in span.plus:after {
  transform: rotate(90deg);
}

section.shopping_cart .num-in input.in-num {
  background-color: #ffffff;
  width: 38%;
  font-family: 'Helvetica';
}

section.shopping_cart .skin-2 .num-in input {
  float: left;
  width: 45%;
  height: 45px;
  border: none;
  text-align: center;
  background: transparent;
  font-family: 'Montserrat';
  color: #000000;
  font-size: 20px;
  font-weight: 500;
}

section.shopping_cart .skin-2 .num-in span:before,
.skin-2 .num-in span:after {
  content: '';
  position: absolute;
  background-color: #000;
  height: 2px;
  width: 10px;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -5px;
}

.cart-btn button {
  border: none;
}

.cart_product_name {
  margin-left: 15px;
}


/* Inner Cart End */


/* Inner Check Out Start */


.billing_form h3 {
  margin: 0;
  margin-bottom: 40px;
  color: #000;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 500;
}

.billing_form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.radiosss p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 20px;
}

.check-out-btn button {}

.check-out-btn button {
  padding: 14px 7px 14px 20px;
}

.billing_form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 25px;
  color: #000;
  font-family: "Montserrat", sans-serif;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 600;
  height: 65px;
  text-transform: uppercase;
  border: 2px solid #e8e8e8;
}

.billing_form input::placeholder {
  color: #7c7c7c;
  font-family: "Montserrat", sans-serif;

}

.cart_sidebar .cart_lst li:not(:last-child) {
  margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #727879;
}

.cart_sidebar .cart_lst li span {
  float: right;
}

.cart_sidebar .cart_lst li:last-child {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
}


.cart_sidebar .cart_lst {
  margin-top: 20px;
  margin-bottom: 40px;
}

.thankyou_txt {
  padding: 50px;
  border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
  font-size: 35px;
  color: #000;
  font-weight: 800;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.thankyou_txt h3 i {
  font-size: 40px;
  margin-right: 15px;
}

.order_det h5 {
  font-size: 20px;
  color: #7c7c7c;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
}

.order_det p {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin: 0;
}

.order_complete_detail h3 {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.order_detail_table {
  padding: 40px;
  border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
  margin-top: 0px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dbdbdb;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

.order_detail_table ul {
  margin-top: 20px;
  margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
  margin-bottom: 25px;
}

.order_detail_table ul li {
  font-size: 14px;
  color: #7c7c7c;
}

.order_detail_table ul li span {
  float: right;
}

.order_detail_table ul li:last-child {
  font-weight: 700;
  color: #000;
}

.order_detail_table h6 {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  font-family: 'Roboto', sans-serif;
  padding: 25px 0;
  border-top: 1px solid #dbdbdb;
  margin: 0;
}

.order_detail_table h6 span {
  float: right;
}

.check_menu ul {
  text-align: center;
  margin-bottom: 40px;
}

.check_menu ul li {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #7c7c7c;
  margin: 0 14px;
}

.check_menu ul li i {
  font-size: 18px;
}

.check_menu ul li.purp {
  color: #700ea3;
}

.cart_sidebar {
  padding: 40px 30px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e8e8e8;
}

.billing_form input::placeholder {
  color: #000;
}

.cart_sidebar ul li input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #2e5f78;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cart_sidebar h3 {
  font-size: 28px;
  color: #000;
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 500;
}

.cart_sidebar .h-sub {
  font-size: 20px;
  border-bottom: 1px solid #cbcbcb;
  margin-bottom: 20px;
  line-height: 0;
  padding-bottom: 30px;
  padding-top: 20px;
  color: #2e5f78;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Cinzel", serif;
}

.cart_sidebar h5 span {
  float: right;
  color: #2e5f78;
  font-weight: 600;
  font-family: "Cinzel", serif;
}

.check-out-btn button {
  border: none;
}

.cart_sidebar h4 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: normal;
  padding-top: 0;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Cinzel", serif;
}

.cart_sidebar ul li input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.cart_sidebar ul li label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #727879;
}

.cart_sidebar ul li label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #b7b7b7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}


.check-out-btn {
  margin-top: 35px;
}

.cart_sidebar ul li:not(:last-child) {
  margin-bottom: 15px;
}

.cart_sidebar form {
  margin-top: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
  font-size: 14px;
  font-weight: 400;
  color: #b7b7b7;
  font-family: 'Roboto', sans-serif;
}

.cart_sidebar form select {
  width: 100%;
  height: 40px;
  padding-left: 15px;
  border-radius: 0;
  border: 1px solid #b7b7b7;
  margin-bottom: 20px;
  appearance: auto;
  color: #b7b7b7;
}

.cart_sidebar form select option {
  color: #000;
}

.cart_sidebar form input {
  width: 100%;
  height: 40px;
  padding-left: 15px;
  border-radius: 0;
  border: 1px solid #b7b7b7;
  margin-bottom: 20px;
  appearance: auto;
  color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
  color: #b7b7b7;
  font-family: 'Montserrat-Ultral';
}

.cart_sidebar form button {
  color: #000;
  font-size: 15px;
  border-radius: 0px;
  font-family: 'Poppins', sans-serif;
  padding: 10px 40px;
  background-color: #ebebeb;
  border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
  background-color: transparent;
  transition: 0.3s ease-in-out;
}

.checkout_btn {
  padding: 12px 50px;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 24px;
  border-radius: 0;
  font-weight: 500;
  border: 2px solid transparent;
  background-color: #ff2e98;
  font-family: 'Montserrat-Ultral';
}

.checkout_btn:hover {
  /* color: white; */
}

ul.shipping-ul {
  border-bottom: 1px solid #cbcbcb;
  margin: 0;
  padding-bottom: 30px;
}

h6.payment-h {
  color: #000;
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 500;
  margin-top: 30px;
  font-family: "Cinzel", serif;
}

.cart_sidebar .radiosss-payments li label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #b7b7b7;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  border-radius: 20px;
  left: 6px;
  border: 0;
  width: 10px;
  height: 10px;
  background-color: #2e5f78;
}

h5.h-sub.chg {
  color: #000;
}


.radiosss-payments .card.card-body {
  padding: 0;
  border: 0;
  margin-left: 30px;
  background: none;
}

.radiosss-payments {
  border-bottom: 1px solid #d5d5d5;
}


section.checkout_page {
  padding: 100px 0;
}


.checkout_page .img-1 {
  position: absolute;
  left: -13%;
  top: 50%;
  width: 340px;
}

.checkout_page .img-2 {
  position: absolute;
  right: -7%;
  top: 60%;
  width: 230px;
  transform: rotate(200deg);
}


/* Inner Check Out End */



/*Login Sign Up Start*/

.login-box {
    padding: 50px 40px;
    border-radius: 5px;
    background: #f3f3f3;
    border: 1px solid #f3f3f3;
}

.login-box h2 {
  font-size: 40px;
  color: #000;
  margin-bottom: 25px;
  text-align: center;
}

.login-box input {
    width: 100%;
    height: 60px;
    margin-bottom: 22px;
    border: 1px solid #d7d7d7;
    background: #fff;
    padding: 0 20px;
    color: #b2b2b2;
    font-size: 16px;
    border-radius: 5px;
    font-family: "Montserrat", serif;
}

.quanity.product-detail h2 {
  font-size: 25px;
  color: #000;
  line-height: 30px;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
}

.productdetail-cart-btn {
    margin-bottom: 0;
}

.productdetail-quanity-btn {
  display: flex;
  align-items: end;
}

.login-box input::placeholder {
  color: #b2b2b2;
  font-size: 15px;
}
.login-box button {
    width: 100%;
    height: 60px;
    border: none;
    text-transform: uppercase;
    justify-content: center;
}
.login-box.chg button {
    background: #ffffff;
    color: #2e5f78 !important;
    font-weight: 600;
    font-size: 17px;
}
.login-box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.login-box ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat';
}

.by-creating p {
  color: #000;
  font-size: 15px;
  font-weight: 600;
}

.by-creating p a {
    color: #2e5f78;
    margin-left: 8px;
    font-weight: 600;
    background-image: -webkit-linear-gradient(-92deg, rgb(243, 159, 144) 0%, rgb(209, 72, 59) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #2e5f78;
    border-bottom: 1px solid #2e5f78;
}
.login-box.signup {
    margin-left: 30px;
}

.about-us-bottom-row {
    margin-top: 40px;
}

.login-sec {
  padding: 100px 0;
  position: relative;
}

.login-box ul li input {
  width: 18px;
  height: 18px;
  margin-bottom: 0;
}

.login-box.signup h2 {
  color: #000;
}

.login-box.signup input {
    background: #fbfbfb !important;
    color: #b9b9b9 !important;
    border: 1px solid #fbfbfb !important;
}

.login-box.signup input {
  background: #be1d2c;
}

.login-box.signup input::placeholder {
  color: #666666;
  font-weight: 500;
}

.by-creating {
  margin-bottom: 20px;
}

.login-sec:before {
  content: "";
  position: absolute;
  background-image: url(../images/account-before.png);
  width: 760px;
  height: 800px;
  background-size: contain;
  z-index: -1;
  right: 0;
}
.login-box.chg {
    background: #2e5f78;
}
.login-box.chg h2 {
    color: #fff;
}
.login-box.chg input {
    background: none;
    border: 1px solid #a18f81;
    color: #e8e4e0;
    border: 2px solid #e8e8e8;
}
.login-box.chg input::placeholder {
   
    color: #e8e4e0;
}

/*Login Sign Up End */