@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mukta:wght@200;300;400;500;600;700;800&family=Ovo&display=swap');


/***********************************
            SCROLL BAR
************************************/
*, html{
    scroll-behavior: smooth;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    height: 12px;
    width: 2px;
    min-width:2px;
    max-width:2px;
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
    -webkit-box-shadow: 0px 1px 2px var(--dark);
}

::-webkit-scrollbar-corner {
    background: var(--dark);
}


:root {
    --title_font:"Montserrat", sans-serif;
    --default_font:"Mukta", sans-serif;
    --styled_font:"Ovo", serif;
    --font-size: 0.8em;
    --bg1: #f5f8f7;
    --blue: #3498db;
    --green: #2ecc71;
    --purple: #9b59b6;
    --gold: #f1c40f;
    --red: #e74c3c;
    --orange: #e67e22;
    --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
    --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
    --offwhite1: rgba(255,255,255,.4);
    --offwhite2: rgba(255,255,255,.7);
    --white:#fff;
    --black:#050506;
    --dark:#050506;
    --gray:#4d5156;
    --lite:#e3e3e3;
    --primary:#9cec31;
    --primary:#efcc80;
    --primary:#ffcc02;
}







.card .btn {
  --btn-color1: #e4003c;
  --btn-color: #b6b6b6;
  --btn-hover-color: #fff;
  --btn-bg: transparent;
  --btn-hover-bg: var(--btn-color1);
  position: relative;
  padding: 1em 1.875em;
  box-shadow: 0 0 0 0.0625em var(--btn-color) inset;
  border: 0;
  border-radius: 0.25em;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--btn-bg);
  color: var(--btn-color);
  cursor: pointer;
  transition: 0.225s ease-in-out;
  transition-property: box-shadow, background-color, color;
  display: inline-block;
}
.btn:focus-visible {
  box-shadow: none;
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-color);
}
@media (min-width: 48em) {
  .btn:hover {
    box-shadow: none;
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-color);
  }
}

.ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ripple-item {
  position: absolute;
  display: block;
  border-radius: 50%;
  background-color: currentColor;
  -webkit-animation: ripple-grow 0.65s ease-in-out forwards;
          animation: ripple-grow 0.65s ease-in-out forwards;
}

@-webkit-keyframes ripple-grow {
  from {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}

@keyframes ripple-grow {
  from {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}





main {
  padding: 5vw 2vw 2vw 2vw;
}
main ul{
    margin: 0 !important;
}
ul.infoGraphic {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 25em;
/*   background: var(--bg1); */
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
    list-style: none;
}
ul.infoGraphic li .numberWrap {
  position: absolute;
}
ul.infoGraphic li .number {
  font-family: "maven pro", sans-serif;
  font-size: 13em;
  font-weight: 900;
  width: 0.9em;
  text-align: center;
}
ul.infoGraphic li .number.fontColor1 {
  color: var(--offwhite1);
}
ul.infoGraphic li .number.fontColor2 {
  color: var(--offwhite2);
}
ul.infoGraphic li .number.fontColor3 {
  color: var(--white);
}

ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -1em;
  top: 2em;
}
ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: var(--bg1);
    background: #050506;
  width: 19em;
  height: 7em;
  border-radius: 10% 10% 0 0;
  border-bottom: 3px solid rgba(245,248,247,0.17);
  transition: all 0.4s;
}
ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px/10px;
  z-index: -1;
}
ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}
ul.infoGraphic li .content {
  margin: 8em 3em 1em 7em;
  position: relative;
}
ul.infoGraphic li .content h2 {
  font-size: 1.36em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
    color: #fff;
}
ul.infoGraphic li .content p {
  line-height: 1.5em;
}

/* ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
} */

.icon {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  top: -1.3em;
  left: 50%;
  transform: translatex(-50%);
}
.icon:before {
  color: #666;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.iconCodepen:before {
  content: "👁";
}

.iconSocial:before {
  content: "$";
}

.iconAirplane:before {
  content: "🕭";
}












.btn-shine {
/*   position: absolute; */
/*   top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  padding: 12px 48px;
  color: #fff;
  background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 900;
  font-size:20px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 100%;
  }
  100% {
    background-position: 200px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 100%;
  }
  100% {
    background-position: 200px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 100%;
  }
  100% {
    background-position: 200px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 100%;
  }
  100% {
    background-position: 200px;
  }
}





/***********************************
              DEFAULT
************************************/
body{
    margin:0;
    overflow-x:hidden !important;
    font-family: var(--default_font);
}

a{
    text-decoration:none !important;
    min-width: fit-content;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
}

a, button{
    transition:0.5s;
}

figure{
    padding:0;
    margin:0;
}

figure img{
    width:100%;
}

a, p, .btn{
    color:inherit;
}

a, button, input, textarea, select{
    outline:none !important;
}

fieldset{
    border:0;
}

h1, h2, h3, h4, h5, h6{
    margin:0;
}

.title, .sub_title{
    font-family:var(--title_font);
}

.flex, .fixed_flex{
    display:flex;
}

.flex_content{
    width:100%;
}

.grid{
    display:grid;
}

.padding_1{
    padding:1rem;
}

.padding_2{
    padding:2rem;
}

.padding_3{
    padding:3rem;
}

.padding_4{
    padding:4rem;
}

.big{
    font-size:3.5em;
}

.medium{
    font-size:2em;
}

.small{
    font-size:1.3em;
}

.relative{
    position:relative;
}

.styled_font{
    font-family:var(--styled_font);
}

.btn{
    text-align:center;
    border:1px solid inherit;
    background-color:inherit;
    color:inherit;
    position:relative;
}

.link-tag{
    position:relative;
}

.link-tag:before{
    content:"\f0da";
    font-family:"FontAwesome";
    margin-right:5px;
    transition:0.5s;
    color:var(--primary);
}

.link-tag:hover:before{
    margin-right:10px;
    color:var(--black);
}

.link-tag:hover{
    color:var(--primary);
}

@media (max-width:920px){
    .flex{
        flex-wrap:wrap;
    }
    
    .padding_1, .padding_2, .padding_3, .padding_4{
        padding:1rem;
    }
    
    .big{
        font-size:1.8em;
    }
    
    .medium{
        font-size:1.6em;
    }
    
    .small{
        font-size:1.1em;
    }
}

@media (max-width:520px){
    .big{
        font-size:1.4em;
    }
    
    .medium{
        font-size:1.3em;
    }
}

@media (max-width:420px){
    .big{
        font-size:1.2em;
    }
    
    .medium{
        font-size:1.1em;
    }
    
    .small{
        font-size:1.1em;
    }
}




/***********************************
            DEFAULT
************************************/
body{
    background-color:var(--dark);
    color:var(--white);
}

a, p, .btn{
    font-size:15px;
}



em{
    color:var(--primary);
    font-style:normal;
}

.title, .sub_title{
    letter-spacing:2px;
}

.title, .sub_title, strong, b{
    font-weight:300;
}

.logo{
    align-items:center;
}

.logo img{
    max-width: 160px;
    margin: 0 auto;
}
.btn_1{
    color:var(--primary);
    padding:0;
    padding-right:1rem;
}

 .btn_1:after{
    content:"";
    position:absolute;
}

/* .btn_1:before{
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background-color:var(--primary);
} */

.btn_1:after{
    content:"\f062";
    font-family:"FontAwesome";
    right:-0.2rem;
    top:50%;
    transform:translate(0, -50%) rotate(30deg);
    transition:0.5s;
    color:var(--primary);
}

.btn_1:hover{
    color:var(--white);
}

.btn_1:hover:after{
    transform:translate(0, -50%) rotate(90deg);
}

.btn_2{
    background-color:var(--dark);
    color:var(--primary);
    padding:0.6rem 4rem;
    padding-left:1.5rem;
    border-radius:40px;
}

.btn_2:after{
    content:"\f062";
    font-family:"FontAwesome";
    width:35px;
    height:35px;
    display:flex;
    align-items:Center;
    justify-content:center;
    background-color:var(--primary);
    color:var(--dark);
    border-radius:50%;
    right:0.1rem;
    top:50%;
    position:absolute;
    transform:translate(-0.2rem, -50%) rotate(30deg);
    transition:0.5s;
}

.btn_2:hover{
    color:var(--white);
}

.btn_2:hover:after{
    transform:translate(-0.2rem, -50%) rotate(90deg);
}

@media (max-width:920px){
    a, p, .btn{
        font-size:12px;
    }
    
    .btn_2:after{
        transform:translate(-0.1rem, -50%) rotate(90deg);
    }
    
    .btn_2:hover:after{
        transform:translate(-0.1rem, -50%) rotate(90deg);
    }
}


/***********************************
                NAV
************************************/
.head-nav{
    align-items:center;
    justify-content:space-between;
    padding:1rem 3rem;
    position: fixed;
    z-index: 99;
    width: 100%;
    background: linear-gradient(0deg, rgba(1,1,1,0) 0%, rgba(0,0,0,1) 100%);
}

.ham{
    position:relative;
    width:50px;
    height:20px;
    z-index:99;
    cursor:default;
    opacity:0.6;
}

.ham:hover{
    opacity:1;
}

.ham span{
    position:absolute;
    width:100%;
    height:2px;
    top:50%;
    left:50%;
    border-radius:10px;
    background-color:var(--white);
    transform:translate(-50%, -50%);
    transition:0.5s;
}

.ham:before, .ham:after{
    transition:0.5s;
}

.ham:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:50%;
    height:2px;
    background-color:var(--white);
}

.ham:after{
    content:"";
    position:absolute;
    bottom:0;
    right:0;
    width:50%;
    height:2px;
    background-color:var(--white);
}

.ham_animator{
    opacity:1;
}

.ham_animator:after, .ham_animator:before{
    width:100%;
}

.ham_animator span{
    width:10px;
    height:10px;
    background-color:var(--primary);
    animation:5s move-in infinite linear;
}

.ham_animator span:after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translate(-50%, 0);
    width:5px;
    height:5px;
    border-radius:50%;
    background-color:var(--dark);
}

@media (max-width:920px){
    .head-nav{
        padding:1rem;
    }
    
    .head-nav .btn{
        display:none;
    }
    
    .head-nav .ham{
        order:1;
        width:40px;
    }
    
    .head-nav .logo{
        order:2;
    }
    .head-nav .logo img{
      min-width: 90px;
      width: 70%;
    }
    .cart-icon{
      order: 3;
    }
}


/***********************************
               MENU
************************************/
menu{
    margin:0;
    padding:0;
    position:fixed;
    right:-100%;
    overflow:hidden !important;
    top:0;
    width:400px;
    height:100vh;
    background-color:var(--dark);
    z-index:99;
    transition:0.5s;
}

@media (max-width:920px){
    menu{
        width:70vw;
    }
}



/***********************************
               HEADER
************************************/
header{
    align-items:center;
}

header article .title{
    white-space:nowrap;
}

header article .title strong{
    opacity:0.6;
    display:block;
}

header article p{
    font-weight:200;
    opacity:0.7;
}

header section{
    width:40%;
    align-items:center;
    justify-content:center;
    text-align:center;
}

@media (max-width:1280px){
    .rotater{
        width:180px;
        height:180px;
    }
}

@media (max-width:1140px){
    .rotater{
        display:none;
    }
}


/***********************************
            ADDITIONAL
************************************/
.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100%;
    background-color:rgba(1,1,1,0.6);
    z-index:9;
}



























img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
/* ============ Full Page Slider ================= */
.creative-fullpage--slider{
	background-color: #ffffff;
	z-index: 2;
	width: 100%;
	position: relative;
	flex-direction: column;
	height: 120vh;
	font-size: 16px;
	display: flex;
	clip-path: none !important;
}
.creative-fullpage--slider .slider-inner {
	background: #000;
	height: 120vh;
	position: relative;
}
.creative-fullpage--slider .swiper-slide {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: left;
	flex-direction: column;
	overflow: hidden;
}
.creative-fullpage--slider .swiper-slide .slider-inner img 
{
	object-fit: cover;
	width: 100%;
	height: 120vh;
}
.creative-fullpage--slider .swiper-slide .slider-inner video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
	position: absolute;
	top: 30%;
	left: 50px;
	z-index: 1;
}
.creative-fullpage--slider .swiper-slide .slider-inner::after {
	content: "";
	position: absolute;
	width: 101%;
	height: 100%;
	top: 0;
	left: -1px;
	background-color: transparent;
	background-image: radial-gradient(at center right, #FFFFFF00 50%, #00000096 100%);
}
.swiper-slide .slider-inner .swiper-content .title-area .tag {
	color: #ffffff;
	font-weight: 900;
	font-size: 24px;
	margin-bottom: 10px;
	margin-top: 0px;
}
.swiper-slide .slider-inner .swiper-content .title-area .title {
	margin-top: 50px;
	color: #fff;
	font-size: 6vw;
	font-family: "Inter", sans-serif;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: 50px;
	margin-left: -12px;
	text-decoration: none;
}
.swiper-slide .slider-inner .swiper-content p.disc {
	font-size: 23px;
	width: 100%;
	margin-top: 15px;
	margin: 20px 0px 40px 0px;
	font-weight: 400;
	line-height: 32px;
	color: #FFFF;
}
.creative-btn--wrap .creative-slide--btn {
	color: #ffffff;
	margin-left: 18px;
	font-size: 1.4em;
	transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
	font-weight: 400;
	display: inline-flex;
	position: relative;
	white-space: nowrap;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	user-select: none;
	outline: none;
	outline-color: transparent;
	box-shadow: none;
	will-change: transform;
	backface-visibility: hidden;
}

.creative-btn--circle .circle {
	position: absolute;
	right: calc(100% - 10px);
	top: 0;
	bottom: 0;
	margin: auto;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	clip-path: circle(25% at 50% 50%);
	transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle .circle-fill {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 100%;
	background-color: #ffffff;
	will-change: transform;
	transform: scale(0);
	z-index: 1;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon {
	transform: translate(-100%, 0%);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	z-index: 2;
	transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon .icon-arrow{
	width: 20px;
	height: 20px;
	stroke: none;
	fill: #000;
}
.creative-btn--circle .circle-outline {
	fill: transparent;
	width: 10px;
	stroke: #ffffff;
}
.creative-btn--wrap .creative-slide--btn .creative-btn--label {
	margin-left: 4pt;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn .creative-btn__border {
	position: absolute;
	left: 4pt;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform-origin: right;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
	transform: translateX(18px);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
	transform: scale(0, 1);
}
.creative-btn--wrap .creative-slide--btn:hover{
	margin-left: 38px !important;
}
.creative-btn--wrap .creative-slide--btn:hover .circle {
	clip-path: circle(50% at 50% 50%);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
	transform: scale(1, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
	transform: translate(0%, 0%);
	opacity: 1;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next, 
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
	bottom: 5%;
	top: unset;
	transform: scale(1);
	transition: all 0.4s;
	background-color: #FFFFFF00;
	backdrop-filter: blur(20px);
	height: 85px;
	width: 85px;
	line-height: 85px;
	border-radius: 50%;
	transition: all 0.4s;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next {
	right: 50px;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
	left: 50px;
}
.swiper-container-h .slider-pagination-area {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: unset;
	right: unset;
	bottom: 80px;
	left: 50% !important;
	transform: translateX(-50%);
	width: 500px;
	z-index: 1;
}
.swiper-container-h .slider-pagination-area .slide-range {
	font-size: 16px;
	font-weight: 500;
	margin: 0 15px;
	color: #ffffff;
	line-height: 0;
	position: absolute;
	font-size: 20px;
}
.swiper-container-h .slider-pagination-area .slide-range.one {
	left: -50px;
}
.swiper-container-h .slider-pagination-area .slide-range.three {
	right: -50px;
}
.swiper-container-h .slider-pagination-area .swiper-pagination {
	bottom: 0 !important;
	width: 500px !important;
}
.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
	background: #ffffff;
}
.swiper-container-h .swiper-button-next::after {
	content: "\f061";
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	background: none;
	color: #ffffff;
	font-size: 60px;
}
.swiper-container-h .swiper-button-prev::after {
	content:"\f060";
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	background: none;
	color: #ffffff;
	font-size: 60px;
}
.swiper-container-h .swiper-button-next:hover, 
.swiper-container-h .swiper-button-prev:hover {
	background: #FFFFFF0D;
}


/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
	.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content{
		width: 100%;
		text-align: center;
		left: 0;
	}
	.creative-fullpage--slider .swiper-container-h .swiper-button-next, 
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
		height: 50px;
		width: 50px;
		line-height: 50px;
	}
	.swiper-container-h .slider-pagination-area{
		width: 200px !important;
	}
	.swiper-container-h .swiper-button-next::after, 
	.swiper-container-h .swiper-button-prev::after {
		font-size: 30px;
	}
	.creative-fullpage--slider .swiper-container-h .swiper-button-next, 
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev{
		background: #ffffff3b;
	}
	.swiper-container-h .slider-pagination-area .swiper-pagination {
		bottom: 0 !important;
		width: 200px !important;
	}
}

.top-box{
	flex-wrap: wrap;
    justify-content:center;
}
.top-box .card-title{
	text-align:center;
}
.card-description .hl{
	margin-top:0 !important;
}
/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
	.swiper-slide .slider-inner .swiper-content .title-area .title {
		font-size: 64px;
	}
	.swiper-slide .slider-inner .swiper-content .title-area .tag{
		margin-bottom: 0px;
	}
	.swiper-slide .slider-inner .swiper-content p.disc{
		    margin: 20px auto 20px auto;
    font-size: 16px;
    width:95%;
	}
	.swiper-container-h .slider-pagination-area{
		display: none;
	}
	.swiper-slide .slider-inner .swiper-content p.disc br{
		display: none;
	}
}























/* Hero section */
.hero-section2 {
  padding: 2rem 0;
}

.hero-section_title {
  font-size: clamp(1rem, 2vw, 2rem);
  line-height: 1.2;
  text-align: center;
  color: rgba(255,255,255,1);
  font-weight: 900;
  font-family: "Inter", sans-serif;
  padding-top: 7rem;
  margin-bottom:30px;
}

.hero-section_title span{
    color: var(--primary);
    font-size: clamp(3rem, 7vw, 4.5rem);
    text-transform: uppercase;
}

.hero-section_title .quoted-text {
  color: var(--base-lighter);
}

.hero-section_cards {
  padding: 7rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.hero-section_card {
  min-height: 450px;
  border-radius: 12px;
}

.hero-section_card_content {
  padding: 1.6rem;
}

.hero-section_card_title {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 1.6rem;
}

.hero-section_card.card-1 {
  background: linear-gradient(to top, RGBA(0,0,0,0.2), RGBA(0,0,0,0.8)), url('https://img.freepik.com/free-photo/geometric-vintage-retro-background-ai-generated-image_511042-624.jpg?t=st=1716023167~exp=1716026767~hmac=4fef57bb9a0a07952db1ea795cbd17c7aea316508a4eae2038ab8f2efced6bea&w=1800');
  background-position: left;
}
.hero-section_card.card-2 {
   background: linear-gradient(to top, RGBA(0,0,0,0.2), RGBA(0,0,0,0.8)), url('https://img.freepik.com/premium-photo/man-solid-color-background-with-smile-facial-expression-ai-generated-artwork_781958-2551.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-section_card.card-3 {
  background: linear-gradient(to top, RGBA(0,0,0,0.2), RGBA(0,0,0,0.8)), url('https://img.freepik.com/free-photo/abstract-futuristic-background-with-3d-design_1361-3532.jpg?t=st=1716023184~exp=1716026784~hmac=1025df8aa1c270ac44093fa3d242c7d8231b910cd23fd2459ab6398293dee0c0&w=1380');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-section_card.card-4 {
  background: linear-gradient(to top, RGBA(0,0,0,0.2), RGBA(0,0,0,0.8)), url('https://img.freepik.com/free-vector/branch-with-leaves_1182-560.jpg?t=st=1716023240~exp=1716026840~hmac=7184a7b2faaf9023111c8d8a6be0e89222903b69054c26f93da2e70168fa70e9&w=900');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}






















.container {
  width: 1200px !important;
  padding: 0 !important;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 992px) and (max-width: 1439px) {
  .container {
    max-width: 1279px !important;
    padding: 0 !important;
    margin: 0 80px !important;
    width: auto !important;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 959px !important;
    margin: 0 16px !important;
    padding: 0 !important;
    width: auto !important;
  }
}

.gradient-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 30px;
}
@media screen and (max-width: 991px) {
  .gradient-cards {
    grid-template-columns: 1fr;
  }
}

.container-title {
  text-align: center;
  padding: 0 !important;
  margin-bottom: 40px;
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 60px;
}


.top-box{
    display: flex;
}
.top-box img{
    max-width: 110px;
    max-height: 35px;
    height: 35px;
}
.card {
  max-width: 550px;
  border: 0;
  width: 100%;
  margin-inline: auto;
}

.container-card {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(71deg, #080509, #1a171c, #080509);
  background-clip: padding-box;
  border-radius: 45px;
  padding: 40px;
}
.container-card img {
  margin-bottom: 32px;
}

.bg-green-box,
.bg-white-box,
.bg-yellow-box,
.bg-blue-box {
  position: relative;
}

.bg-green-box::after,
.bg-white-box::after,
.bg-yellow-box::after,
.bg-blue-box::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  content: "";
  z-index: -1;
  border-radius: 45px;
}

.bg-green-box::after {
  background: linear-gradient(71deg, #0d1212, #a4a882, #0d1212);
}

.bg-white-box::after {
  background: linear-gradient(71deg, #121013, #b0afb0, #121013);
}

.bg-yellow-box::after {
  background: linear-gradient(71deg, #110e0e, #afa220, #110e0e);
}

.bg-blue-box::after {
  background: linear-gradient(71deg, #0c0a0e, #5f6fad, #0c0a0e);
}

.card-title {
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 30px;
  padding-bottom: 8px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  margin: 0;
  margin-left: 20px;
}

.card-description {
  font-weight: 600;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  max-width: 470px;
}

@media (max-width:550px){
    .top-box{
        display: block;
    }
    .card-title{
        margin: 0 !important;
    }
}
















.container {
	max-width: 1200px;
	width: 100%;
	padding: 0px 15px;
	margin: auto;
}

/**Typeo CSS End**/
.faq-title {
	text-align: center;
	font-size: 45px;
    font-weight: 900;
    font-family: "Inter", sans-serif;
    color: rgb(255,255,255);
    margin: 6rem 0 3rem;
}

.faq-group {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
}

.faq-group .faq-left {
	width: 38%;
}

.faq-group .faq-right {
	width: 58%;
	border-left: rgba(204,204,204,0.2) 1px solid;
	padding-left: 30px;
	margin-left: 4%;
}

.faq-group h3 {
	font-size: 24px;
	margin: 35px 0 15px 0;
    color: #fff;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-weight: 900;
}

.faq-group h3:first-child {
	margin-top: 0px;
}
.faq-btns {
 margin-bottom: 40px;
}
.faq-btn {
	width: 100%;
	display: inline-block;
	border: #000 1px solid;
	border-radius: 4px;
	text-align: center;
	margin: 10px 0;
	background-color: #fff;
	padding: 14px;
	text-decoration: none;
	color: #c4c4c4;
	transition: 0.5s all;
}

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

.faq-item {
	width: 100%;
	margin: 7px 0px;
	border-bottom: rgba(235,235,235,0.23) 1px solid;
}

.faq-item .faq-label {
	position: relative;
	width: 100%;
	padding: 12px 26px 12px 0px;
    font-family: "Inter", sans-serif;
	cursor: pointer;
	font-size: 16px;
	color: rgba(224,224,224,0.75);
    font-weight: 800;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
}

.faq-item .faq-label i {
	width: 18px;
	height: 100%;
	position: absolute;
	right: 0px;
	top: 0px;
}

.faq-item .faq-label i:before {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 18px;
	height: 2px;
	background-color: #000;
}

.faq-item .faq-label i:after {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 2px;
	height: 18px;
	background-color: #000;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
}

.faq-item.faq-item-show .faq-label i:after {
	opacity: 0;
}

.faq-cont {
	transition: 0.3s all;
	overflow: hidden;
	height: 0px;
}

.faq-item.faq-item-show  .faq-cont {
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	overflow: auto;
	height: auto;
}

.faq-cont p {
	margin: 0px 0 20px 0;
    color: rgba(255,255,255,0.58);
}

.faq-cont p:last-child {
	margin-bottom: 0px;
}

@media(max-width:992px) {
	.faq-group .faq-left{
  width: 100%;
 }
.faq-group .faq-right {
 width: 100%;
 border-left: none;
 padding-left: 0;
 margin-left: 0;
}
}	
















.testimonials{position: relative;background-repeat: no-repeat;background-size: cover;padding:50px 0;margin-top: 4em;}
.testimonials::before{content:'';position: absolute;right:0;left:0;top:0;bottom:0;background: rgba(255,216,50,.55);}
.testimonials .title {text-align: center;margin-bottom: 50px;position: relative;padding: 20px 0;max-width: 600px;margin: 0 auto;}
.testimonials .title h5 {color: #e4003c;line-height: 1.2em;font-size: 18px;font-weight: 900;margin-bottom: -3px;text-transform: uppercase;}
.testimonials .title h2 {color: #000000;line-height: 1.2em;font-weight: 900;font-size: 41px;letter-spacing: -1px;margin:0}
.testimonials .title img {margin-top: -10px;}
.testimonials .title p {margin: 0 0 10px;margin-bottom: 0;color: #000000;}
.testimonials .testi .item {background: #fff;padding: 50px 30px;border-radius:15px;}
.testimonials .testi .item .profile {display:flex;padding-left: 15px;}
.testimonials .testi .item .profile img {border-radius: 100%;width:50px;height:50px;object-fit:cover}
.testimonials .testi .item .profile .information {padding-left:20px;margin-bottom:15px}
.testimonials .testi .item .profile .information .stars i {color:#ffd832}
.testimonials .testi .item .profile .information p {font-size: 24px;margin: 0px auto 0px;color: #000000;font-weight: 900;line-height: 1;}
.testimonials .testi .item .profile .information span {color: #e4003c;font-weight: bold;margin-top: -4px;line-height: 1.6em;font-size: 14px;}
.testimonials .testi .item>p {margin-bottom: 15px;font-size: 16px;line-height: 1.6em;display: block;z-index: 2;font-style: italic;color: #000000;text-align: center;}
.testimonials .testi .item .icon {text-align: center;}
.testimonials .testi .item .icon i {font-size: 32px;color: #FFD832;}


/*BACK TO TOP BTN*/
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #222;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}
.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}
.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.m-backtotop > div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}
.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}


/*FOOTER*/

.footer-html-inner{
  display: none;
}
.custom-footer{
  display:flex;
  justify-content: center;
  color: #ffffff77;
  font-size: 12px;
  padding-bottom: 20px;
  padding-top: 20px;
  background: #000;
}

/*CART*/
.cart-icon {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #b2b2b2;
}
.cart-icon:hover, .cart-icon:visited{
  opacity: .9;
  color: #b2b2b2;
}
.cart-icon .dashicons-cart {
  font-size: 29px;
}

.cart-icon .cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: #e4003c;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-weight: 900;
}

/*MODAL*/
button {
  /* margin: 0.75rem;
  padding: 0.25rem; */
  cursor: pointer;
}

/* Modals */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}
.modal.modal-show {
  animation: fadeIn 0.1s ease-in-out forwards;
}
.modal.modal-hide {
  animation: fadeOut 0.1s ease-in-out 0.1s forwards;
}
.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% 2rem 2rem;
  padding: 2rem;
  border-radius: 0.25rem;
  width: 50%;
  max-height: 75%;
  overflow: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.modal.modal-show .modal-content {
  animation: fadeInDown 0.3s ease-in-out forwards;
}
.modal.modal-hide .modal-content {
  animation: fadeOutUp 0.2s ease-in-out forwards;
}
.modal-content h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.modal-content p {
  margin: 1rem 0;
  line-height: 1.5rem;
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.75rem;
  font-weight: bold;
  padding: 0 0.75rem;
  color: rgba(0,0,0,0.2);
  cursor: pointer;
  user-select: none;
}
.modal-close:hover, .modal-close:focus {
  color: rgba(0,0,0,0.5);
}

.modal:nth-of-type(2) {
  justify-content: initial;
  align-items: initial;
  background-color: transparent;
}
.modal:nth-of-type(2) .modal-content {
  margin: 0;
  padding: 2rem 5rem;
  border-radius: 0;
  box-shadow: initial;
  width: 100%;
  height: 100%;
  max-height: 100%;
  text-align: justify;
}
.modal:nth-of-type(2) .modal-close {
  font-size: 3rem;
  padding: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal:nth-of-type(2).modal-show {
  animation: none;
}
.modal:nth-of-type(2).modal-hide {
  animation: none;
}
.modal:nth-of-type(2).modal-show .modal-content {
  animation: zoomIn 0.3s ease-in-out forwards; 
}
.modal:nth-of-type(2).modal-hide .modal-content {
  animation: zoomOut 0.2s ease-in-out forwards;
}

.modal:nth-of-type(3) {
  justify-content: flex-end;
  align-items: flex-end;
  background-color: transparent;
  overflow: hidden;
}
.modal:nth-of-type(3).modal-show {
  animation: none;
}
.modal:nth-of-type(3).modal-hide {
  animation: none;
}
.modal:nth-of-type(3).modal-show .modal-content {
  animation: fadeInLeft 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; 
}
.modal:nth-of-type(3).modal-hide .modal-content {
  animation: fadeOutRight 0.2s ease-in-out forwards;
}

.modal:nth-of-type(4) .modal-content {
  padding: 0;
}
.modal:nth-of-type(4) .modal-header, .modal:nth-of-type(4) .modal-footer  {
  background-color: steelblue;
  padding: 1rem;
  color: #fff;
  text-align: center;
}
.modal:nth-of-type(4) .modal-header h1 {
  margin: 0;
}
.modal:nth-of-type(4) .modal-body {
  padding: 1.25rem;
}
.modal:nth-of-type(4) .modal-close {
  color: rgba(255,255,255,0.5);
}
.modal:nth-of-type(4) .modal-close:hover, .modal:nth-of-type(4) .modal-close:focus {
  color: rgba(255,255,255,0.75);
}

.modal:nth-of-type(5) {
  justify-content: center;
  align-items: center;
}
.modal:nth-of-type(5) .modal-content {
  padding: 0;
  height: 80%;
  max-height: 80%;
  width: auto;
  max-width: 80%;
  overflow: visible;
  border: 3px solid #fff;
}
.modal:nth-of-type(5) .modal-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;  
}
.modal:nth-of-type(5) .modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 3rem;
  height: 3rem;
  font-size: 3rem;
  top: -1.5rem;
  right: -1.5rem;
  border-radius: 50%;
  color: #111;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.2);
}
.modal:nth-of-type(5) .modal-close:hover, .modal:nth-of-type(5) .modal-close:focus {
  color: #111; /* color: rgba(255,0,0,0.5); */
}
.modal:nth-of-type(5).modal-show .modal-content {
  animation: zoomIn 0.3s ease-in-out forwards;
}
.modal:nth-of-type(5).modal-hide .modal-content {
  animation: zoomOut 0.2s ease-in-out forwards;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0); 
  }
}
@keyframes fadeOutUp {
  0% { 
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-3rem);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0); 
  }
}
@keyframes fadeOutRight {
  0% { 
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Responsiveness */
@media(max-width: 992px) {
  html { font-size: 14px; }
  .modal-content { width: 80%; }
}
@media(max-width:767px) {
  html { font-size: 12px; }
  .modal-content { padding: 2rem 1rem 1rem 1rem; width: 90%; }
  .modal-content h1 { margin-bottom: 1.5rem; }
  .modal:nth-of-type(2) .modal-content { padding: 2rem 3rem; }
  .modal:nth-of-type(3) { justify-content: center; }
  .modal:nth-of-type(3) .modal-content { width: 80%; }
  .modal:nth-of-type(5) .modal-content { max-width: 85%; }
}






.top-box{
    align-items: center !important;
}
.read-more{
    display: flex;
    justify-content: center;
    padding-top: 80px;
}
.read-more .btn{
/*     --btn-color1: #e4003c; */
/*     --btn-color: #b6b6b6; */
    --btn-hover-color: #fff;
    --btn-bg: transparent;
    --btn-hover-bg: var(--btn-color1);
    position: relative;
    padding: 1em 1.875em;
    box-shadow: 0 0 0 0.0625em var(--btn-color) inset;
    border: 2px solid;
    border-radius: 0.25em;
    font-weight: 900;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--btn-color1);
    color: var(--btn-hover-color);
    cursor: pointer;
    transition: 0.225s ease-in-out;
    transition-property: box-shadow, background-color, color;
    display: inline-block;
    border-color: #820606 !important;
}







.card .price {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}
.card .price--number {
  font-size: 3rem;
  font-weight: 600;
  background: -webkit-linear-gradient(#f9edc2, #936c08);
  background: -webkit-linear-gradient(#ffda45, #997f09);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card .price--dolar {
  font-size: 1.7rem;
  margin-top: 0.4em;
  font-weight: 500;
  background:  -webkit-linear-gradient(#f9edc2, #936c08);
  background: -webkit-linear-gradient(#ffda45, #997f09);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.card-description{
    margin-top: 0;
}
.card-description{
    display: flex;
    flex-wrap: wrap;
}
.card-description .hl{
    text-align: center;
/*     background: #e4003c; */
    color: #fff;
    display: block;
    padding: 0px 15px;
    border-radius: 20px;
    justify-self: center;
    align-self: center;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: -12px;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 29px;
    border: 1px solid #fff;
}
.card-description .desc{
    direction: block;
    min-width: 100%;
    line-height: 29px;
}




.gradient-cards .card{
    z-index: 1;
    overflow: visible;
}
.corner-ribbon {
  position: absolute;
  height: 6.5em;
  width: 6.5em;
  padding: 8px;
  z-index: 9;
}
.corner-ribbon .cr-inner {
  position: absolute;
  inset: 0;
  font-family: "Inter", sans-serif;
  background: #e4003c;
  color: white;
  border-radius: 16px 8px 0 8px;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  left: -1px;
  top: -2px;
}
.corner-ribbon .cr-text {
  display: block;
  font-weight: bold;
  font-size: 1em;
  line-height: 1;
  transform: rotate(-45deg) translateY(0.1em) translateX(-1.8em);
  text-align: center;
}
.corner-ribbon .cr-text strong {
  display: block;
  font-weight: normal;
  text-transform: uppercase;
}
.corner-ribbon::before, .corner-ribbon::after {
  content: "";
  position: absolute;
  background: #e4003c;
  z-index: -1;
}
.corner-ribbon::before {
  top: calc(100% - 8px);
  left: -1px;
  height: 8px;
  width: 3px;
  border-radius: 0 0 0 50%;
}
.corner-ribbon::after {
  left: calc(100% - 8px);
  top: -2px;
  width: 8px;
  height: 3px;
  border-radius: 0 50% 0 0;
}