/*

Tooplate 2127 Little Fashion

https://www.tooplate.com/view/2127-little-fashion

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #ff4400;
  --section-bg-color: #f0f8ff;
  --dark-color: #000000;
  --grey-color: #011010;
  --p-color: #011010;

  --body-font-family: "Inter", sans-serif;

  --h5-font-size: 24px;
  --p-font-size: 20px;
  --copyright-text-font-size: 16px;
  --product-link-font-size: 14px;
  --custom-link-font-size: 12px;

  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: #fff;
  font-family: var(--body-font-family);
  position: relative;
  color: #000;
}
.lead {
  color: #000;
}
/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: 64px;
  line-height: normal;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/

.lead {
  font-size: 1.5rem;
  font-weight: var(--font-weight-normal);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -23px;
  border-radius: 50%;
  border: 1px solid #959595;
  border-top-color: var(--white-color);
  animation: spinner 0.9s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/
.navbar {
  background: #faf6f0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 8px 0 !important;
  z-index: 2;
  will-change: transform;
  transition: transform 300ms linear;
}

.navbar span,
h2 span,
h4 span {
  color: var(--primary-color);
}

.navbar.headroom--not-top {
  padding: 20px 0;
}

.headroom--pinned {
  transform: translate(0, 0);
}

.headroom--unpinned {
  transform: translate(0, -150%);
}

.navbar-brand {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-light);
  margin: 0;
  padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  display: inline-block;
  padding: 0;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--p-color);
  font-size: 16px;
  position: relative;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar .nav-link.active,
.navbar {
  /* color: var(--primary-color); */
  background: #faf6f0;
  border: 0;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--section-bg-color);
  position: relative;
  overflow: hidden;
  margin-top: 86px;
}

.site-header.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.site-header.section-padding-img {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.firstTitle {
  font-size: 30px;
}
/*---------------------------------------
  SECTION               
-----------------------------------------*/
section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.featured {
  background: var(--section-bg-color);
}

.banner {
  margin-top: 82px;
  background-image: url("../images/bnr.jpg");
  background-blend-mode: overlay;
  min-height: 750px;
  background-repeat: no-repeat;
}

.banner-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 50%;
}
.banner-desc h1 {
  font-size: 73px;
  color: #fff;
}

.banner-desc p {
  color: #000;
  font-size: 24px;
  font-weight: bold;
}

/*---------------------------------------
  CAROUSEL               
-----------------------------------------*/

.carousel-indicators [data-bs-target] {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  opacity: 1;
  border: 1px solid #fff !important;
  background-color: transparent;
  margin-right: 10px;
  margin-left: 10px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #fff;
}

.carousel-indicators {
  margin-bottom: 2rem;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: rgba(0, 0, 0, 0.4);
  height: 2.5rem;
}

.carousel-control-next {
  justify-content: flex-end;
}

.carousel-control-prev {
  justify-content: flex-start;
}

.carousel-caption {
  right: 15%;
  bottom: 30%;
  left: 15%;
  top: 30%;
  text-align: left;
  font-family: "GlacialIndifference-Regular";
  border-left: 1px solid #fff;
  padding-left: 40px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.carousel-caption .prd-btn {
  border: 0;
  font-family: "GlacialIndifference-Bold";
  padding: 10px 30px;
  max-width: 150px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
  z-index: 1;
}

/*---------------------------------------
  PRODUCT               
-----------------------------------------*/
.front-product.bg-white {
  background: white;
}

.front-product {
  background: var(--section-bg-color);
}
.front-product h2 {
  font-size: 37px;
}
.front-product .pTitle {
  font-weight: 600;
}
.lead {
  font-size: 14px;
  color: #000;
}

.prd-btn {
  padding: 8px 30px;
  background: white;
}

.prd-btn:hover {
  background: #696969;
  color: #fff;
}

.featured-product {
  background-color: #fafafa;
}

.featured-product .container {
  max-width: 980px;
}

hr {
  width: 60px;
  height: 3px;
  background-color: #000;
  opacity: 1;
  margin: 0 auto;
}

.product-info {
  padding: 20px 20px;
  flex-direction: column;
  align-items: center;
  background-color: #faf6f0;
  border-radius: 10px;
}

.product-description {
  padding: 0 20px;
}
.product-description h5 {
  font-size: 20px;
}
.product-description p {
  margin-bottom: 0;
}

.product-title {
  font-style: italic;
  font-size: 5rem;
}

.product-info hr {
  width: 40px;
  height: 3px;
  background-color: #000;
  opacity: 1;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact {
  background-color: #fafafa;
}

.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.form-floating > label {
  color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.contact-form button[type="submit"] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
}

.contact-form button[type="submit"]:hover {
  background: var(--primary-color);
}

.contact-form .contact-input:nth-child(1) {
  width: 48%;
  float: left;
}
.contact-form .contact-input:nth-child(2) {
  width: 48%;
  float: right;
}
.contact-form .contact-input {
  width: 100%;
  margin-bottom: 10px;
  color: #696969;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px;
  outline: none;
  background-color: transparent;
}

.contact-form .contact-button {
  background-color: transparent;
  outline: none;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  padding: 5px;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  border: none;
}

.contact-form .contact-input::placeholder {
  font-style: italic;
  font-weight: bold;
  color: #000;
}

.contact-desc h6,
.contact-desc p {
  margin-bottom: 3px;
}

.contact-desc p {
  font-size: 16px;
}

/* video player */
.video-container {
  width: 100%;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 8px 20px rgba(black, 0.4);

  .video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  video {
    width: 100%;
    height: 100%;
    border-radius: 4px;
  }
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
  #circle-play-b {
    cursor: pointer;
    pointer-events: auto;

    svg {
      width: 100px;
      height: 100px;
      fill: #fff;
      stroke: #fff;
      cursor: pointer;
      background-color: rgba(black, 0.2);
      border-radius: 50%;
      opacity: 0.9;
    }
  }
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: var(--dark-color);
  padding-top: 3rem;
  padding-bottom: 2rem;
  color: var(--white-color);
}

.site-footer .subscribe {
  color: var(--white-color);
  font-family: "Belinda-W00-Regular";
  margin-bottom: 60px;
}

.site-footer input {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(255, 255, 255, 0);
  border-color: rgba(227, 227, 227, 1);
  border-top: 0;
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  text-overflow: ellipsis;
  width: 100%;
  margin-right: 5px;
}

.site-footer input::placeholder,
.site-footer h6,
.site-footer p {
  color: #fff;
}

.site-footer h6,
.site-footer p {
  font-size: 14px;
}

.site-footer button {
  border-radius: 0;
  background-color: var(--white-color);
  color: #000;
  border-color: transparent;
}

.site-footer .list-inline li a {
  color: #969696;
}

.site-footer .list-inline-item:not(:last-child) {
  margin-right: 1.5rem;
}

/*---------------------------------------
  PRODUCT CARDS             
-----------------------------------------*/

.card-product {
  margin-bottom: 20px;
  border: 0;
  border-radius: 0;
}

.card-product .card-img-top {
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0;
}

.card-product .product-thumbnail img {
  object-fit: cover;
  width: 100%;
}

.card-product .card-body {
  min-height: 1px;
}

.card-product .product__card-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-product .product-title {
  color: #495057;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.card-product .product-price-and-shipping .price {
  font-weight: 700;
}

/*---------------------------------------
  PRODUCT DETAILS               
-----------------------------------------*/

.product-name {
  max-width: 60%;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 0 11px;
  text-transform: uppercase;
}

.product_tpl_prices {
  float: right;
  font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
  color: #000;
    background-color: transparent;
}

.accordion-button::after {
  background-image: url(../images/IconosPlus.svg);
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/IconosMinus.svg);
  transform: none;
}

.accordion-flush .accordion-item .accordion-button {
  font-weight: bold;
}

.accordion-item {
  border: 1px solid #000;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid #000;
}

.gallery-item {
  img {
    width: 100%;
    height: auto;
  }
}

/*---------------------------------------
  Team Page             
-----------------------------------------*/

.team-page {
  background-color: #e5e5e5;
}

.team-heading {
  color: #2A2A2A;
  font-size: 60px;
  font-family: "GlacialIndifference-Regular";
  margin-top: 7rem;
}

.team {
  font-family: "GlacialIndifference-Regular";
}

.team .left-content {
  background-color: #B69975;
  min-height: 220px;
}

.team .right-content {
  background-color: #B69975;
  min-height:220px;
  border-left: 1px solid #664427 ;
}

.team h2 {
  font-size: 30px;
}

.team h3 {
  text-transform: uppercase;
  color: #fff;
  font-size: 24px;
  font-family: "GlacialIndifference-Bold";
 /* margin: 67px 0px 33px 0; */
 margin: 21px 0px 2px 0;
}

.team p {
  color: #fff;
  font-size: 16px;
  margin: 0 auto 30px auto;
    line-height: 1.5em;
    width: 90%;
}

.team.grey .left-content{
  background-color: #A27E5F;
} 

.team.grey .right-content{
  background-color: #A27E5F;
}

.team.dark-grey .left-content{
  background-color: #5A351D;
} 

.team.dark-grey .right-content{
  background-color: #5A351D;
}
.team.titlee .left-content{
 background-color:#82583F;
}
.team.titlee .right-content{
 background-color:#82583F;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
    margin-bottom: 0;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  .lead {
    font-size: 16px;
    color: #000;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-top: 1rem;
  }

  .site-header {
    background-position: bottom;
  }

  .site-header.section-padding,
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .site-header-image.section-padding {
    padding-bottom: 0;
  }

  .header-info {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .header-image {
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }

  .carousel-caption {
    display: block;
  }
}
.mainmenu img {
  width: 230px !important;
}
#playerWrap video {
  /* background: #ede7e1; */
  border-radius: 25px;
  /* border-bottom: 5px solid lightslategray;*/
  /*box-shadow: 0px 6px 10px -2px rgba(0, 0, 0, 0.4);*/
}
#playerWrap2 video {
 background: #ede7e1;
 border-radius: 25px;
 border-bottom: 5px solid lightslategray;
 box-shadow: 0px 6px 10px -2px rgba(0, 0, 0, 0.4);
}
.fstleftchild {
   border-top-left-radius: 25px; 
}

.fstrightchild {
   border-top-right-radius: 25px; 
}

.btmleftlatchild{
  border-bottom-left-radius: 25px;   
}

.btmrightlatchild{
  border-bottom-right-radius: 25px;   
}

 .figure {
    position: relative;
    width: 360px; /* can be omitted for a regular non-lazy image */
    max-width: 100%;
  }
  .figure img.Sirv.image-hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: contain;
    opacity: 0;
    transition: opacity .2s;
  }
  .figure:hover img.Sirv.image-hover {
    opacity: 1;
  }
