@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=Cinzel:wght@400..900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 400;
  font-family: 'Poppins';
  font-size: 16px;
}


/***** 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
}


/***** 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: 400;
  padding: 13px 36px;
  color: #fff;
  margin: 20px 20px 20px 0px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid #0e3368;
  text-transform: uppercase;
  background: #0e3368;
}

.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: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  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: 7px 0;
  border-bottom: 1px solid #ffffffbd;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  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 6px;
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'Poppins';
}

.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: 99%;
  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: rgb(14 51 104 / 36%);
}
.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;padding-bottom: 0px;}


/*Header Start*/
ul.header-phone li i {
    border: 2px dotted #000;
    width: 70px;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 40px;
    color: #000;
}

ul.header-phone li a {
    font-family: "Cinzel", serif;
    font-size: 30px;
    color: #000;
}

.header-logo {
    display: flex;
    gap: 60px;
}

ul.header-phone {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 0px;
}

ul.top-right-links {
    display: flex;
    margin-bottom: 0px;
    justify-content: end;
    gap: 13px;
}

ul.top-right-links li {
    border: 2px dotted #000;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

header {
    position: absolute;
    width: 100%;
    z-index: 2;
}

ul.top-right-links li a {
    color: #000;
}

.topSec .row {
    align-items: center;
}

.topSec {
    padding: 10px 0px;
    border-bottom: 1px solid #ffffffbd;
}

.menuSec ul li a i {
    font-size: 10px;
}

/*Header End*/

/*Banner Start*/
.banner-video video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.banner_text h1 {
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 60px;
    line-height: 58px;
    margin-bottom: 26px;
    color: #000;
}

.banner_text {
    text-align: center;
}
.banner_text .theme-btn {
    background: #000;
    color: #fff;
    border-color: #000;
}
/*Banner End*/


/*Section Category Start*/
.catalog-heading h2 {
    font-family: 'Cinzel';
    font-size: 50px;
    color: #000000;
    text-transform: uppercase;
}

.catalog-img {
    text-align: center;
    background: #f5f5f5;
    height: 290px;
    display: flex;
    align-items: center;
}

.txt-catalog h2 {
    font-family: 'Cinzel';
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 39px;
    color: #000;
}
.catalog-big-img {
    display: none;
}
.catalog-img img {
    width: 140px;
    height: 200px;
    margin: 0 auto;
    object-fit: contain;
}

.catalog-main-box {
}

.catalogslid .slick-active {
    opacity: 1.5 !important;
}
.catalogslid .slick-slide {
    opacity: 0;
    margin: 0px 9px;
}

.catalogslid .slick-slide.slick-current + .slick-slide.slick-active + .slick-slide.slick-active {
    width: 362px !important;
    margin-top: -200px;
}

.catalogslid .slick-slide.slick-current + .slick-slide.slick-active + .slick-slide.slick-active .catalog-img {
    display: none;
}

.catalogslid .slick-slide.slick-current + .slick-slide.slick-active + .slick-slide.slick-active .txt-catalog {
    display: none;
}

.catalogslid .slick-slide.slick-current + .slick-slide.slick-active + .slick-slide.slick-active .catalog-big-img {
    display: block;
}
.catalogslid .slick-track {
    display: flex;
    align-items: flex-end;
}
.catalogslid .slick-slide.slick-current + .slick-slide.slick-active + .slick-slide.slick-active .catalog-big-img img {
    border-radius: 190px 180px 0px 0px;
}

.catalog-sec {
    padding: 100px 0px;
}

.catalogslid .slick-list {
    overflow: visible !important;
}
.catalogslid .slick-next:before {
    content: '\f0da' !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    border: 1px solid #00000085;
    padding: 15px 21px;
    border-radius: 30px;
}
.catalogslid .slick-next {
    right: 51px;
    top: -60px;
}
.catalogslid .slick-prev:before {
    content: '\f0d9' !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    border: 1px solid #00000085;
    padding: 15px 21px;
    border-radius: 30px;
}
.catalogslid .slick-prev {
    left: unset;
    right: 120px;
    top: -60px;
}
.catalogslid .slick-slide.slick-active {
    width: 212px !important;
}
/*Section Category End*/


/*Section About Start*/

.about-img-left img {
    width: 80%;
    border-radius: 190px;
}

.about-main-img img {
    width: 100%;
    border-radius: 340px;
}

.about-txt h2 {
    font-family: 'Cinzel';
    font-size: 52px;
    margin-bottom: 10px;
    color: #033269;
    text-transform: uppercase;
}

.about-txt {
    background: #fff;
    margin-left: 90px;
    margin-right: -130px;
    position: relative;
    border-radius: 0px 13px;
    padding-right: 48px;
    padding-top: 20px;
    z-index: 2;
}


.about-sec {
    padding: 70px 0px 100px;
    position: relative;
    z-index: 1;
}
.about-txt p {
    text-align: justify;
    line-height: 28px;
    color: #000;
}
.abt-btn {
    margin-top: 30px;
}

.about-sec::before {
    position: absolute;
    content: '';
    background-image: url(../images/about-shadow.png);
    width: 40%;
    height: 100%;
    top: -110px;
    right: -10px;
    z-index: -1;
}

/*Section About End*/



/*Section Diamond STart*/

.diamond-img {
    border: 2px solid #033269;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #fff;
}

.diamond-img img {
    width: 250px;
    height: 240px;
    object-fit: contain;
    margin: 0 auto;
}

.txt-diamond h2 {
    font-size: 20px;
    font-family: 'Cinzel';
    text-transform: uppercase;
    margin-bottom: 0px;
    color: #000;
}

.txt-diamond li {font-family: 'Cinzel';font-size: 24px;color: #153467;}

.txt-diamond ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
}

.txt-diamond ul li .theme-btn {
    margin: unset;
    padding: 10px 19px;
    font-family: 'Poppins';
}

.heading-diamond h2 {
    font-family: 'Cinzel';
    font-size: 52px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
}
.diamond-sec {
    position: relative;
    padding: 50px 0px 100px;
}
.diamond-sec::before {
    position: absolute;
    content: '';
    background-image: url(../images/diamond-shadow.png);
    width: 100%;
    height: 800px;
    top: -110px;
    left: -370px;
    z-index: -1;
    background-repeat: no-repeat;
}
.diamondslid .slick-next {
    right: -25px;
    border: 1px solid #153467;
    height: 40px;
    width: 22px;
    border-radius: 5px;
}
.diamondslid .slick-next:before {
    content: '\f178' !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #153467 !important;
    margin-left: -19px;
}
.diamondslid .slick-slide {
    margin: 20px 10px;
}

.diamondslid .slick-active {
    opacity: 1.5;
}

.diamondslid .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1;
}
.diamondslid .slick-prev {
    right: -25px;
    border: 1px solid #153467;
    height: 40px;
    width: 22px;
    border-radius: 5px;
}
.diamondslid .slick-prev:before {
    content: '\f177' !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #153467 !important;
    margin-right: -21px;
}

/*Section Diamond End*/


/*Section Loose Diamonds Start*/

.loose-diamonds-sec {
    background-image: url(../images/loose-diamonds.jpg);
    width: 100%;
    height: 440px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loose-diamonds-sec h2 {
    font-family: 'Cinzel';
    font-size: 72px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 1px 3px #000;
}

.loose-diamonds-sec h3 {
    font-family: 'Cinzel';
    font-size: 48px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: 34px;
    text-shadow: 2px 2px 3px #000;
}

.loose-diamonds-sec {
    text-align: center;
}

.loose-diamonds-sec .theme-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}
/*Section loose Diamonds End*/


/*Section Special Start*/
.special-sec {
    padding: 120px 0px 80px;
}

.special-sec .row {
    align-items: center;
}
.text-special h2 {
    font-family: 'Cinzel';
    font-size: 52px;
    color: #000;
}
/*Section Special End*/


/*Section Client Start*/

img.main-img-user {
    border-radius: 50%;
}

.img-client {
    text-align: center;
    position: relative;
}

img.client-back-shape {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    bottom: -13px;
}

.txt-client h2 {
    font-family: 'Cinzel';
    font-size: 26px;
    margin-bottom: 1px;
    color: #084298;
    text-align: center;
    line-height: 42px;
}

.txt-client p {
    text-align: center;
    line-height: 26px;
    color: #000;
    font-size: 15px;
}

.txt-client ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #f9a524;
    margin-bottom: 10px;
}

.txt-client ul li i {
    font-size: 17px;
}

.txt-client {
    margin-top: 30px;
    padding: 0px 13px;
}
.client-sec {
    padding: 50px 0px 100px;
}


/*Section Client End*/


/*Image Animataion Start*/


.m1 {
    position: relative;
    overflow: hidden;
}

.m1:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.m1:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}


/*Image Animataion End*/



/*Footer Start*/

footer {
    background-image: url(../images/footerback.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px 0px;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
}
.fticons-social .social-icons-banner ul {
    position: unset;
    margin-top: 50px;
}

.logo-ft p {
    font-size: 14px;
    line-height: 27px;
    font-weight: 600;
    color: #fff;
}
.logo-ft a img {
    width: 100%;
    height: 100%;
}
ul.ft-links h2 {
    font-size: 23px;
    margin-bottom: 30px;
    line-height: 20px;
    color: #fff;
    font-family: 'Rajdhani';
    font-weight: 500;
    font-family: 'Poppins';
    text-transform: uppercase;
}
ul.ft-links li a {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
}
ul.ft-links li {
    margin-bottom: 10px;
}
ul.ft-links {
    margin-left: 50px;
}
ul.ft-contact h2 {
    font-size: 24px;
    margin-bottom: 31px;
    line-height: 20px;
    color: #fff;
    font-family: 'Rajdhani';
    font-weight: 500;
    font-family: 'Poppins';
    text-transform: uppercase;
}
ul.ft-contact li a {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}
ul.ft-contact li a i {
    font-size: 16px;
}
ul.ft-contact {
    margin-left: 26px;
}
ul.ft-contact  li {
    margin-bottom: 7px;
}
.ft-social-icons h2 {
    font-size: 24px;
    margin-bottom: 22px;
    line-height: 20px;
    color: #fff;
    font-family: 'Rajdhani';
    font-weight: bold;
    font-family: "Jost", sans-serif;
    text-transform: uppercase;
}
.ft-social-icons ul.top-sec-socialicons {
    justify-content: start;
}
.paypal-img {
    margin-top: 40px;
}
.ft-social-icons {
    margin-left: 20px;
}
.ft-bottom-text p {
    text-align: center;
    color: #fff;
    margin-top: 59px;
    margin-bottom: 0px;
    padding: 10px 0px 12px;
    text-transform: uppercase;
}

footer:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #ffffffb5;
    bottom: 61px;
}
ul.ft-links li a:hover {
    color: #fff;
    margin-left: 10px;
    transition: 0.9s;
    text-decoration: underline;
}
ul.ft-contact li a:hover {
    color: #fff;
    margin-left: 10px;
    transition: 0.9s;
    text-decoration: underline;
}
ul.top-sec-socialicons li p {
    font-size: 14px;
    color: #fff;
}
ul.top-sec-socialicons li input {
    border: unset;
    width: 80%;
    height: 40px;
    padding: 0px 10px;
    border-radius: 4px 0px 0px 4px;
}
ul.top-sec-socialicons li a {
    border: 1px solid #1a7f01;
    color: #fff;
    padding: 7px 14px 9px;
    font-size: 18px;
    border-radius: 6px;
    margin-left: -7px;
    background: #1a7f01;
}
.fticons-social ul.hd-socialicons {display: flex;align-items: center;gap: 10px;justify-content: center;}
.fticons-social ul.hd-socialicons li {
    padding: 5px 9px;
    background: transparent;
    width: 43px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 40px;
}
.fticons-social ul.hd-socialicons li a {
    font-size: 15px;
    color: #fff;
}
.newsletter-heading h2 {
    font-size: 20px;
    font-family: 'Poppins';
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.newsletter-field input {
    width: 75%;
    border: 1px solid #fff;
    padding: 12px 10px;
    border-radius: 29px 0px 0px 30px;
    font-family: 'Poppins';
}

.newsletter-field button {
    background: #0d3363;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0px 30px 30px 0px;
    text-transform: uppercase;
    font-family: 'Poppins';
}

.newsletter-field {
    display: flex;
    align-items: center;
    justify-content: end;
}

.payments-cards img {
    width: 93%;
}

.payments-cards {
    text-align: center;
    margin-top: 30px;
}
.newsletter-heading h2 {
    margin-bottom: 0px;
}
.newsletter-row {
    border-bottom: 1px solid #ffffff7d;
    padding-bottom: 30px;
    margin-bottom: 45px;
}

ul.ft-links.products-ft-links {
    margin-left: unset !important;
}

.logo-ft {
    margin-top: 15px;
}

/*Footer End*/

/* Search Box Start*/

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999999999;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.search-box {
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}
.search-overlay.active .search-box {
  transform: scale(1);
}

.search-box input {
  padding: 12px 20px;
  font-size: 16px;
  width: 80vw;
  max-width: 600px;
  border: none;
  border-radius: 10px;
  outline: none;
  text-transform: capitalize;
  font-family: 'Poppins';
  border-radius: 40px 0px 0px 40px;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.search-box input::placeholder {
  color: #888;
}
.search-box button {
  padding: 13px 24px;
  font-family: 'Poppins';
  text-transform: uppercase;
  border: unset;
  border-radius: 0px 29px 30px 0px;
  font-size: 17px;
  margin-left: -4px;
  background: #033269;
  color: #fff;
}

/* Search Box End*/


/*Inner banner Start*/
.inner-banner-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}


section.main_slider.innerbanner .carousel-caption {
    height: 100%;
}

section.main_slider.innerbanner .banner_text {
    margin-top: 70px;
}

/*inner Banner End*/


/*About page Start*/

.about-btm-text p {
    text-align: justify;
    line-height: 28px;
    color: #000;
    line-height: 31px;
}

.abt-btm-row {
    margin-top: 10px;
}


/*About page End*/



/*Shop Page Start*/

.tool_tip {
    display: none;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #153467;
    color: white;
    padding: 1px 5px;
    border-radius: 0;
    white-space: nowrap;
    z-index: 1;
    font-size: 13px;
}

.product_select {
    display: flex;
    align-items: center;
}

.product_select select {
    padding: 0 10px;
    appearance: auto;
    width: 100%;
    height: 40px;
    border: 1px solid #ebebeb;
    border-radius: 6px;
}

.product_show ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product_show ul {
    font-family: montserrat;
    font-size: 17px;
    margin-bottom: 0px;
}

.product_show ul li a:focus-within {
    color: #000;
}

.product_show ul li a:hover {
    color: #853f59;
}

.product_select h6 {
    width: 100px;
    margin: 0;
    font-size: 15px;
    text-transform: capitalize;
}

.product_grid ul li a:hover .tool_tip {
    display: block;
}

h5.capi {
    text-transform: capitalize;
    margin-top: 30px;
}

.bannertabs .nav {
    display: block !important;

}

.product_top_bar {
    background-color: #15346717;
    padding: 30px;
}

.product_heading h4 {
    font-size: 17px;
    font-family: 'Poppins';
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.bannertabs .nav1 ul {
    display: block !important;
}
.product_main_box {
    margin: 30px 0 0  0;
}
.product_main_box  .our-product-img img {
    height: 340px;
    width: 100%;
    object-fit: cover;
}

span.rangeValues {
    text-align: left;
    display: block;
    padding-top: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: 'Cinzel';
    color: #153467;
    margin-bottom: 20px;
}

.start-label {
    transform: translateX(-30%);
}

.range-slider input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    height: 7px;
    top: -3px;
    background-color: #ebeced;
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 1px;
    border: none;
    border-radius: 3px;
    z-index: 99999999;
}

.range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #0e3368;
    margin-top: -10px;
    cursor: pointer;
}

.range-slider input[type=range]:focus {
    outline: none;
}


.range-slider input[type=range]::-moz-range-track {
    width: 100%;
    height: 1px;
    background: #ddd;
}

.range-slider input[type=range]::-ms-track {
    width: 100%;
    height: 1px;
    background: transparent;
    color: transparent;
}

.range-slider input[type=range]::-ms-fill-lower {
    background: #000;
    border-radius: 10px;
}

.range-slider input[type=range]::-ms-fill-upper {
    background: #000;
    border-radius: 10px;
}

.range-slider input[type=range]::-ms-thumb {
    border: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: pink;
}

.bannertabs h5 {
    margin: 10px 0;
    font-size: 23px;
}


.range-slider {
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.range-labels {
    position: relative;
    margin-bottom: 0;
    z-index: 99999;
    top: 0;
}

.start-label::after,
.end-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #153467 transparent transparent transparent;
    z-index: 9999;
}

.end-label::after {
    left: 50%;
    transform: translateX(-50%);
}

.start-label,
.end-label {
    position: absolute;
    top: -108px;
    font-size: 14px;
    font-weight: 400;
    background-color: #153467;
    padding: 2px 10px;
    border-radius: 0;
    transform: translateX(-34%);
    width: 60px;
    color: #ffff;
}

.start-label {
    left: 0;
}

.end-label {
    left: 100%;
    transform: translateX(-65%);
}


.bannertabs h5 {
    margin: 10px 0;
    font-size: 26px;
    font-weight: 600;
    font-family: 'Cinzel';
    color: #000;
}

.bannertabs {
    background: #15346724;
    padding: 39px 30px;
}
section.Inner_Product_Sec.sec {
    padding: 100px 0  100px 0;
}
.bannertabs .nav.nav1.stroke ul li a:hover {
    transition: 0.3s ease-in-out;
    margin-left: 15px;
}

.bannertabs .nav.nav1.stroke ul li a {
    text-align: left;
    text-transform: capitalize;
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid #153467;
    font-weight: 400;
    transition: 0.3s ease-in-out;
    font-size: 14px;
    color: #000;
    font-family: 'Poppins';
}

.bannertabs .nav.nav1.stroke ul li:last-child a {
    border: navajowhite;
}

.product_show ul li a {
    font-weight: 500;
    font-family: 'Poppins';
    font-size: 14px;
    color: #000000c7;
}

.product_main_box .clothing_box_image img {
    height: 450px;
    object-fit: cover;
    object-position: center;
}

.product_grid ul {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-bottom: 0px;
}

.product_grid ul li {
    position: relative;
}

.product_grid ul li a:hover {
    color: #153467;
}

.product_grid ul li a:focus-within {
    color: #000;
}
.connector-line {
    position: absolute;
    height: 7px;
    background-color: #153467;
    top: -3px;
    z-index: 1;
    border-radius: 40px;
}

.product_show ul li {
    font-family: 'Poppins';
}

.product_grid ul li a {
    color: #00000094;
}

.product_main_box .diamond-main-box {
    margin-bottom: 50px;
}
.txt-diamond h2 a {
    color: #000;
}
.productdetailsmallportion img {
    border: 2px solid #00000021;
}

.product-content {
    margin-top: 25px;
}

/*Shop Page End*/


/* Shop detail starts */

section.product-detail {
  padding: 80px 0;
}

.product-detail .productdetailportion {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #1534673b;
}

.productdetailfor .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productdetailnav .slick-slide {
  margin: 0 10px;
  cursor: pointer;
}

.productdetailsmallportion img {
  width: 160px;
  height: 130px;
  object-fit: cover;
  transition: 0.3s;
}
.productdetailnav .slick-slide.slick-current .productdetailsmallportion {
  position: relative;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion::before {
  content: '';
  width: 9%;
  height: 8%;
  position: absolute;
  top: -10px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #153467;
  z-index: -1;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion img {
  background: #fff;
  padding: 5px;
  border: 2px solid #153467;
}

.product-content .top-section h6 {
  font-size: 37px;
  margin-bottom: 27px;
  font-family: 'Cinzel';
  text-transform: uppercase;
  color: #000;
}

.product-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-content ul li {
  margin-right: 5px;
  font-size: 17px;
  color: black;
  font-weight: 600;
}

.product-content ul li i.fas.fa-star {
  color: #ffc107;
}

.product-content hr {
  margin: 20px 0;
  border-color: #eee;
}
.row.flexEnd.price_rev ul {
    display: flex;
    position: relative;
}
.row.flexEnd.price_rev ul::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 21px;
    background-color: #00000082;
    right: 10px;
}
.row.flexEnd.price_rev p {
    font-size: 16px;
    color: black;
    font-weight: 600;
    font-size: 17px;
    font-family: 'Cinzel';
}

.brand p {
  color: #666;
  line-height: 1.6;
}
.product-detail .slick-active {
    opacity: 1;
}
.product-detail .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
    margin: 8px 10px;
}
ul.brand  h3 {
    color: #00000082;
    font-size: 22px;
    padding: 6px 0 6px 0;
    text-decoration: line-through;
    margin-bottom: 0px;
}

ul.brand h2 {
    color: #153467;
    font-weight: 600;
    padding: 0 0 0px 0;
    margin-bottom: 10px;
    font-family: 'Cinzel';
    font-size: 45px;
}

ul.brand p {
    padding: 0 0 3px 0;
    margin-bottom: 10px;
    line-height: 27px;
}

.sku {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.sku p {
     color: #153467;
     font-size: 16px;
     font-weight: 600;
     padding: 0 0 10px 0;
     font-family: 'Poppins';
}

.sku span {
     color: #853f59;
    font-size: 17px;
    font-weight: 600;
}
ul.share-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 21px;
}
ul.share-icon a {
    font-size: 17px;
    color: #153467;
}
/*  product Detail Review Section Start */


/* Rating Stars */

.prod-detail-description .rating:not(:checked)>input {
    position: absolute;
    -webkit-appearance: none;
}

.prod-detail-description .rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.prod-detail-description .rating:not(:checked)>label:before {
    content: "ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â¦";
}

.prod-detail-description .rating>input:checked+label:hover,
.prod-detail-description .rating>input:checked+label:hover~label,
.prod-detail-description .rating>input:checked~label:hover,
.prod-detail-description .rating>input:checked~label:hover~label,
.prod-detail-description .rating>label:hover~input:checked~label {
    color: #e58e09;
}

.prod-detail-description .rating:not(:checked)>label:hover,
.prod-detail-description .rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.prod-detail-description .rating>input:checked~label {
    color: #ffa723;
}


.prod-detail-description {
    position: relative;
    padding: 0 0 80px 0;
}

.prod-detail-description .nav-tabs .nav-link {
    color: #0e0e0f;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    width: fit-content;
    padding: 15px;
    background: transparent;
    margin-right: 10px;
    border-radius: 0 !important;
    font-family: 'Cinzel';
}

.prod-detail-description .nav-tabs .nav-link.active,
.prod-detail-description .nav-tabs .nav-item.show .nav-link {
    border-bottom: 3px solid #1a54b5 !important;
    border: 0;
}

.prod-detail-description .nav-tabs .nav-link:hover,
.prod-detail-description .nav-tabs .nav-link:focus {
    border-bottom: 3px solid #1a54b5 !important;
    border: 0;
}

.prod-detail-description .nav-tabs {
    margin-bottom: 15px;
    border: 0;
    border-bottom: 1px solid #dee2e6;
}

.prod-detail-description .prd-review-input label {
    font-size: 16px;
    color: #000000c2;
    font-weight: 600;
    text-transform: capitalize;
    font-weight: unset;
    font-family: 'Poppins';
}

.prod-detail-description .prd-review-input input {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    border: 1px solid #0000006b;
    margin: 5px 0 20px;
    background-color: transparent;
}

.prod-detail-description .prd-review-input input::placeholder,
.prod-detail-description .prd-review-input textarea::placeholder {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Poppins';
}

.prod-detail-description .prd-review-input textarea {
    width: 100%;
    height: 200px;
    padding: 13px;
    border: 1px solid #0000006b;
    margin: 5px 0 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    resize: none;
    background-color: transparent;
}

.prod-detail-description .rating-stars input {
    width: auto !important;
    height: auto;
    border: 0;
}
.prod-detail-description .rating-stars {
    display: inline-grid;
    justify-items: baseline;
}
.prod-detail-description .rating {
    display: block;
    /* align-items: center; */
    /* justify-content: flex-start; */
    /* gap: 5px; */
    margin: 20px 0;
    float: left;
}
.prod-detail-description .prd-review-input.give-review h4 {
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
    font-family: 'Cinzel';
}
.prod-detail-description .prd-review-input.give-review button {
    padding: 8px 40px;
    border-radius: 0;
    border: 1px solid #153467;
    font-size: 16px;
    text-transform: uppercase;
    background: #153467;
    color: #fff;
    border-radius: 40px;
}
.prod-detail-description .client-review-box {
    box-shadow: 0 0 5px 1px #989898;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}
.prod-detail-description ul.client-list-review {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}
.prod-detail-description ul.client-list-review li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}
.prod-detail-description ul.client-list-review img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    object-fit: cover;
    box-shadow: 0 0 5px 1px #989898;
}
.prod-detail-description ul.client-list-review h5 {
    font-size: 21px;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: 'Poppins';
}
.prod-detail-description ul.client-list-review h6 {
    font-size: 13px;
    color: #666;
    font-family: 'Poppins';
    margin-bottom: 0px;
}
.prod-detail-description ul.client-list-review li i {
    font-size: 20px;
    color: #c78b1b;
}
.prod-detail-description .client-info {
    margin-left: 15px;
}

.prod-detail-description .client-review-box p {
    font-size: 15px;
    color: #000000bf;
}
.prod-detail-description .prd-det-review-form .row {
    align-items: center;
}
.prod-detail-description .prd-det-discription-content p {
    font-size: 15px;
    color: #0b0c0cb3;
    padding-bottom: 10px;
    margin: 0;
}
.prod-detail-description .prd-det-additional-content p {
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 10px;
    font-family: 'Poppins';
}
.product-detail1 .skin-2 .num-in {
    height: 50px;
    width: 150px;
    float: left;
    display: flex;
    border-radius: 25px;
    cursor: pointer;
    align-items: center;
    position: relative;
}
.product-detail1 .skin-2 .num-in span:before,
.product-detail1 .skin-2 .num-in span:after {
    opacity: 1;
    content: '';
    position: absolute;
    background-color: #000;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}
section.inner_gift_sec1 .about_text h3 {
    font-size: 44px;
}

.product-detail1 .skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
    opacity: 1;
}
ul.disc-list li {
    display: flex;
    align-items: center;
    gap: 30px;
}

.skin-2 .num-in {
  border-radius: 60px;
  cursor: pointer;
}
.skin-2 .num-in span {
  width: 40%;
  display: block;
  height: 50px;
  float: left;
  position: relative;
  border-radius: 5px;
}
.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;
}
.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: #fff;
  font-family: 'Poppins';
  font-size: 20px;
  font-weight: 600;
  color: #153467;
}
.product-detail .num-in {
    background: transparent;
    box-shadow: none;
    width: 80%;
    height: 52px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-left: 0;
    border: 1px solid #e1e1e1;
}
.quanity.product-detail div {
    display: flex;
    align-items: center;
    margin: 0px 0 0 0;
    border-radius: 0 !important;
    gap: 20px;
}
ul.quan-count {
    display: flex;
    align-items: center;
    gap: 20px;
}

.side-btn a.theme-btn {
    margin: unset !important;
}

.quanity.product-detail h5 {
    font-family: 'Cinzel';
    color: #000;
    text-transform: uppercase;
}
.product-content ul li {
    margin-right: 5px;
    font-size: 16px;
    color: black;
    font-weight: 600;
    font-family: 'Cinzel';
}
/* Shop detail Page Ends */


/*CART PAGE Start*/

.shopping_cart {
  position: relative;
  z-index: 1;
  position: relative;
  margin: 100px 0;
}
section.shopping_cart.inner-bg:before {
  position: absolute;
  content: "";
  top: 0;
  right: 35%;
  height: 100%;
  width: 1px;
  background: #d9d3c7;
}
.chk-btn {
  text-align: center;
}
.shopping_cart img.bk-2 {
  bottom: -38%;
  width: 6%;
}
.shopping_cart img.bk-1 {
  bottom: -2%;
  width: 7%;
}
.cart-pag-qunty .product-detail .num-in {
  width: 30% !important;
  border: 0 !important;
}
.payment_card a.btn-1 {
  color: #fff !important;
}
.payment_card a.btn-1 i {
  color: #fff !important;
}
.shopping_cart_table h2 {
  font-size: 34px;
  margin-bottom: 30px;
  color: #000000;
  font-family: 'Cinzel';
}
.shopping_cart_table table th {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 10px;
  color: #000;
  font-family: 'Cinzel';
}
.shopping_cart_table table thead {
  border-bottom: 1px solid #ddd7d1;
}
.shopping_cart_table table tbody td {
  padding: 25px 0;
  border-bottom: 1px solid #dddddd;
}
.shopping_cart_table table tbody .cart_box_product {
  display: flex;
  align-items: center;
}
.shopping_cart_table table tbody .cart_box_product .cart_product_img {
  width: 30%;
  background-color: #f2f2f2;
  margin-right: 10px;
  height: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cart_product_img img {
    height: 122px;
    width: 100%;
    object-fit: cover;
}
.cart_product_name {
  padding: 0 0 0 10px;
}
.shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  margin-bottom: 5px;
}
.shopping_cart_table table tbody .cart_box_product .cart_product_name p {
  font-size: 13px;
  color: #000;
  text-transform: uppercase;
  font-family: 'Poppins';
  margin: 0;
  line-height: 16px;
  font-weight: 500;
}
.shopping_cart_table table tbody td select {
  height: 40px;
  padding-left: 10px;
  appearance: auto;
  border: 1px solid #b8b8b8;
}
.shopping_cart_table table tbody td .skin-2 .num-in {
  border-radius: 0;
  border: 0;
  width: 50%;
  border: 1px solid #ddd7d1;
}
.shopping_cart_table table tbody td .t_price {
  font-size: 23px;
  font-weight: 600;
  color: #000;
  margin: 0;
  font-family: 'Cinzel';
}
th.w-40 {
  width: 40%;
}
.shopping_cart_table table tbody td i.fas.fa-times {
  font-size: 20px;
  color: #000;
}
.cart_recipt {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cart_recipt > a {
  padding: 15px 60px;
  border: 1px solid #153467;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #153467;
  font-weight: 500;
}
.cart_recipt > a i {
  margin-right: 10px;
}
.recipt {
  width: 30%;
}
.recipt li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: black;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Poppins';
}
.recipt li:last-child {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dddddd;
}
.recipt li span {
  color: #151414;
  font-size: 16px;
  letter-spacing: 2px;
  font-family: 'Poppins';
}
.payment_card {
  background-color: transparent;
  padding: 0px 0px 0px 80px;
}
.payment_card h3 {
  font-size: 35px;
  color: black;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 40px;
  text-transform: uppercase;
  border-bottom: 1px solid #dddddd;
  font-family: 'Cinzel';
}
.payment_card * {
  color: #000 !important;
  font-weight: 400;
}
.credit_paypal a {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 30px;
  display: inline-flex;
  background: #f3f3f3;
  align-items: center;
  color: #fff;
  font-weight: 400;
  font-family: 'Poppins';
  font-size: 15px;
}
.credit_paypal a img {
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
}
.credit_paypal {
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
.payment_card form label {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  font-family: 'Cinzel';
}
.payment_card form {
  margin-top: 15px;
}
.payment_card form input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 15px;
  background: transparent;
  padding: 0;
  font-family: 'Poppins';
}
.payment_card form select {
  width: 100%;
  height: 50px;
  border: none;
  color: #fff;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 15px;
  background: transparent;
  padding: 0;
}
.payment_card form input::placeholder {
  color: #000;
}
.expiry_cvv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.expiry_date {
  width: 70%;
}
.cvv_box {
  width: 26%;
}
.month_year {
  display: flex;
  justify-content: space-between;
}
.month_year select {
  width: 48% !important;
  appearance: auto;
}
.month_year select option {
  color: #000;
}
.payment_card form .btn1 {
  margin: 30px 85px;
  border: 1px solid;
}
.shopping_cart_table {
  padding-right: 30px;
}
.payment_card a.theme_btn {
  color: #fff !important;
  margin: 0 auto;
  margin-top: 10px;
}
/* skin 2 */
.skin-2 .num-in {
  border-radius: 60px;
  cursor: pointer;
}
.skin-2 .num-in span {
  width: 40%;
  display: block;
  height: 50px;
  float: left;
  position: relative;
  border-radius: 5px;
}
.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;
}
.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: "Montserrat";
  font-size: 20px;
  font-weight: 600;
  color: #9c7b76;
}
.product-detail .num-in {
  background: transparent;
  box-shadow: none;
  width: 100%;
  height: 52px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 0;
  border-left: 0;
  border: 1px solid #e1e1e1;
}
.product-detail input.in-num {
  border: 0;
  background-color: transparent;
  width: 45%;
  margin: 0 5px;
  color: #153467;
}
.productdetailsec .btn10 {
  color: white;
}
.quanity.product-detail.cart-pag-qunty {
  padding: 0 0 0 30px;
}
.side-btn a {
  color: white !important;
  margin: 0  auto;
}
.side-btn a span {
  height: 48px;
  border-radius: 0 6px 6px 0;
}
.side-btn.cart-btn {
    text-align: center;
    margin-top: 24px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/*CART PAGE  END*/


/*  Check Out Page Start */
.billing_form h3 {
  font-size: 35px;
  margin: 0;
  margin-bottom: 30px;
  color: #222222;
  font-weight: 500;
  font-family: 'Cinzel';
  text-transform: uppercase;
}
.billing_form label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #000;
  font-family: 'Poppins';
}
.radiosss p {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  font-family: 'Poppins';
}

.billing_form input {
  width: 100%;
  height: 50px;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
  padding-left: 15px;
  background: transparent;
  font-weight: 500;
  color: black;
}
.billing_form input::placeholder {
  color: #7c7c7c;
  font-size: 15px;
}
.billing_form select{
    color: #7c7c7c;
}
.billing_form select {
    width: 100%;
    height: 50px;
    border: 1px solid #d9d9d9;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 30px;
    background: transparent;
    font-weight: 500;
    color: #7c7c7c;
    text-transform: capitalize;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%237c7c7c" d="M6 9l4-5H2z"/></svg>'); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    font-family: 'Poppins';
}

/* Optional: Remove the duplicate color rule */ .cart_lst li:not(:last-child) {
  margin-bottom: 20px;
}
.cart_sidebar .cart_lst li {
  font-size: 14px;
  color: #7c7c7c;
  font-weight: 400;
  font-family: 'Poppins';
}
.cart_sidebar .cart_lst li span {
  float: right;
}
.cart_sidebar .cart_lst li:last-child {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  font-family: 'Cinzel';
}
.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: #853F59;
}
.cart_sidebar {
  padding: 40px 25px;
  background-color: #14346221;
}
.cart_sidebar h3 {
  font-size: 25px;
  color: #394136;
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: normal;
  font-family: 'Cinzel';
  text-transform: uppercase;
}
.cart_sidebar .h-sub {
  font-weight: 700;
  font-size: 24px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
  line-height: 0;
  padding-bottom: 30px;
  padding-top: 20px;
  color: #000;
  font-family: 'Cinzel';
}
.cart_sidebar h5 span {
  float: right;
  color: #000;
}
.cart_sidebar h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: normal;
  padding-top: 0;
  text-transform: uppercase;
  color: #394136;
  font-family: "cammron_demo";
}
.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: 500;
  color: #000;
  font-family: 'Poppins';
}
.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;
}
.cart_sidebar ul li input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #853F59;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.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: #853F59;
}
ul.shipping-ul {
  border-bottom: 1px solid #dbdbdb;
  margin: 0;
  padding-bottom: 30px;
}
h6.payment-h {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #000;
  font-family: 'Cinzel';
}
.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: 7px;
  border-radius: 20px;
  left: 6px;
  border: 0;
  width: 10px;
  height: 10px;
  background-color: #193561;
}
.radiosss-payments .card.card-body {
  padding: 0;
  border: 0;
  margin-left: 30px;
  background: none;
}
.radiosss-payments {
  border-bottom: 1px solid rgb(219, 219, 219);
}
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);
}
.billing_form {
  padding: 35px;
}
.check-out-btn button {
  background-color: #143462;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  font-family: 'Poppins';
  font-size: 16px;
}
.check-out-btn button:hover{
  border: 1px solid transparent;
  
}
.check-out-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.check-out-btn button span {
  height: 55px;
  border-radius: 0 4px 4px 0;
}
/*  Check Out Page End */


/*Faq' start*/
section.faqs {
    padding: 100px 0px;
    position: relative;
    background-size: cover;
    width: 100%;
    background-image: url(../images/cont-bg.png);
    background-repeat: no-repeat;
}
button.accordion-button.collapsed {
    background-color: #143462;
    font-size: 19px;
    /* font-family: 'Saira'; */
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Cinzel';
}


.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: 28px;
    line-height: 40px;
    font-family: 'Cinzel';
}
.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;
}
/*Faq's end*/



/* Contact Page Start */



.contact-form form {

    position: relative;

}



.contact-form .form-group {

    position: relative;

}



.contact-form .form-group::after {

    content: '';

    height: 53px;

    width: 10px;

    position: absolute;

    left: 40px;

    top: 5px;

    background-size: 10px 50px;

    background-image: url(../images/aroow-forward.png);

    background-repeat: no-repeat;

}



.contact-form form input.form-control {

height: 60px;

font-size: 12px;

padding-left: 70px;

border: 1px solid #c6c6c6;

line-height: 0;

box-shadow: none;

color: #909091;

font-weight: 400;

background-color: #14346214;

margin-top: 20px;

font-family: 'Poppins';

display: flex;

border-radius: 0px;

color: #000;
}



.contact-form form input.form-control::placeholder {

    color: #909091;

}



.contact-main-sec .them-btn-1:hover {

    background-color: #00006d;

    transition: 0.3s all;

}



.contact-form form textarea.form-control::placeholder {

    color: #909091;

}



.contact-form form textarea.form-control {

font-size: 12px;

border-radius: 0px;

padding-left: 70px;

padding-top: 13px;

border: 1px solid #c6c6c6;

letter-spacing: 0;

box-shadow: none;

border-radius: 0;

resize: none;

background-color: #14346214;

margin-top: 20px;

color: #fff;

margin-bottom: 30px;

height: 150px;

/* background-color: #fff; */

color: #000;
}



.contact-form .email {

    padding: 0;

}



.contact-form h4 {

    font-size: 62px;

    line-height: 70px;

    font-weight: 500;

    text-transform: capitalize;

    color: #fff;

}



.contact-form form textarea.form-control::placeholder {

    color: #909091;

}



.contact-form form .phone:before {

    position: absolute;

    content: '';

    width: 42px;

    height: 50px;

    background: url(../images/fom4.png);

    background-repeat: no-repeat;

    left: 16px;

    z-index: 1;

}



.ftt-list .navgation-f {

    float: left;

    width: 50%;

}



.ftt-lst li {

    margin-bottom: 20px;

}



.f-media ul li a:hover {

    background: #008080;

    border-color: #008080;

}



.footer_logo img {

    width: 30%;

}



.contact-form ::-webkit-input-placeholder {

    /* Chrome/Opera/Safari */

    color: #909091;

}



.contact-form ::-moz-placeholder {

    /* Firefox 19+ */

    color: rgba(18, 28, 42, 0.55);

}



.contact-form :-ms-input-placeholder {

    /* IE 10+ */

    color: rgba(18, 28, 42, 0.55);

}



.contact-form :-moz-placeholder {

    /* Firefox 18- */

    color: rgba(18, 28, 42, 0.55);

}



.cicle-icon i {

display: flex;

align-items: center;

justify-content: center;

font-size: 30px;

color: #143462;

/* border: 1px solid #008cff; */

height: 70px;

width: 70px;

border-radius: 50px;

background-color: #fff;
}



.cicle-icon img {

    margin: 0 auto;

}

.contact-info-one {

width: 100%;

display: inline-block;

padding: 40px 20px;

margin-bottom: 10px;

border: 0;

display: flex;

align-items: center;

justify-content: center;

height: 140px;

margin-bottom: 16px;

/* border: 1px solid #c1c1c1; */

border-radius: 5px;

background-color: #143462;
}



.contact-main-sec h4 {

font-size: 43px;

color: #fff;

line-height: 80px;

margin-bottom: 0;

font-family: 'Montserrat';

font-weight: 500;

color: #000;

font-family: 'Queensila';

font-family: 'Cinzel';

text-transform: uppercase;
}



.contact-side-bar .contact_text h2 {

font-size: 21px;

color: #fff;

font-family: 'Cinzel';

line-height: 30px;

text-transform: uppercase;
}

.contact_text {

    padding-top: 0;

}

.contact-form button {

padding: 12px 33px;

font-family: 'Poppins';

font-size: 14px;

font-weight: 400;

color: #fff;

border-radius: 10px;

/* border: 2px solid #f66e1e; */

/* display: flex; */

/* align-items: center; */

/* gap: 26px; */

background-color: #008cff;

/* animation: 1s shadow-pulse infinite; */

border: unset;

border-radius: 100px;

background-color: #143462;
}

.contact-main-sec .row {

    /* align-items: center; */

}



.contact_text p {

font-size: 16px;

line-height: 25px;

color: #fff;

padding-top: 4px;

font-weight: 400;

letter-spacing: 0;

margin: 0;
}



.contact_text p a {

font-size: 16px;

color: #fff;

text-decoration: none;

transition: 0.5s ease-in-out;

display: block;

font-family: 'Poppins';
}



.mailt {

    padding-left: 30px;

}



.contact_text a:hover {

    /* color: #18aae8; */

}



.contact_text p a.email-text {

    font-size: 14px;

    color: #8b8b8b;

}



.contact_text p a.email-text:hover {

    color: #00aae8;

}



.contact-us {

    padding: 6% 0;

}



.contact-head {

    text-align: center;

}



.contact-head h2 {

    font-size: 50px;

    color: #000;

    text-transform: uppercase;

}



.lg-btn {

    width: 100%;

}



.primary-btn {

    /* display: inline-block; */

    padding: 8px 30px;

    color: #fff;

    font-size: 20px;

    font-weight: 300;

    background: #00aa00;

    color: #fff;

    text-align: center;

    transition: all .4s ease;

    border: 2px solid transparent;

    border-radius: 4px;

}



.cp {

    font-size: 17px;

    line-height: 27px;

}



.contact_heading {

    margin-bottom: 30px;

}



.contact_heading h2 {

    font-size: 45px;

    color: #000000;

    font-weight: bolder;

}



.contact-side-bar {

    /* background-color: #fff; */

    padding: 30px;

    position: relative;

    padding-top: 0;

}



.contact-main-sec {

    padding: 80px 0 90px;

    /* background-image: url(../images/contact-banner.png); */

    width: 100%;

    background-size: cover;

    background-repeat: no-repeat;

    position: relative;

}



section.contact-main-sec.spiral-redline .sec-head {

position: relative;

z-index: 9;

margin-top: 17px;
}



.contact-main-sec .them-btn-1 {

    margin-top: 20px;

    border: none;

    padding: 12px 20px;

    background-color: #ff0000;

    color: white;

    border-radius: 25px;

}



.contact-form .form-group i {

position: absolute;

top: 17px;

left: 10px;

color: #143462;

font-size: 20px;
}



.contact-form {

    margin-top: 10px;

}



button.btn10.cont-pg {

    background: #001e3b !important;

}





.contact-form form input.form-control::placeholder {

    color: #909091;

}

.contact-form form textarea.form-control::placeholder {

    color: #909091;

}

.contact-main-sec h2 {

font-size: 50px;

line-height: 50px;

color: #fff;

margin-bottom: 0;

/* font-weight: 700; */

color: #0f0f0f;

font-family: 'Cinzel';

text-transform: uppercase;
}

.name.form-group select {
    height: 60px;
    font-size: 12px;
    padding-left: 70px;
    border: 1px solid #c6c6c6;
    line-height: 0;
    box-shadow: none;
    color: #909091;
    font-weight: 400;
    background-color: #14346214;
    margin-top: 20px;
    font-family: 'Poppins';
    display: flex;
    border-radius: 0px;
    color: #000;
    width: 100%;
}

/* Contact Page End */




/* Account Page Start */

.account-sec {
    padding: 100px 0px;
}

section.account-sec .waraper h5 {
    font-size: 42px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--themeColor);
}

section.account-sec .form {
    padding: 62px 30px;
    border-radius: 10px;
    transition: ease-in 0.5s;
    background-color: #fff;
    box-shadow: 0px 21px 54px 0px rgb(0 0 0 / 16%);
}

section.account-sec .form:hover {
    background-color: #193561;
    transition: ease-in 0.5s;
    border: 1px solid var(--white);
}

section.account-sec .form h5 {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Cinzel';
    color: #000;
}

section.account-sec .form:hover h5 {
    color: #fff;
    transition: ease-in 0.5s;
}

section.account-sec .form:hover button {
    color: #013220;
    transition: ease-in 0.5s;
    background-color: #fff;
}

section.account-sec .form:hover input {
    color: #fff;
    border-radius: 5px;
    border: 1px solid #fff;
    transition: ease-in 0.5s;
    background-color: transparent;
}

section.account-sec .form:hover input::placeholder {
    color: var(--white);
    transition: ease-in 0.5s;
}

section.account-sec .form:hover .form-check label {
    color: #fff;
    transition: ease-in 0.5s;
    /* margin-top: 10px; */
}

section.account-sec .form:hover .forget a.bnts {
    color: #fff;
    transition: ease-in 0.5s;
}

section.account-sec .form:hover .para p,
section.account-sec .form:hover .para p a {
    color: var(--white);
    transition: ease-in 0.5s;
}

section.account-sec .form input {
    width: 100%;
    margin: 12px 0px;
    padding: 14px 20px;
    color: #59564f;
    border-radius: 10px;
    background-color: var(--white);
    transition: ease-in 0.5s;
    border: 1px solid #e0dcdc;
    font-family: 'Poppins';
}

section.account-sec .form input::placeholder {
    font-size: 16px;
    transition: ease-in 0.5s;
    color: #59564f;
}

section.account-sec .form button {
    width: 100%;
    border: 0px;
    padding: 15px 0;
    font-size: 16px;
    transition: 0.4s;
    font-weight: 500;
    color: #fff;
    border-radius: 50px;
    font-family: 'Poppins';
    transition: ease-in 0.5s;
    text-transform: uppercase;
    background-color: #143462;
}

section.account-sec .form button#login {
    margin: 10px 0px;
}

section.account-sec .form:hover .toggle-password {
    color: #fff;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #000;
}

section.account-sec .form-check input#rememberMe {
    width: auto;
    padding: 8px;
    margin-right: 10px;
    border-radius: 0px;
    transition: ease-in 0.5s;
    background-color: var(--white);
    border: 1px solid #f2f2f2;
}

section.account-sec .form-check label {
    font-size: 15px;
    margin-bottom: 0;
    transition: ease-in 0.5s;
    color: #a7a7a7;
    font-family: 'Poppins';
}

section.account-sec .form-check label a {
    color: var(--themeColor);
}

.form:hover .form-check label a {
    color: var(--white);
}

section.account-sec .forget {
    display: flex;
    align-items: center;
    transition: ease-in 0.5s;
    justify-content: space-between;
}

section.account-sec .form-check {
    padding-left: 0px !important;
    transition: ease-in 0.5s;
    align-items: center;
}

section.account-sec .form button:hover {
    background-color: #fff;
    /* border: 1px solid #000; */
    color: #000;
    transition: ease-in 0.5s;
}

section.account-sec .forget a.bnts {
    font-size: 16px;
    color: #a7a7a7;
    transition: ease-in 0.5s;
}

section.account-sec .forget a.bnts:hover {
    color: #000;
}

section.account-sec .form-check input#rememberMe:focus {
    outline: 0px !important;
    box-shadow: unset;
}

section.account-sec .form-check-input:checked[type="checkbox"] {
    filter: brightness(0);
    background-color: transparent !important;
    transition: ease-in 0.5s;
}

section.account-sec .form .para p {
    font-size: 14px;
    color: #000;
    margin-bottom: 16px;
    transition: ease-in 0.5s;
    padding-left: 3px;
}

section.account-sec .form .para p a {
    font-weight: 600;
    transition: 0.4s;
    color: var(--themeColor);
    text-decoration: underline;
}

section.account-sec .form .para p a:hover {
    color: #ffff;
    transition: ease-in 0.5s;
}

.forms .form-check {
    display: flex;
    gap: 3px;
    align-items: center;
}

.forms .form-check input {
    border-radius: 3px;
    width: 20px !important;
    height: 20px !important;
    padding: 0px !important;
}

/* account Page End */