

    

/*--------------------------------------------------------------

/** 1. VARIABLES

--------------------------------------------------------------*/

:root {

  --accent-color:             #717171;

  --white-color:              #fff;

  --black-color:              #272727;

  --gray-color:               #F3F3F3;

  --gray-color-200:           #E3E3E3;

  --gray-color-300:           #E0E0E0;

  --gray-color-500:           #D0D0D0;

  --gray-color-800:           #3A3A3A;

  --light-gray-color:         #D2D2D2;

  --primary-color:            #F86D72;

  --bs-body-color:            #272727;

  --bs-secondary-color:       #FFE8F0;

  --bs-secondary-rgb:         255, 232, 240;

  --bs-primary-rgb:           248,109,114;

  --bs-border-color:          #E3E3E3;

  --bs-dropdown-link-active-bg: #F5F5F5;

  --light-color:              #F8F8F8;

  --light-blue-color:         #EDF1F3;

  --navbar-color-color:       #131814;

  --swiper-theme-color:       #4A4A4A;

  --swiper-pagination-color:  #4A4A4A;

  --bs-box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.08);



  --bs-btn-font-size: 1rem;

}



/* Fonts */

:root {

    --body-font           : "Nunito", sans-serif;

    --heading-font        : "Nunito", sans-serif;

}



@media (min-width: 1850px){

  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {

    max-width: 1540px;

  }

}



/*----------------------------------------------*/

/* 2. GENERAL TYPOGRAPHY */

/*----------------------------------------------*/



/* 2.1 General Styles

/*----------------------------------------------*/

*, *::before, *::after {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

html {

  box-sizing: border-box;

}

body {

  font-family: var(--body-font);

  font-size: 18px;

  font-weight: 300;

  margin: 0;

}

p {

  color: var(--black-color);

  letter-spacing: 0.01rem;

  line-height: normal;

}

a {

  color: var(--black-color);

  text-decoration: none;

  transition: 0.3s color ease-out;

}

a.light {

  color: var(--light-color);

}

a:hover {

  text-decoration: none;

  color: var(--primary-color);

}

hr{

  margin: 1.25rem 0;

  color: var(--gray-color-200);

  opacity: 1;

}



/*------------ Background Color -----------*/

.bg-gray {

  background: var(--gray-color);

}

.bg-dark {

  background: var(--black-color);

}

.bg-light {

  background: var(--light-color);

}

.bg-light-gray {

  background: #F5F5F5;

}



/* - Section Padding

--------------------------------------------------------------*/

.padding-xsmall {

  padding-top: 0.5em;

  padding-bottom: 0.5em;

}

.padding-small {

  padding-top: 2em;

  padding-bottom: 2em;

}

.padding-medium {

  padding-top: 4em;

  padding-bottom: 4em;

}

.padding-large {

  padding-top: 7em;

  padding-bottom: 7em;

}

.padding-xlarge {

  padding-top: 9.5em;

  padding-bottom: 9.5em;

}



/* - Section margin

--------------------------------------------------------------*/

.margin-small {

  margin-top: 2em;

  margin-bottom: 2em;

}

.margin-medium {

  margin-top: 4em;

  margin-bottom: 4em;

}

.margin-large {

  margin-top: 7em;

  margin-bottom: 7em;

}

.margin-xlarge {

  margin-top: 9.5em;

  margin-bottom: 9.5em;

}



/* 2.2 Section Title

/*----------------------------------------------*/

h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: var(--heading-font);

  text-transform: capitalize;

  letter-spacing: 0.03em;

  font-weight: 700;

  line-height: 115%;

}

h4,

h5,

h6 {

  color: var(--light-black-color);

}



h1{

  font-size: 3.9rem;

}

h2{

  font-size: 2.6rem;

}

h3{

  font-size: 2.1rem;

}

h4{

  font-size: 1.4rem;

}

h5{

  font-size: 1.3rem;

  font-weight: 300;

  text-transform: capitalize;

  letter-spacing: 0.01rem;

}

h6{

  font-size: 1.1rem;

}



@media only screen and (max-width: 999px) {

  h1{

    font-size: 3rem;

  }

  h2{

    font-size: 2.95rem;

  }

  h3{

    font-size: 1.5rem;

  }

  h4{

    font-size: 1.24rem;

  }

  h5{

    font-size: 1.20rem;

  }

}



@media only screen and (max-width: 500px) {

  h1{

    font-size: 2.6rem;

  }

    h2 {

        font-size: 20px;

        font-weight: 800;

        color: #8f000e;

}

.swiper-prev svg, .swiper-next svg {

  max-width: 45px;

}

.btn {

  padding: 0.6rem 2rem !important;

}

}



/*--------------------------------------------------------------

/** 2.3 Buttons

--------------------------------------------------------------*/

.btn {

  font-weight: 500;

  text-transform: capitalize;

  letter-spacing: 0.09em;

  color: var(--white-color);

  background-color: var(--primary-color);

  border: none;

  padding: 1.125rem 2.625rem;

  font-size: 1rem;

  border-radius: 200px;

  cursor: pointer;

}

.btn:hover,

.btn:focus-visible,

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {

  color: var(--white-color);

  background-color: var(--black-color);

}

.btn-dark {

  background-color: var(--black-color);

}

.btn-dark:hover {

  background-color: var(--primary-color);

}



.btn-light {

  background-color: var(--light-color);

}

.btn-light:hover {

  color: #fff;

  background-color: var(--primary-color);

}



/*--------------------------------------------------------------

/** 3. CONTENT ELEMENTS

--------------------------------------------------------------*/



/*--------------------------------------------------------------

/** 3.1 Form Control

--------------------------------------------------------------*/

.form-control {

  padding: 1rem;

  font-size:17px;

  font-weight: 300;

  letter-spacing: 0.01rem;

  line-height: normal;

}

.form-control:focus {

  box-shadow: none;

  border-color: #131814;

}

input.form-control::placeholder,

textarea.form-control::placeholder {

  color: var(--black-color);

}



/*--------------------------------------------------------------

/** 3.2 Form Select

--------------------------------------------------------------*/

.filter-blog .form-select,

.filter-shop .form-select{

  padding: 0;

  font-size: 21px;

  font-weight: 300;

  border: none;

  background-color: transparent;

  line-height: normal;

  width: 180px;

}

.form-select:focus {

  box-shadow: none;

}



.form-check-input:checked {

  background-color: var(--primary-color);

  border-color: var(--primary-color);

}

.form-check-input:focus {

  border-color: var(--primary-color);

  box-shadow: 0 0 0 0.25rem rgba(243, 141, 68, 0.25);

}



/*--------------------------------------------------------------

/** 3.3 Table

--------------------------------------------------------------*/

th{

  font-weight: 300;

  letter-spacing: 0.06rem;

}



/*--------------------------------------------------------------

/** 3.4 Pagination

--------------------------------------------------------------*/

.page-link {

  padding: 0;

  font-size: 21px;

  color: var(--black-color);

  background: none;

  border: none;

}

.page-link:focus {

  color: var(--primary-color);

  background: none;

  box-shadow: none;

}

.page-link:hover {

  color: var(--primary-color);

  background: none;

  border: none;

}

.active>.page-link, .page-link.active {

  color: var(--primary-color);

  background: none;

  border: none;

}

.disabled>.page-link, .page-link.disabled {

  color: var(--gray-color-500);

  background: none;

  border: none;

}



/* Animation */

@media (min-width: 200px) {

  .animate {

    animation-duration: 0.3s;

    -webkit-animation-duration: 0.3s;

    animation-fill-mode: both;

    -webkit-animation-fill-mode: both;

  }

}



/* Animate Slide */

@keyframes slide {

  0% {

    transform: translateY(1rem);

    opacity: 0;

  }

  100% {

    transform: translateY(0rem);

    opacity: 1;

  }

  0% {

    transform: translateY(1rem);

    opacity: 0;

  }

}



@-webkit-keyframes slide {

  0% {

    -webkit-transform: transform;

    -webkit-opacity: 0;

  }

  100% {

    -webkit-transform: translateY(0);

    -webkit-opacity: 1;

  }

  0% {

    -webkit-transform: translateY(1rem);

    -webkit-opacity: 0;

  }

}



.slide {

  -webkit-animation-name: slide;

  animation-name: slide;

}



/*----------------------------------------------*/

/* 4. SITE STRUCTURE */

/*----------------------------------------------*/



/* Preloader */

#preloader {

  background: #FFF;

  opacity: 0.8;

  height: 100%;

  position: fixed;

  width: 100%;

  top: 0;

  z-index: 99999999;

  transition: 0.2s ease-in-out;

}

#preloader.hide-preloader{

  display: none;

}
.pre {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pre img {
  width: 105px;
  height: 102px;
}

/* Search Bar

------------------------------------------------------------- */

.search-box {

  background: var(--gray-color);

  position: relative;

}

.close-button {

  position: absolute;

  top: 20px;

  right: 120px;

  cursor: pointer;

  z-index: 9;

}

.search-box input.search-input {

  font-size: 1.3em;

  width: 70%;

  height: 30px;

  padding: 25px;

  border-radius: 80px;

  border-color: rgb(0 0 0 / 25%);

  background: transparent;

}

.search-box svg {

  width: 22px;

  height: 22px;

  color: var(--primary-color);

}

.search-box svg.search {

  margin-left: -50px;

}





/** Search Form

--------------------------------------------------------------*/

.search-form input[type="search"].search-field {

  border: none;

  background: #f1f1f1;

  width: 100%;

  border-radius: 50px;

  padding: 10px 40px;

}

.search-form input[type="search"].search-field::focus {

  border-color: #af9aaa;

}

.search-form button {

  position: absolute;

  top: 6px;

  right: 9px;

  background: transparent;

  border: none;

}



/** Search Popup

--------------------------------------------------------------*/

.search-popup {

  background-color: #fff;

  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  opacity: 0;

  visibility: hidden;

  z-index: 999999;

  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;

  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;

  transition: opacity 0.3s 0s, visibility 0s 0.3s;

}

.search-popup.is-visible {

  opacity: 1;

  visibility: visible;

  cursor: -webkit-image-set(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 1x, url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 2x), pointer;

  cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E"), pointer;

  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;

  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;

  transition: opacity 0.3s 0s, visibility 0s 0s;

}

.search-popup-container {

  background-color: transparent;

  position: relative;

  top: 50%;

  margin: 0 auto;

  padding: 0;

  width: 90%;

  max-width: 800px;

  text-align: center;

  box-shadow: none;

  cursor: default;

  -webkit-transform: translateY(-40px);

  transform: translateY(-40px);

  -webkit-backface-visibility: hidden;

  -webkit-transition-property: -webkit-transform;

  transition-property: transform;

  -webkit-transition-duration: 0.3s;

  transition-duration: 0.3s;

}

.is-visible .search-popup-container {

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}

.search-popup-form {

  position: relative;

  margin: 0 0 3em 0;

}

.search-popup-form .form-control {

  padding: 0 0 .375em 0;

  font-size: 2em;

}

.search-popup-form #search-popup-submit {

  display: none;

}

.search-popup .search-popup-close {

  display: block;

  position: absolute;

  top: 2em;

  right: 2em;

  margin: -0.5em;

  padding: 0.5em;

  line-height: 0;

}

.search-popup .search-popup-close:hover {

  -webkit-transform: rotate(90deg);

  -ms-transform: rotate(90deg);

  transform: rotate(90deg);

}

.search-popup .search-popup-close i {

  display: block;

  position: relative;

  width: 1em;

  height: 1em;

  fill: rgba(0,0,0,0.5);

}

.search-popup .search-popup-close:hover i {

  fill: rgba(0,0,0,1);

}

.search-popup .cat-list-title {

  margin-top: 40px;

  margin-bottom: 10px;

  font-size: 0.6em;

  font-weight: normal;

  text-transform: uppercase;

  letter-spacing: 0.1em;

}

.search-popup .cat-list {

  margin: 0;

  list-style-type: none;

}

.search-popup .cat-list-item {

  display: inline-block;

  margin-bottom: 0;

  letter-spacing: 0.015em;

  font-size: 2em;

}

.search-popup .cat-list-item a {

  position: relative;

}

.search-popup .cat-list-item a::after {

  background: none repeat scroll 0 0 #fff;

  content: "";

  height: 1px;

  border-bottom: 1px solid #ff9697;

  left: 0;

  opacity: 0;

  position: absolute;

  top: 100%;

  width: 100%;

  -webkit-transition: height 0.3s,opacity 0.3s,-webkit-transform 0.3s;

  transition: height 0.3s,opacity 0.3s,transform 0.3s;

  -webkit-transform: translateY(-5px);

  transform: translateY(-5px);

}

.search-popup .cat-list-item a:hover::after {

  height: 1px;

  opacity: 1;

  -webkit-transform: translateY(2px);

  transform: translateY(2px);

}

.search-popup .cat-list-item::after {

  content: "/";

  padding: 0 5px;

  line-height: 1;

  color: rgba(0, 0, 0, 0.5);

  vertical-align: text-top;

}

.search-popup .cat-list-item:last-child::after {

  display: none;

}



@media only screen and (max-width: 991px) {

  .search-popup .cat-list-item,

  .search-popup-form .form-control {

    font-size: 1.425em;

  }

}

@media only screen and (max-width: 767px) {

.search-popup .search-popup-close {

    top: 1em;

    right: 1em;

  }

}

@media only screen and (max-width: 575px) {

  .search-popup .cat-list-item,

  .search-popup-form .form-control {

    font-size: 1.125em;

  }

  .search-popup .search-popup-close {

    top: 1em;

    right: 1em;

  }

}



.search-popup input[type="search"] {

  font-size: 24px;

  height: 60px;

  padding: 26px;

}

.search-popup .search-form button {

  top: 12px;

  right: 15px;

}

.search-popup .search-form button svg {

  height: 28px;

  width: 28px;

}



/* nav tabs */

.nav-tabs .nav-link{

  color: var(--black-color);

}

:focus-visible {

  outline: none;

}



/* 4.1 Header

/*----------------------------------------------*/

.site-header {

  width: 100%;

  z-index: 10;

  transition: background 0.3s ease-out;

}

.navbar-toggler svg.navbar-icon {
  width: 35px;
  height: 35px;
}

.navbar-nav .nav-item a.nav-link {

  font-size: 0.7619em;

  font-weight: 600;

  letter-spacing: 0.09em;

  color: var(--black-color);

}

.navbar-nav .nav-item a.nav-link.active, 

.navbar-nav .nav-item a.nav-link:focus, 

.navbar-nav .nav-item a.nav-link:hover {

  color: var(--primary-color);

}

.modal {

  --bs-modal-zindex: 99999;

}

.modal-dialog {

  max-width: 360px;

  margin: auto;

  height: 100vh;

  display: flex;

  align-items: center;

}
#exampleModal {
  background-color: #00000069;
}
.modal-header.xclose{position: absolute;
  width: auto;
  right: 0;
  cursor: pointer;
  z-index: 9999;}
  .tab-content label {
    font-size: 15px;
  }
  .modal-content h2 {
    font-size: 1.3rem;
}
.dropdown-menu{

  --bs-dropdown-link-active-color: var(--primary-color);

  --bs-dropdown-link-active-bg: #F5F5F5;

  --bs-dropdown-zindex: 99999;

}

.dropdown-item.active, .dropdown-item:active {

  color: var(--bs-dropdown-link-active-color);

  text-decoration: none;

}

.cart-dropdown .dropdown-menu,

.wishlist-dropdown .dropdown-menu{

  min-width: 21rem;

}

.cart-dropdown.dropdown a::after,

.wishlist-dropdown.dropdown a::after{

  display: none;

}



@media only screen and (max-width: 500px) {

  .cart-dropdown .dropdown-menu,

  .wishlist-dropdown .dropdown-menu{

    min-width: fit-content;

  }

}



/*------------ Offcanvas -------------- */

#header-nav .navbar-toggler:focus {

  box-shadow: none;

}

#header-nav .offcanvas {

  transition: 0.5s ease-in-out;

}

#header-nav .offcanvas.show {

  z-index: 99999;

}

#header-nav .offcanvas-end {

  width: 500px;

}



/*------------ Top User Icons -----------*/

.site-header .user-items svg {

  width: 22px;

  height: 22px;

  cursor: pointer;

}



@media only screen and (max-width: 991px) {

  #navbar .user-items {

    display: none;

  }

}



/* 4.2 Billboard

/*----------------------------------------------*/

/*------------Swiper Arrow -----------*/

.swiper-next,

.swiper-prev{

  color: var(--black-color);

  z-index: 9999;

}

.swiper-button-disabled{

  color: var(--gray-color-500);

}



@media only screen and (max-width: 765px) {

  section#billboard {

      height: auto !important;

      padding-bottom: 30px;

  }

}



/* 4.3 Icon Box - Company Services

/*----------------------------------------------*/

.icon-box .icon-box-icon svg {

  width: 33px;

  height: 33px;

  fill: var(--primary-color);

}



@media only screen and (max-width: 991px) {

  #company-services .icon-box {

    flex-wrap: wrap;

  }

}



/* 4.4 Product

/*----------------------------------------------*/

.card-concern{

  text-align: center;

  bottom: 145px;

  display: flex;

  justify-content: center;

  cursor: pointer;

  text-transform: uppercase;

  transition: all 0.3s ease-out;

  opacity: 0;

}

.card-concern .btn{

  padding: 1.125rem;

}

.card-concern svg {

  width: 27px;

  height: 27px;

  cursor: pointer;

}

.card:hover .card-concern{

  bottom: 160px;

  opacity: 1;

}



/* 4.5 Items Listings

/*----------------------------------------------*/

#items-listing img{

  max-width: 80px;

  max-height: 90px;

}



/*------------Swiper Pagination -----------*/

.product-store .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {

  bottom: 35px;

}

.swiper-pagination span.swiper-pagination-bullet {

  width: 15px;

  height: 15px;

}



/* 4.6 Testimonial

/*----------------------------------------------*/

.rating svg.star {

  width: 16px;

  height: 16px;

}



/* 4.7 Brands

/*----------------------------------------------*/

#brands .brand-images img{

  filter: grayscale(100%);

  opacity: 0.5;

  transition: 0.3s ease-in-out;

}

#brands .brand-images a.brand:hover img{

  filter: grayscale(0%);

  opacity: 1;

}



/* 4.8 Instagram

/*----------------------------------------------*/

.instagram-item .icon-overlay {

  top: 0;

  bottom: 0;

  margin: auto;

  width: 100%;

  height: auto;

  color: var(--light-color);

  opacity: 0;

  transition: 0.9s ease-out;

}

.instagram-item:hover .icon-overlay {

  opacity: 1;

}



/* 4.9 Footer

/*----------------------------------------------*/

#footer .menu-list .menu-item a{

  font-size: 0.7619em;

  font-weight: 300;

  letter-spacing: 0.09em;

  color: var(--black-color);

}

#footer .menu-list .menu-item a:hover{

  color: var(--primary-color);

}

.social-links svg {

  width: 20px;

  height: 20px;

  transition: 0.3s ease-in-out;

  color: var(--light-gray-color);

}

.social-links svg:hover {

  color: var(--primary-color);

}

.social-links li {

  padding-right: 30px;

}



/*----------------------------------------------*/

/* 5. SITE STRUCTURE */

/*----------------------------------------------*/

/* ----------- Search Bar -----------*/

select#input-sort {

  border: none;

  padding: 0;

  text-align: right;

  cursor: pointer;

}



/* 5.1 Single Product Page

/*----------------------------------------------*/

.thumb-swiper .swiper-slide{

  height: auto;

}

.swiper-slide-thumb-active img{

  border: var(--bs-border-width) var(--bs-border-style) var(--primary-color) !important;

}

.product-info del{

  color: var(--gray-color-500);

}



/*---- Product Tabs ----------*/

.nav-tabs .nav-link {

  letter-spacing: 0.06em;

}

.nav-tabs .nav-link {

  background: none;

  border: none;

}

.nav-tabs button.nav-link.active {

  color: var(--primary-color);

  background: none;

}

.nav-tabs button.nav-link:hover {

  color: var(--primary-color);

}



@media screen and (max-width: 991px) {

  .product-tabs .review-item{

    width: 100%;

    flex-wrap: wrap;

  }

  .product-tabs .review-item .image-holder{

    margin-bottom: 10px;

  }

}



/* ============= ADDITIONAL ========================== */



.icon-box-icon img {

  max-width: 60px;

}

a.navbar-brand img {

  max-width: 182px;

}









.masthead {

  background-color: #f8f9fa;

  padding-top: 9.5rem;

  padding-bottom: 5rem;

}

.masthead .masthead-device-mockup {

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

}

.masthead .masthead-device-mockup .circle {

  position: absolute;

  fill: url(#circleGradient);

  width: 70%;

  display: none;

}

.masthead .masthead-device-mockup .circle .gradient-start-color {

  stop-color: #2937f0;

}

.masthead .masthead-device-mockup .circle .gradient-end-color {

  stop-color: #9f1ae2;

}

.masthead .masthead-device-mockup .shape-1 {

  position: absolute;

  height: 1rem;

  width: 1rem;

  transform: rotate(-10deg);

  fill: #2937f0;

  bottom: 15%;

  left: 10%;

}

.masthead .masthead-device-mockup .shape-2 {

  position: absolute;

  height: 0.75rem;

  width: 0.75rem;

  fill: #2937f0;

  top: 15%;

  right: 10%;

}

.masthead .masthead-device-mockup .device-wrapper {

  max-width: 10rem;

}

@media (min-width: 576px) {

  .masthead .masthead-device-mockup .circle {

    width: 70%;

    display: block;

  }

  .masthead .masthead-device-mockup .device-wrapper {

    max-width: 12.5rem;

  }

}

@media (min-width: 768px) {

  .masthead .masthead-device-mockup .circle {

    width: 60%;

  }

  .masthead .masthead-device-mockup .device-wrapper {

    max-width: 15rem;

  }

}

@media (min-width: 992px) {

  .masthead .masthead-device-mockup .circle {

    width: 90%;

  }

  .masthead .masthead-device-mockup .device-wrapper {

    max-width: 15rem;

  }

}

@media (min-width: 1200px) {

  .masthead .masthead-device-mockup .circle {

    width: 75%;

  }

  .masthead .masthead-device-mockup .device-wrapper {

    max-width: 15rem;

  }

}

@media (min-width: 1400px) {

  .masthead .masthead-device-mockup .circle {

    width: 70%;

  }

  .masthead .masthead-device-mockup .device-wrapper {

    max-width: 17rem;

  }

}



.device-wrapper {

  max-width: 300px;

  width: 100%;

}



.device {

  position: relative;

  background-size: cover;

}



.device::after {

  position: absolute;

  background-size: cover;

  width: 100%;

  height: 100%;

  pointer-events: none;

}



.device .screen {

  position: absolute;

  background-size: cover;

  pointer-events: auto;

}



.device .button {

  position: absolute;

  cursor: pointer;

}



.device[data-device=iPhoneX][data-orientation=portrait][data-color=black] {

  padding-bottom: 198.898071625%;

}



.device[data-device=iPhoneX][data-orientation=portrait][data-color=black] .screen {

  top: 3.1855955679%;

  left: 6.8870523416%;

  width: 86.2258953168%;

  height: 93.6288088643%;

}



.device[data-device=iPhoneX][data-orientation=portrait][data-color=black] .button {

  display: none;

  top: 0%;

  left: 0%;

  width: 100%;

  height: 100%;

}



.device[data-device=iPhoneX][data-orientation=portrait][data-color=black]::after {

  content: "";

  background-image: url("images/portrait_black.png");

  left: 0;

}





@media(max-width:600px){

  .image-holder img {

    max-width: 270px;

}

#billboard .mt-5 {

  margin-top: 10px !important;

}

.icon-box.d-flex {

  justify-content: center;

  text-align: center;

}

.section-title h3 {

  justify-content: center;

}

.section-title {

  text-align: center;

}

.padding-large {

  padding-top: 3em;

  padding-bottom: 3em;

}

.footer-menu img {

  max-width: 250px;

}

#billboard {

  align-items: start !important;

  padding-top: 30px;

}

}
@media(max-width:767px){
  section#customers-reviews {
    height: auto !important;
}
}
@media(max-width:400px){
  .modal-dialog {
    max-width: 325px;
    margin: auto;
    height: 100vh;
    display: flex;
    align-items: center;
}
}


.col-form-label {
  margin-bottom: 0;
  font-size: 15px;
}
section.generate-ev.section {
  background-color: #b6d8e9;
}
.primary-btn.btn-link {
  background-color: transparent;
  border: 1px solid #f86d72;
  color: #f86d72;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  padding: 3px 18px !important;
  margin-top: 7px;
  margin-bottom: 8px;
}
.generate-ev .form-control {
  padding: 0.6rem;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.01rem;
  line-height: normal;
}
section.generate-ev .card-title {
  font-weight: 800;
  color: #e5585d;
  padding-top: 10px;
  padding-bottom: 5px;
}
.radio-buttons{width:100%;margin:0 auto;text-align:center}
.custom-radio input{display:none}
.radio-btn{margin:10px;width:220px;height:240px;border:3px solid transparent;display:inline-block;border-radius:10px;position:relative;text-align:center;box-shadow:0 0 20px #c3c3c367;cursor:pointer}
.radio-btn > i{color:#fff;background-color:#e5585d;font-size:20px;position:absolute;top:-15px;left:50%;transform:translateX(-50%) scale(2);border-radius:50px;padding:3px;transition:.5s;pointer-events:none;opacity:0}
.radio-btn .hobbies-icon{width:150px;height:150px;position:absolute;top:40%;left:50%;transform:translate(-50%,-50%)}
.radio-btn .hobbies-icon img{display:block;width:100%;margin-bottom:20px}
.radio-btn .hobbies-icon i{color:#e5585d;line-height:80px;font-size:60px}
.radio-btn .hobbies-icon h3 {
  color: #660004;
  font-size: 17px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.custom-radio input:checked + .radio-btn{border:2px solid #e5585d}
.custom-radio input:checked + .radio-btn > i{opacity:1;transform:translateX(-50%) scale(1)}





.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.step-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: var(--prm-gray);
  transition: .4s;
}

.step-button[aria-expanded="true"] {
  width: 60px;
  height: 60px;
  background-color: var(--prm-color);
  color: #fff;
}

.done {
  background-color: var(--prm-color);
  color: #fff;
}

.step-item {
  z-index: 10;
  text-align: center;
}

#progress {
-webkit-appearance:none;
  position: absolute;
  width: 95%;
  z-index: 5;
  height: 10px;
  margin-left: 18px;
  margin-bottom: 18px;
}

/* to customize progress bar */
#progress::-webkit-progress-value {
  background-color: var(--prm-color);
  transition: .5s ease;
}

#progress::-webkit-progress-bar {
  background-color: var(--prm-gray);

}