/*========== GOOGLE FONTS ==========*/
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600&display=swap');

/*========== VARIABLES CSS ==========*/
:root {
	--header-height: 3.5rem;

	/*========== Colors ==========*/
	/*Color mode HSL(hue, saturation, lightness)*/
	--first-color: hsl(219, 69%, 56%);
	--first-color-alt: hsl(219, 69%, 52%);
	--title-color: hsl(219, 8%, 95%);
	--text-color: hsl(219, 8%, 75%);
	--text-color-light: hsl(219, 4%, 55%);
	--white-color: #fff;
	--body-color: hsl(219, 4%, 4%);
	--container-color: hsl(219, 4%, 7%);

	/*========== Font and typography ==========*/
	/*.5rem = 8px | 1rem = 16px ...*/
	--body-font: 'Exo', sans-serif;
	--h1-font-size: 1.5rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 1rem;
	--normal-font-size: .938rem;
	--small-font-size: .813rem;
	--smaller-font-size: .75rem;

	/*========== Font weight ==========*/
	--font-medium: 500;
	--font-semi-bold: 600;

	/*========== z index ==========*/
	--z-tooltip: 10;
	--z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
	:root {
		--h1-font-size: 2.25rem;
		--h2-font-size: 1.5rem;
		--h3-font-size: 1.25rem;
		--normal-font-size: 1rem;
		--small-font-size: .875rem;
		--smaller-font-size: .813rem;
	}
}

/*========== BASE ==========*/
*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html{
	scroll-behavior: smooth;
}

body{
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	background-color: var(--body-color);
	color: var(--text-color);
}

h1, h2, h3{
	color: var(--title-color);
	font-weight: var(--font-semi-bold);
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
}

img{
	max-width: 100%;
	height: auto;
}

/*========== REUSABLE CSS CLASSES ==========*/
.container{
	max-width: 1024px;
	margin-right: 1.5rem;
	margin-left: 1.5rem;
}

.grid{
	display: grid;
	gap: 1.5rem;
}

.section{
	padding: 4.5rem 0 2rem;
}

.section__title{
	font-size: var(--h2-font-size);
	text-align: center;
	margin-bottom: 2.5rem;
}

.main{
	overflow: hidden;
}

.shape{
	background-color: hsla(219, 33%, 32%, .5);
	filter: blur(112px);
	border-radius: 50%;
}

.shape__big{
	width: 400px;
	height: 400px;
}

.shape__small{
	width: 300px;
	height: 300px;
}

.shape__smaller{
	width: 180px;
	height: 180px;
	filter: blur(64px);
}

/*========== HEADER & NAV ==========*/
.header{
	width: 100%;
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--z-fixed);
}

.nav{
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav__logo,
.nav__toggle{
	color: var(--title-color);
	display: inline-flex;
}

.nav__logo{
	align-items: center;
	column-gap: .25rem;
	font-weight: var(--font-medium);
	transition: .3s;
}

.nav__logo i{
	font-size: 1.25rem;
}

.nav__logo:hover{
	color: var(--first-color);
}

.nav__toggle{
	font-size: 1.25rem;
	cursor: pointer;
}

@media screen and (max-width: 767px){
	.nav__menu{
		position: fixed;
		background-color: hsla(0, 0%, 100%, .1);
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
		backdrop-filter: blur(96px);
		transition: .3s;
	}
}

.nav__list{
	display: flex;
	flex-direction: column;
	text-align: center;
	row-gap: 3rem;
	padding-top: 9rem;
}

.nav__link{
	text-transform: uppercase;
	color: var(--title-color);
	font-size: var(--h2-font-size);
	font-weight: var(--font-medium);
	transition: .3s;
}

.nav__link:hover{
	color: var(--first-color);
}

.nav__close{
	font-size: 2rem;
	color: var(--white-color);
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
}




/* Show menu */
.show-menu{
	right: 0;
}

/* Change Background header */
.scroll-header{
	border-radius: 0 0 1rem 1rem;
	background-color: var(--body-color);
	box-shadow: 0 2px 4px hsla(0, 0%, 1%, 1);
}

/* Active link */
.active-link{
	color: var(--first-color);
}

/* Phone Icon */
.phone{
    display: none;
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

.phone_box {
    position: absolute;
    top: 50%;
    left: 50%;
}

.phone_object {
    display: flex;
    flex: 0 1 100%;
    justify-content: center;
    align-items: center;
    align-content: stretch;
}

.outline {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 8px solid #B5A4A4;
    animation: pulse 3s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    position: absolute;
}

.phone_button {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #50CDDD;
    box-shadow: 0px 0px 80px #0084F9;
    position: absolute;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
            border: 65px solid #0B3082;
    }
    50% {
        border: solid #A3FFC2;
        opacity: 0.8;
    }
    90% {
        transform: scale(3.2);
        opacity: 0.2;
        border: 3px solid #2E3CFF;
    }
    100% {
        transform: scale(3.3);
        opacity: 0;
        border: 1px solid #7A89FF;
    }
}

#delayed {
    animation-delay: 1.5s;
}

#circlein {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #6BD6E1;
    box-shadow: 0px -2px 15px #E0FF94;
    position: absolute;
}

.mic-icon {
    height: 60px;
    position: absolute;
    margin: 21px;
}

/*========== HOME ==========*/
.home{
	position: relative;
	overflow: hidden;
}

.home__container{
	position: relative;
	padding-top: 4rem;
	row-gap: 3rem;
}

.home__data{
	text-align: center;
}

.home_title{
	font-size: var(--h1-font-size);
	margin-bottom: 1rem;
}

.home__subtitle{
	font-size: var(--h3-font-size);
	margin-bottom: .25rem;
}

.home__elec{
	font-size: var(--small-font-size);
	font-weight: 400;
	color: var(--text-color);
	display: inline-flex;
	align-items: center;
	column-gap: .25rem;
}

.home__elec i{
	color: var(--first-color);
}

.home__img{
	width: 280px;
	justify-self: center;
}

.home__car{
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 4rem;
	margin-bottom: 2rem;
}

.home__car-name{
	font-size: .625rem;
	font-weight: 400;
	color: var(--text-color-light);
}

.home__car-data{
	text-align: center;
}

.home__car-number{
	font-size: var(--h2-font-size);
	font-weight: var(--font-medium);
	margin-bottom: .25rem;
}

.home__car-icon{
	background-color: var(--container-color);
	border-radius: 50%;
	padding: .376rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: .875rem;
	margin-bottom: .75rem;
}

.home__button{
	position: relative;
	border: 2px solid hsl(158, 89%, 30%);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	font-size: var(--small-font-size);
	color: var(--white-color);
	font-weight: var(--font-medium);
}

.home__button::before{
	content: '';
	border: 2px solid hsl(158, 98%, 43%);
	width: 90px;
	height: 90px;
	position: absolute;
	border-radius: 50%;
	box-shadow: 0 0 12px hsl(158, 98%, 43%);
	transition: .3s;
	animation: button 3s infinite;
}

.home .shape__big,
.home .shape__small{
	position: absolute;
}

.home .shape__big{
	left: -9rem;
	top: -4rem;
}

.home .shape__small{
	right: -10rem;
	bottom: 3rem;
}

/* Search Bar */
.search_bar {
    position: center;
    text-align: center;
}

.search_bar:before,
.search_bar:after {
    content:"";
    display: block;
    height: 1px;
    left: 50%;
    margin: 0 0 0 -400px;
    position: absolute;
    width: 800px;
}

.search_bar:before {
    background: #444;
    background: linear-gradient(left, #151515, #444, #151515);
    top: 192px;
}

.search_bar:after {
    background: #000;
    background: linear-gradient(left, #151515, #000, #151515);
    top: 191px;
}

.search_bar form {
    background: #111;
    background: linear-gradient(#1b1b1b, #111);
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px #272727;
    display: inline-block;
    font-size: 0px;
    margin: 150px auto 0;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.search_bar input {
    background: #222;
    background: linear-gradient(#333, #222);
    border: 1px solid #444;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 2px 0 #000;
    color: #888;
    display: block;
    float: left;
    font-family: "Cabin", helvetica, arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    height: 40px;
    margin: 0;
    padding: 0 10px;
    text-shadow: 0 -1px 0 #000;
    width: 200px;
}

.ie .search_bar input {
    line-height: 40px;
}

.search_bar input:-moz-placeholder {
    color: #888;
}

.search_bar input:focus {
    animation: glow 800ms ease-out infinite alternate;
    background: #222922;
    background: linear-gradient(#333933, #222922);
    border-color: #393;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.2), inset 0 0 5px rgba(0, 255, 0, 0.1), 0 2px 0 #000;
    color: #efe;
    outline: none;
}

.search_bar input:focus::-webkit-input-placeholder {
    color: #efe;
}

.search_bar input:focus:-moz-placeholder {
    color: #efe;
}

.search_bar button {
    background: #222;
    background: linear-gradient(#333, #222);
    box-sizing: border-box;
    border: 1px solid #444;
    border-left-color: #000;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 0 #000;
    color: #fff;
    display: block;
    float: left;
    font-family: "Cabin", helvetica, arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    height: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0;
    position: relative;
    text-shadow: 0 -1px 0 #000;
    width: 80px;
}

.search_bar button:hover,
.search_bar button:focus {
    background: #292929;
    background: linear-gradient(#393939, #292929);
    color: #5f5;
    outline: none;
}

.search_bar button:active {
    background: #292929;
    background: linear-gradient(#393939, #292929);
    box-shadow: 0 1px 0 #000, inset 1px 0 1px #222;
    top: 1px;
}

@keyframes glow {
    0% {
        border-color: #393;
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.2), inset 0 0 5px rgba(0, 255, 0 0.1), 0 2px 0 #000;
    }
    100% {
         border-color: #6f6;
         box-shadow: 0 0 20px rgba(0, 255, 0, 0.6), inset 0 0 10px rgba(0, 255, 0 0.4), 0 2px 0 #000;
    }
}

/* Button animate */
@keyframes button{
	0%{
		box-shadow: 0 0 12px hsl(158, 98%, 43%);
	}
	50%{
		box-shadow: 0 0 24px hsl(158, 98%, 43%);
	}
}

/* Styles go here */

/* scaffolding */
/* ----------- */

.the-basics html {
  overflow-y: scroll;
  *overflow-x: hidden;
}

.the-basics .container {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.tt-menu,
.gist {
  text-align: left;
}

/* base styles */
/* ----------- */

.the-basics html {
  font: normal normal normal 18px/1.2 "Helvetica Neue", Roboto, "Segoe UI", Calibri, sans-serif;
  color: #292f33;
}


.the-basics a {
  color: #03739c;
  text-decoration: none;
}

.the-basics a:hover {
  text-decoration: underline;
}

.table-of-contents li {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

.table-of-contents li a {
  font-size: 16px;
  color: #999;
}

p + p {
  margin: 30px 0 0 0;
}

/* site theme */
/* ---------- */

.the-basics .title {
  margin: 20px 0 0 0;
  font-size: 64px;
}

.example {
  padding: 30px 0;
}

.example-name {
  margin: 20px 0;
  font-size: 32px;
}

.demo {
  position: relative;
  *z-index: 1;
  margin: 50px 0;
}

.typeahead,
.tt-query,
.tt-hint {
  width: 396px;
  height: 30px;
  padding: 8px 12px;
  font-size: 24px;
  line-height: 30px;
  border: 2px solid #ccc;
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  outline: none;
}

.typeahead {
  background-color: #fff;
}

.typeahead:focus {
  border: 2px solid #0097cf;
}

.tt-query {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
  color: #999
}

.tt-menu {
  width: 422px;
  margin: 12px 0;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
     -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
          box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
  padding: 3px 20px;
  font-size: 18px;
  line-height: 24px;
}

.tt-suggestion:hover {
  cursor: pointer;
  color: #fff;
  background-color: #0097cf;
}

.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #0097cf;

}

.tt-suggestion p {
  margin: 0;
}

.gist {
  font-size: 14px;
}

/* example specific styles */
/* ----------------------- */

#custom-templates .empty-message {
  padding: 5px 10px;
 text-align: center;
}

#multiple-datasets .league-name {
  margin: 0 20px 5px 20px;
  padding: 3px 0;
  border-bottom: 1px solid #ccc;
}

#scrollable-dropdown-menu .tt-menu {
  max-height: 150px;
  overflow-y: auto;
}

#rtl-support .tt-menu {
  text-align: right;
}

.search_body{
background-color: #f5f5f5;
}
.search_section{
font-family: 'Roboto Condensed', sans-serif;
position: absolute;
top:10%;
left:50%;
transform: translate(-85%,0%);
}
.typeahead{
padding:15px 200px;
width:100% !important;
background-color: #fff !important;
padding-left:40px !important;
font-size:18px;
}
.empty-message{
color:red;
text-align: center;
padding:10px 0px;
}
.tt-menu {
display: block;
width:152%;
background-color: #fff;
border:unset !important;
box-shadow: 0 5px 10px rgba(0,0,0,.2);
}
.tt-suggestion {
padding: 3px 20px;
font-size: 18px;
line-height: 24px;
cursor: pointer;
}
.man-section{
position: relative;
width:94%;
border-bottom:1px solid #d2d2d2;;
font-family: 'Roboto Condensed', sans-serif;
}
.image-section{
width:10%;
float:left;
display: table;
}
.image-section img{
width:70px;
height:70px;
border:1px solid #000;
display: table-cell;
vertical-align: middle;
margin:6px 0px 5px -9px;
}
.description-section{
float:left;
width:80%;
}
.description-section h1{
margin:0px;
font-weight: bold;
padding:0px 7px;
font-size:16px;
color:#000;
margin-top:4px;
text-transform: uppercase;
}
.description-section p{
margin:0px;
padding:0px 1px 0px 8px;
font-size:14px;
color:#7d7f80;
line-height: 15px;
}
.description-section span{
padding:7px;
font-size:13px;
color:#a09999;
}
.more-section{
position: absolute;
bottom:7px;
right:16px;
}
.more-section a{
text-decoration: none;
}
.more-section button{
border:unset;
color:#fff;
border-radius: 5px;
padding:5px;
background-color:#5D4C46 !important;
}

/*========== SEARCH ===========*/

  .result {
   position: absolute;
   width: 100%;
   max-width:870px;
   cursor: pointer;
   overflow-y: auto;
   max-height: 400px;
   box-sizing: border-box;
   z-index: 1001;
  }
  .link-class:hover{
   background-color:#f1f1f1;
  }
  

/*========== BUTTON ===========*/
.button{
	display: inline-block;
	background-color: var(--first-color);
	color: var(--white-color);
	padding: 1rem 2rem;
	border-radius: .25rem;
	font-size: var(--normal-font-size);
	transition: .3s;
}

.button:hover{
	background-color: var(--first-color-alt);
}




/*========= ABOUT ==========*/
.about__container{
	row-gap: 6rem;
}

.about__group{
	position: relative;
}

.about__img{
	width: 310px;
	border-radius: .5rem;
}

.about__card{
	width: 180px;
	position: absolute;
	right: 0;
	bottom: -2.5rem;
	background-color: hsla(0, 0%, 100%, .1);
	backdrop-filter: blur(16px);
	padding: 1rem .75rem;
	text-align: center;
	border-radius: 1.25rem;
}

.about__card-title{
	font-size: var(--h3-font-size);
	margin-bottom: .5rem;
}

.about__card-description{
	font-size: var(--smaller-font-size);
}

.about__title{
	text-align: initial;
	margin-bottom: 2rem;
}

.about__description{
	margin-bottom: 2rem;
}

/*========== RACING VIDEO ==========*/
.wrapper {
  --color: #1F242D;
  --color-invert: #ffffff;
  --clip-path: circle(15px at left);
  --clip-path-hover: circle(70px at left);
  --clip-path-clicked: circle(100vw at left);
  --duration: .4s;
  --timing-function: ease;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.wrapper .video {
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  -webkit-clip-path: var(--clip-path);
          clip-path: var(--clip-path);
  transition: -webkit-clip-path var(--duration) var(--timing-function);
  transition: clip-path var(--duration) var(--timing-function);
  transition: clip-path var(--duration) var(--timing-function), -webkit-clip-path var(--duration) var(--timing-function);
}
.wrapper .video video {
  position: fixed;
  background: #c4cbde;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.wrapper .text {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: var(--opacity, 1);
  transition: opacity 0.3s var(--timing-function) 0.2s;
}
.wrapper .text::before, .wrapper .text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;
  right: 25px;
  height: 0;
}
.wrapper .text::before {
  box-shadow: 26px 0 0 1px var(--color);
  right: var(--r, 100%);
  opacity: var(--opacity, 0);
  transition: right 0.5s ease-in, opacity 0.1s linear;
}
.wrapper .text::after {
  box-shadow: 26px 0 0 1px var(--color-invert);
  -webkit-clip-path: var(--clip-path);
          clip-path: var(--clip-path);
  transition: -webkit-clip-path var(--duration) var(--timing-function);
  transition: clip-path var(--duration) var(--timing-function);
  transition: clip-path var(--duration) var(--timing-function), -webkit-clip-path var(--duration) var(--timing-function);
}
.wrapper .text > span::before, .wrapper .text > span::after {
  content: attr(data-text);
  padding-left: 26px;
}
.wrapper .text > span::before {
  color: var(--color);
}
.wrapper .text > span::after {
  color: var(--color-invert);
  -webkit-clip-path: var(--clip-path);
          clip-path: var(--clip-path);
  transition: -webkit-clip-path var(--duration) var(--timing-function);
  transition: clip-path var(--duration) var(--timing-function);
  transition: clip-path var(--duration) var(--timing-function), -webkit-clip-path var(--duration) var(--timing-function);
  position: absolute;
  left: 0;
}
.wrapper input {
  width: 220px;
  height: 40px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 40px;
  z-index: 2;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.wrapper input:focus {
  outline: 0;
}
.wrapper input:hover ~ .video {
  -webkit-clip-path: var(--clip-path-hover);
          clip-path: var(--clip-path-hover);
}
.wrapper input:hover ~ .text::before {
  --r: 25px;
  --opacity: 1;
}
.wrapper input:hover ~ .text::after {
  -webkit-clip-path: var(--clip-path-hover);
          clip-path: var(--clip-path-hover);
}
.wrapper input:hover ~ .text > span::after {
  -webkit-clip-path: var(--clip-path-hover);
          clip-path: var(--clip-path-hover);
}
.wrapper input:checked {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.wrapper input:checked ~ .video {
  -webkit-clip-path: var(--clip-path-clicked);
          clip-path: var(--clip-path-clicked);
}
.wrapper input:checked ~ .text {
  --opacity: 0;
  transition: opacity 0.3s var(--timing-function);
}
.wrapper input:checked ~ .text::after {
  -webkit-clip-path: var(--clip-path-clicked);
          clip-path: var(--clip-path-clicked);
}
.wrapper input:checked ~ .text > span::after {
  -webkit-clip-path: var(--clip-path-clicked);
          clip-path: var(--clip-path-clicked);
}

video_body {
  background: #E8EBF3;
  height: 100vh;
  font: 400 16px "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/*========== POPULAR ==========*/
.popular__container{
	padding-top: 1rem;
}

.popular__card{
	position: relative;
	width: 238px;
	background-color: var(--container-color);
	padding: 2rem 1.5rem 1.5rem;
	border-radius: 1rem;
	margin-bottom: 3.5rem;
	overflow: hidden;
}

.popular__card .shape__smaller{
	position: absolute;
	top: -2.5rem;
	left: -2.5rem;
}

.popular__title,
.popular__subtitle,
.popular__img{
	position: relative;
}

.popular__title{
	font-size: var(--h2-font-size);
	margin-bottom: .25rem;
}

.popular__subtitle{
	font-size: var(--normal-font-size);
	color: var(--text-color);
	font-weight: 400;
}

.popular__img{
	width: 160px;
	margin: .75rem 0 1.25rem 1.5rem;
	transition: .3s;
}

.popular__data{
	display: grid;
	grid-template-columns: repeat(2, max-content);
	gap: .5rem 1.25rem;
	margin-bottom: 2rem;
}

.popular__data-group{
	display: inline-flex;
	align-items: center;
	column-gap: .5rem;
	font-size: var(--smaller-font-size);
	color: var(--white-color);
}

.popular__data i{
	font-size: 1rem;
}

.popular__price{
	font-size: var(--h3-font-size);
}

.popular__button{
	border: none;
	outline: none;
	padding: .75rem 1rem;
	position: absolute;
	right: 0;
	bottom: 0;
	border-radius: 1rem 0 1rem 0;
	cursor: pointer;
}

.popular__button i{
	font-size: 1.25rem;
}

.popular__card:hover .popular__img{
	transform: translateY(-.25rem);
}

/* Swiper class */
.swiper-pagination-bullet{
	background: var(--text-color);
}

.swiper-pagination-bullet-active{
    background-color: var(--first-color);
}

/*========== FEATURES ==========*/
.features{
	overflow: hidden;
	position: relative;
}

.features__container{
	padding-top: 2rem;
	grid-template-columns: 285px;
	justify-content: center;
}

.features__group{
	display: grid;
	position: relative;
	z-index: 10;
}

.features__img{
	width: 150px;
	justify-self: center;
}

.features__card{
	width: 112px;
	background-color: hsla(0, 0%, 100%, .1);
	backdrop-filter: blur(16px);
	border-radius: 1.25rem;
	padding: .75rem 2rem;
	text-align: center;
	color: var(--title-color);
	position: absolute;
}

.features__card-1{
	top: 4rem;
	left: 1.5rem;
}

.features__card-2{
	top: 8rem;
	right: 1rem;
}

.features__card-3{
	left: 1.5rem;
	bottom: 2rem;
}

.features__card-title{
	font-size: var(--h3-font-size);
	margin-bottom: .25rem;
}

.features__card-description{
	font-size: var(--smaller-font-size);
}

.features__map{
	max-width: initial;
	width: 450px;
	position: absolute;
	top: 8rem;
	left: -3rem;
	margin: auto;
	transform: rotate(-22deg);
}

/*========== FEATURED ===========*/
.featured__container{
	padding-top: 1rem;
}

.featured__filters{
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 1rem;
	margin-bottom: 3.5rem;
}

.featured__item{
	width: 48px;
	height: 48px;
	border: none;
	outline: none;
	padding: .75rem;
	border-radius: .75rem;
	background-color: var(--container-color);
	color: var(--white-color);
	font-size: var(--normal-font-size);
	cursor: pointer;
	transition: .3s;
}

.featured__item img{
	width: 1.5rem;
}

.featured__item span,
.featured__item img{
	opacity: .3;
	transition: .3s;
}

.featured__item:hover{
	background-color: var(--first-color);
}

.featured__item:hover span,
.featured__item:hover img{
	opacity: 1;
}

.featured__content{
	grid-template-columns: 228px;
	row-gap: 2.5rem;
	justify-content: center;
}

.featured__card{
	position: relative;
	background-color: var(--container-color);
	padding: 2rem 1.5rem 1.5rem;
	border-radius: 1rem;
}

.featured__card .shape__smaller{
	position: absolute;
	inset: 0;
	margin: auto;
}

.featured__title,
.featured__subtitle,
.featured__img{
	position: relative;
}

.featured__title{
	font-size: var(--h2-font-size);
	margin-bottom: .25rem;
}

.featured__subtitle{
	font-size: var(--normal-font-size);
	color: var(--text-color);
	font-weight: 400;
}

.featured__img{
	width: 180px;
	margin: 1.5rem 0;
	transition: .3s;
}

.featured__price{
	font-size: var(--h3-font-size);
}

.featured__button{
	border: none;
	outline: none;
	padding: .75rem 1rem;
	position: absolute;
	right: 0;
	bottom: 0;
	border-radius: 1rem 0 1rem 0;
	cursor: pointer;
}

.featured__button i{
	font-size: 1.25rem;
}

.featured__card:hover .featured__img{
	transform: translateX(-.25rem);
}

/* Active link featured */
.active-featured{
	background-color: var(--first-color);
}

.active-featured span,
.active-featured img{
	opacity: 1;
}

/*========== OFFER ==========*/
.offer{
	position: relative;
}

.offer__container{
	grid-template-rows: max-content 224px;
}

.offer__bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.offer__data,
.offer__img{
	position: relative;
}

.offer__data{
	text-align: center;
}

.offer__title{
	margin-bottom: 2rem;
}

.offer__description{
	margin-bottom: 3rem;
}

.offer__img{
	position: absolute;
	max-width: initial;
	width: 400px;
	bottom: 2rem;
	right: -5.5rem;
}

/*========== LOGOS =========*/
.logos__img{
	width: 40px;
	opacity: .4;
	transition: .3s;
}

.logos__container{
	grid-template-columns: repeat(3, max-content);
	justify-content: center;
	align-items: center;
	gap: 4rem;
	padding-bottom: 2rem;
}

.logos__img:hover{

}


/*========== New Products ===========*/
.ls-container {
	visibility: hidden;
	position: relative;
}

.ls-lt-container {
	position: absolute;
}

.ls-lt-container,
.ls-lt-container * {
	text-align: left !important;
	direction: ltr !important;
}

.ls-container-fullscreen {
	margin: 0 auto !important;
	padding: 2% !important;
	background: black !important;
	border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border: none !important;
}

.ls-container-fullscreen .ls-thumbnail-wrapper,
.ls-container-fullscreen .ls-fullscreen,
.ls-container-fullscreen .ls-shadow {
	display: none !important;
}

.ls-overflow-hidden {
	overflow: hidden;
}

.ls-inner {
	position: relative;
	background-position: center center;
	z-index: 2;
}

.ls-loading-container {
	position: absolute !important;
	display: none;
	z-index: 3 !important;
	left: 50% !important;
	top: 50% !important;
}

.ls-loading-indicator {
	margin: 0 auto;
}

.ls-inner,
.ls-slide {
	width: 100%;
	height: 100%;
}

.ls-slide,
.ls-layer {
	position: absolute;
	display: none;
	background-position: center center;
	overflow: hidden;
}

.ls-active,
.ls-animating {
	display: block !important;
}

.ls-slide > * {
	position: absolute;
	line-height: normal;
	margin: 0;
	left: 0;
	top: 0;
}

.ls-slide .ls-bg {
	left: 0px;
	top: 0px;
	transform: none !important;
	-o-transform: none !important;
	-ms-transform: none !important;
	-moz-transform: none !important;
	-webkit-transform: none !important;
}

.ls-yourlogo {
	position: absolute;
	z-index: 99;
}



/* Timers */

.ls-bar-timer {
	position: absolute;
	width: 0;
	height: 2px;
	background: white;
	border-bottom: 2px solid #555;
	opacity: .55;
	filter: alpha(opacity=55);
	z-index: 4;
	top: 0;
}

.ls-circle-timer {
	width: 16px;
	height: 16px;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 4;
	opacity: .65;
	filter: alpha(opacity=65);
	display: none;
}

.ls-ct-half {
	background: white;
}

.ls-ct-center {
	background: #444;
}

.ls-ct-left,
.ls-ct-right {
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.ls-ct-left,
.ls-ct-right {
	float: left;
	position: relative;
}

.ls-ct-rotate {
	width: 200%;
	height: 100%;
	position: absolute;
	top: 0;
}

.ls-ct-left .ls-ct-rotate,
.ls-ct-right .ls-ct-hider,
.ls-ct-right .ls-ct-half {
	left: 0;
}

.ls-ct-right .ls-ct-rotate,
.ls-ct-left .ls-ct-hider,
.ls-ct-left .ls-ct-half {
	right: 0;
}

.ls-ct-hider,
.ls-ct-half {
	position: absolute;
	top: 0;
}

.ls-ct-hider {
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.ls-ct-half {
	width: 200%;
	height: 100%;
}

.ls-ct-center {
	width: 50%;
	height: 50%;
	left: 25%;
	top: 25%;
	position: absolute;
}

.ls-ct-half,
.ls-ct-center {
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
}



/* Navigation */

.ls-bottom-nav-wrapper {
	height: 0;
}

.ls-bottom-slidebuttons {
	text-align: left;
}

.ls-bottom-nav-wrapper,
.ls-below-thumbnails {
	z-index: 2;
	height: 0;
	position: relative;
	text-align: center;
	margin: 0 auto;
}

.ls-below-thumbnails {
	display: none;
	z-index: 6;
}

.ls-bottom-nav-wrapper a,
.ls-nav-prev,
.ls-nav-next {
	outline: none;
}

* .ls-bottom-nav-wrapper *,
* .ls-bottom-nav-wrapper span * {
	direction: ltr !important;
}

.ls-bottom-slidebuttons {
	position: relative;
	z-index: 1000;
}

.ls-bottom-slidebuttons,
.ls-nav-start,
.ls-nav-stop,
.ls-nav-sides {
	position: relative;
}

.ls-nothumb {
	text-align: center !important;
}

.ls-link {
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	left: 0 !important;
	top: 0 !important;
}



/* Embedded videos */

.ls-vpcontainer {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.ls-videopreview {
	width : 100%;
	height : 100%;
	position : absolute;
	left : 0;
	top : 0;
	cursor : pointer;
}

.ls-playvideo {
	position: absolute;
	left: 50%;
	top: 50%;
	cursor: pointer;
}



/* Thumbnails */

.ls-tn {
	display: none !important;
}

.ls-thumbnail-hover {
	display: none;
	position: absolute;
	left: 0;
}

.ls-thumbnail-hover-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: none;
}

.ls-thumbnail-hover-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.ls-thumbnail-hover-img {
	position: absolute;
	overflow: hidden;
}

.ls-thumbnail-hover img {
	max-width: none !important;
	position: absolute;
	display: inline-block;
	visibility: visible !important;
	left: 50%;
	top: 0;
}

.ls-thumbnail-hover span {
	left: 50%;
	top: 100%;
	width: 0;
	height: 0;
	display: block;
	position: absolute;
	border-left-color: transparent !important;
	border-right-color: transparent !important;
	border-bottom-color: transparent !important;
}

.ls-thumbnail-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 4;
}

.ls-thumbnail {
	position: relative;
	margin: 0 auto;
}

.ls-thumbnail-inner,
.ls-thumbnail-slide-container {
	width: 100%;
}

.ls-thumbnail-slide-container {
	overflow: hidden !important;
	position: relative;
}

.ls-touchscroll {
	overflow-x: auto !important;
}

.ls-thumbnail-slide {
	text-align: center;
	white-space: nowrap;
	float: left;
	position: relative;
}

.ls-thumbnail-slide a {
	overflow: hidden;
	display: inline-block;
	width: 0;
	height: 0;
	position: relative;
}

.ls-thumbnail-slide img {
	max-width: none !important;
	max-height: 100% !important;
	height: 100%;
	visibility: visible !important;
}

.ls-shadow {
	display: none;
	position: absolute;
	z-index: 1;
	top: 100%;
	width: 100%;
	left: 0;
	overflow: hidden !important;
	visibility: hidden;
}

.ls-shadow img {
	width: 100% !important;
	height: auto !important;
	position: absolute !important;
	left: 0 !important;
	bottom: 0 !important;
}

.ls-bottom-nav-wrapper,
.ls-thumbnail-wrapper,
.ls-nav-prev,
.ls-nav-next {
	visibility: hidden;
}



/* WP plugin fullwidth */

.ls-wp-fullwidth-container {
	width: 100%;
	position: relative;
}

.ls-wp-fullwidth-helper {
	position: absolute;
}



/* 2D & 3D Layer Transitions */

.ls-overflow-hidden {
	overflow: hidden;
}

.ls-lt-tile {
	position: relative;
	float: left;
	perspective: 1000px;
	-o-perspective: 1000px;
	-ms-perspective: 1000px;
	-moz-perspective: 1000px;
	-webkit-perspective: 1000px;
}

.ls-lt-tile img {
	visibility: visible;
	display: inline-block;
}

.ls-curtiles {
	overflow: hidden;
}

.ls-curtiles,
.ls-nexttiles {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.ls-curtile, .ls-nexttile {
	overflow: hidden;
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.ls-curtile {
	left: 0;
	top: 0;
}

.ls-curtile img,
.ls-nexttile img {
	position: absolute;
	filter: inherit;
}

.ls-3d-container {
	position: relative;
	overflow: visible !important;
}

.ls-3d-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
}

.ls-3d-box div {
	overflow: hidden;
	background: #777;
	margin: 0;
	padding: 0;
	position: absolute;
}



/* Full screen */

.ls-fullscreen {
	position: absolute;
	z-index: 10;
	cursor: pointer;
	display: block;
}



/* Removing all default global styles of WordPress themes */

html * .ls-nav-prev,
html * .ls-nav-next,
html * .ls-container img,
html * .ls-bottom-nav-wrapper a,
html * .ls-container .ls-fullscreen,
body * .ls-nav-prev,
body * .ls-nav-next,
body * .ls-container img,
body * .ls-bottom-nav-wrapper a,
body * .ls-container .ls-fullscreen,
#ls-global * .ls-nav-prev,
#ls-global * .ls-nav-next,
#ls-global * .ls-container img,
#ls-global * .ls-bottom-nav-wrapper a,
#ls-global * .ls-container .ls-fullscreen,
html * .ls-thumbnail a,
body * .ls-thumbnail a,
#ls-global * .ls-thumbnail a {
	transition: none;
	-o-transition: none;
	-ms-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	line-height: normal;
	outline: none;
	padding: 0;
	border: 0;
}

html * .ls-slide > a,
body * .ls-slide > a,
#ls-global * .ls-slide > a,
html * .ls-slide > h1,
body * .ls-slide > h1,
#ls-global * .ls-slide > h1,
html * .ls-slide > h2,
body * .ls-slide > h2,
#ls-global * .ls-slide > h2,
html * .ls-slide > h3,
body * .ls-slide > h3,
#ls-global * .ls-slide > h3,
html * .ls-slide > h4,
body * .ls-slide > h4,
#ls-global * .ls-slide > h4,
html * .ls-slide > h5,
body * .ls-slide > h5,
#ls-global * .ls-slide > h5,
html * .ls-slide > p,
body * .ls-slide > p,
#ls-global * .ls-slide > p,
html * .ls-slide > div,
body * .ls-slide > div,
#ls-global * .ls-slide > div,
html * .ls-slide > span,
body * .ls-slide > span,
#ls-global * .ls-slide > span,
html * .ls-slide > *,
body * .ls-slide > *,
#ls-global * .ls-slide > * {
	transition: none;
	-o-transition: none;
	-ms-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
}

html * .ls-slide > *,
body * .ls-slide > *,
#ls-global * .ls-slide > * {
	margin: 0;
}

html * .ls-container img,
body * .ls-container img,
#ls-global * .ls-container img {
	background: none !important;
	min-width: 0 !important;
	max-width: none !important;
	border-radius: 0;
	box-shadow: none;
	border: 0;
	padding: 0;
}

/*html * .ls-thumbnail a img,
body * .ls-thumbnail a img,
#ls-global * .ls-thumbnail a img {
	min-width: 100% !important;
}
*/

html * .ls-wp-container .ls-slide > *,
body * .ls-wp-container .ls-slide > *,
#ls-global * .ls-wp-container .ls-slide > * {
	line-height: normal;
	outline: none;
	padding: 0;
	margin: 0;
	border: 0;
}

html * .ls-wp-container .ls-slide > a > *,
body * .ls-wp-container .ls-slide > a > *,
#ls-global * .ls-wp-container .ls-slide > a > * {
	margin: 0;
}

html * .ls-wp-container .ls-slide > a,
body * .ls-wp-container .ls-slide > a,
#ls-global * .ls-wp-container .ls-slide > a {
	text-decoration: none;
}

.ls-wp-fullwidth-container,
.ls-wp-fullwidth-helper,
.ls-container,
.ls-container * {
	box-sizing: content-box !important;
	-moz-box-sizing: content-box !important;
	-webkit-box-sizing: content-box !important;
}

html * .ls-yourlogo,
body * .ls-yourlogo,
#ls-global * .ls-yourlogo {
	margin: 0;
}

html * .ls-tn,
body * .ls-tn,
#ls-global * .ls-tn {
	display: none;
}

.site {
	overflow: visible !important;
}



/* Style of LayerSlider Debug Console */

.ls-debug-console * {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	color: white !important;
	text-shadow: none !important;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", Helvetica, Arial, sans-serif !important;
	line-height: normal !important;
	-webkit-font-smoothing: antialiased !important;
	text-align: left !important;
	font-style: normal !important;
}

.ls-debug-console h1 {
	padding-top: 10px !important;
	font-size: 17px !important;
	font-weight: bold !important;
}

.ls-debug-console h1:first-child {
	padding-top: 0 !important;
}

.ls-debug-console ul {
	padding-top: 10px !important;
	list-style: none !important;
}

.ls-debug-console li {
	margin-left: 10px !important;
	font-size: 13px !important;
	position: relative !important;
	font-weight: normal !important;
}

html * .ls-debug-console li ul,
body * .ls-debug-console li ul,
#ls-global * .ls-debug-console li ul {
	display: none;
	width: 260px;
	left: -10px;
}

.ls-debug-console li ul {
	position: absolute !important;
	bottom: 100% !important;
	padding: 10px 10px 10px 0 !important;
	background: white !important;
	border-radius: 10px !important;
	box-shadow: 0 0 20px black !important;
}

html * .ls-debug-console li:hover ul,
body * .ls-debug-console li:hover ul,
#ls-global * .ls-debug-console li:hover ul {
	display: block;
}

.ls-debug-console li ul * {
	color: black !important;
}

.ls-debug-console a {
	text-decoration: none !important;
	border-bottom: 1px dotted white !important;
}

.ls-error {
	border-radius: 5px !important;
	-moz-border-radius: 5px !important;
	-wenkit-border-radius: 5px !important;
	background: white !important;
	height: auto !important;
	width: auto !important;
	color: white !important;
	padding: 20px 40px 30px 80px !important;
	position: relative !important;
	box-shadow: 0 2px 20px -5px black;
}

.ls-error p {
	line-height: normal !important;
	text-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	text-align: justify !important;
	font-family: Arial, sans-serif !important;
}

.ls-error .ls-error-title {
	line-height: 40px !important;
	color: red !important;
	font-weight: bold !important;
	font-size: 16px !important;
}

.ls-error .ls-error-text {
	color: #555 !important;
	font-weight: normal !important;
	font-size: 13px !important;
}

.ls-error .ls-exclam {
	width: 40px !important;
	height: 40px !important;
	position: absolute !important;
	left: 20px !important;
	top: 20px !important;
	border-radius: 50px !important;
	-moz-border-radius: 50px !important;
	-webkit-border-radius: 50px !important;
	font-size: 30px !important;
	font-weight: bold !important;
	color: white !important;
	line-height: 40px !important;
	background: red !important;
	text-align: center !important;
}



/* GPU Hardware Acceleration */

html * .ls-container .ls-shadow,
html * .ls-container .ls-slide > *,
html * .ls-container .ls-fullscreen,
html * .ls-container .ls-3d-container,
html * .ls-container .ls-lt-container,
html * .ls-container .ls-lt-container *,
html * .ls-container .ls-thumbnail-wrapper,
html * .ls-container .ls-bottom-nav-wrapper,
body * .ls-container .ls-shadow,
body * .ls-container .ls-slide > *,
body * .ls-container .ls-fullscreen,
body * .ls-container .ls-3d-container,
body * .ls-container .ls-lt-container,
body * .ls-container .ls-lt-container *,
body * .ls-container .ls-thumbnail-wrapper,
body * .ls-container .ls-bottom-nav-wrapper,
#ls-global * .ls-container .ls-shadow,
#ls-global * .ls-container .ls-slide > *,
#ls-global * .ls-container .ls-fullscreen,
#ls-global * .ls-container .ls-3d-container,
#ls-global * .ls-container .ls-lt-container,
#ls-global * .ls-container .ls-lt-container *,
#ls-global * .ls-container .ls-thumbnail-wrapper,
#ls-global * .ls-container .ls-bottom-nav-wrapper,
.ls-gpuhack {
	transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
}

.ls-videohack {
	transform: none !important;
	-o-transform: none !important;
	-ms-transform: none !important;
	-moz-transform: none !important;
	-webkit-transform: none !important;
	transform-origin: none !important;
	-o-transform-origin: none !important;
	-ms-transform-origin: none !important;
	-moz-transform-origin: none !important;
	-webkit-transform-origin: none !important;
}

.ls-oldiepnghack {
	filter: none !important;
}

.ls-gpuhack {
	width: 100% !important;
	height: 100% !important;
	left: 0px !important;
	top: 0px !important;
}


html * .ls-container .ls-webkit-hack,
body * .ls-container .ls-webkit-hack,
#ls-global * .ls-container .ls-webkit-hack {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

/* GPU */

@media (transform-3d), (-o-transform-3d), (-ms-transform-3d), (-moz-transform-3d), (-webkit-transform-3d) {
	#ls-test3d {
		position: absolute;
		left: 9px;
		height: 3px;
	}
}

/* Mobile features */

.ls-forcehide {
	display: none !important;
}



/*========== FOOTER ==========*/
.footer{
	position: relative;
	overflow: hidden;
}

.footer .shape__big,
.footer .shape__small{
	position: absolute;
}

.footer .shape__big{
	width: 300px;
	height: 300px;
	left: -12rem;
	top: 6rem;
}

.footer .shape__small{
	right: -13rem;
	bottom: -6rem;
}

.footer__container{
	row-gap: 2.5rem;
	position: relative;
}

.footer__logo{
	display: inline-flex;
	align-items: center;
	column-gap: .25rem;
	color: var(--title-color);
	font-size: var(--h2-font-size);
	font-weight: var(--font-semi-bold);
	margin-bottom: 1.25rem;
	transition: .3s;
}

.footer__logo i{
	font-size: 1.5rem;
	font-weight: 500;
}

.footer__logo:hover{
	color: var(--first-color);
}

.footer__title{
	font-size: var(--h3-font-size);
	margin-bottom: 1.25rem;
}

.footer__links{
	display: flex;
	flex-direction: column;
	row-gap: .5rem;
}

.footer__link,
.footer__social-link{
	color: var(--text-color);
	transition: .3s;
}

.footer__link:hover,
.footer__social-link:hover{
	color: var(--title-color);
}

.footer__social{
	display: flex;
	column-gap: 1.5rem;
}

.footer__social-link{
	font-size: 1.25rem;
}

.footer__copy{
	display: block;
	margin-top: 4.5rem;
	text-align: center;
	font-size: var(--smaller-font-size);
	color: var(--text-color-light);
}

/*========== SCROLL BAR ==========*/
::-webkit-scrollbar{
	width: .6rem;
	background-color: hsl(219, 4%, 16%);
	border-radius: 1rem;
}

::-webkit-scrollbar-thumb{
	background-color: hsl(219, 4%, 24%);
	border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover{
	background-color: hsl(219, 4%, 32%);
}

/*========== SCROLL UP ==========*/
.scrollup{
	position: fixed;
	right: 1rem;
	bottom: -30%;
	background-color: hsla(0, 0%, 100%, .1);
	backdrop-filter: blur(16px);
	display: inline-flex;
	padding: .45rem;
	border-radius: .5rem;
	font-size: 1.15rem;
	color: var(--white-color);
	z-index: var(--z-tooltip);
	transition: .4s;
}

.scrollup:hover{
	transform: translateY(-.25rem);
}

/* Show Scroll Up */
.show-scroll{
	bottom: 3rem;
}

/*========== BREAKPOINTS ==========*/
/* For small devices */
@media screen and (max-width: 320px){
	.container{
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.home__car{
		column-gap: 2rem;
	}

	.about__card{
		width: 150px;
	}

	.offer__container{
		grid-template-rows: max-content 180px;
	}
	.offer__img{
		width: 340px;
	}

	.logos__container{
		gap: 2.5rem;
	}
}

/* For medium devices */
@media screen and (min-width: 576px){
	.about__group{
		width: 350px;
		justify-self: center;
	}

	.features__map{
		left: 0;
		right: 0;
	}

	.featured__content{
		grid-template-columns: repeat(2, 228px);
	}

	.offer__container{
		grid-template-rows: initial;
		grid-template-columns: .5fr;
		justify-content: center;
	}
	.offer__img{
		position: relative;
		bottom: initial;
		right: initial;
	}
	.offer__data{
		margin-bottom: 4rem;
	}
}

@media screen and (min-width: 767px){
	.section{
		padding: 7rem 0 2rem;
	}

	.nav{
		height: calc(var(--header-height) + 1.5rem);
	}
	.nav__toggle,
	.nav__close{
		display: none;
	}
	.nav__list{
		flex-direction: row;
		column-gap: 3rem;
		padding-top: 0;
	}
	.nav__link{
		font-size: var(--normal-font-size);
		text-transform: initial;
	}

	.about__container{
		grid-template-columns: repeat(2, 1fr);
	}

	.logos__container{
		gap: 4rem 8rem;
	}

	.footer__container{
		grid-template-columns: repeat(2, 1fr);
	}
}
/* For large devices */
@media screen and (min-width: 1040px){
	.container{
		margin-left: auto;
		margin-right: auto;
	}

	.shape__big{
		width: 500px;
		height: 500px;
	}
	.shape__small{
		width: 400px;
		height: 400px;
	}

	.home__container{
		padding-top: 2rem;
	}
	.home__img{
		width: 380px;
	}
	.home__car{
		column-gap: 7rem;
	}
	.home__car-icon{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}

	.about__container{
		column-gap: 6rem;
		align-items: center;
	}
	.about__group,
	.about__img{
		width: 480px;
	}
	.about__card{
		width: 198px;
		padding: 1rem 1.25rem;
	}
	.about__description{
		padding-right: 4rem;
		margin-bottom: 3rem;
	}

	.popular__container{
		width: 875px;
		padding-top: 3rem;
	}
	.popular__card{
		width: 258px;
		border-radius: 1.25rem;
		margin-bottom: 5rem;
	}
	.popular__img{
		width: 180px;
		margrin: .75rem 0 1.25rem 2rem;
	}

	.features__container{
		padding: 2rem 0 3rem;
	}
	.features__img{
		width: 200px;
	}
	.features__card{
		width: 127px;
		padding: .75rem 2.5rem;
	}
	.features__card-1{
		left: -1rem;
	}
	.features__card-2{
		right: -2.5rem;
	}

	.features__card-3{
		bottom: 7rem;
		left: -1rem;
	}
	.features__map{
		width: 650px;
		top: 11rem;
	}

	.featured__container{
		padding-bottom: 2.5rem;
	}
	.featured__filters{
		column-gap: 2rem;
		margin-bottom: 4.5rem;
	}
	.featured__item{
		width: 52px;
		height: 52px;
	}
	.featured__item img{
		width: 2rem;
	}
	.featured__content{
		grid-template-columns: repeat(3, 248px);
		gap: 4rem;
	}

	.offer__container{
		grid-template-columns: repeat(2, 1fr);
		column-gap: 5rem;
		align-items: center;
		padding-bottom: 2rem;
	}
	.offer__data,
	.offer__title{
		text-align: initial;
	}
	.offer__data{
		margin-bottom: 0;
	}
	.offer__description{
		padding-right: 6rem;
	}
	.offer__img{
		width: 450px;
	}

	.logos__container{
		grid-template-columns: repeat(6, max-content);
	}
	.logos__img{
		width: 50px;
	}

	.footer__container{
		grid-template-columns: repeat(4, max-content);
		justify-content: space-between;
	}
	.footer__logo{
		column-gap: .5rem;
	}
	.footer__logo i{
		font-size: 2rem;
	}
	.footer__title{
		margin-bottom: 1.5rem;
	}
	.footer__links{
		row-gap: .75rem;
	}
	.footer__social-link{
		font-size: 1.5rem;
	}
	.footer__copy{
		margin-top: 8rem;
		padding-bottom: 1rem;
	}

	.scrollup{
		right: 3rem;
	}
}