@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

:root {
    --white: #fff;
    --red: #fB3038;
    --blue: #2d44da;
    --black: #2f2f2f;
    --yellow: #f9dc1f;
}

html {
  scroll-behavior: smooth;
}

.main {
    display: flex;
    min-height: 100vh;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(#1c1c1c, #323232);
}

header {
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.menu {
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 80px;
    display: flex;
    position: fixed;
    transition: .5s;
    padding: 0 100px;
    padding-top: 5px;
    align-items: center;
    background: rgb(23, 23, 23);
    box-shadow: 1px 1px 2px black;
    justify-content: space-between;
}

.load {
    left: 0;
    width: 0%;
    z-index: 3;
    height: 2px;
    position: fixed;
    margin-top: 80px;
    background: var(--yellow);
    transition: width 0.2s ease-out;
}

.content-logo {
    width: 20%;
    height: 100%;
    display: flex;
    transition: .5s;
    margin-left: -3%;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
}

.logo {
    max-width: 100px;
    pointer-events: none;
}

.navigation {
    display: flex;
    margin-left: -4%;
}

.navigation li {
    list-style: none;
}

.navigation li a {
    font-weight: 600;
    transition: 0.3s;
    margin-left: 40px;
    position: relative;
    color: var(--white);
    text-decoration: none;
}

.navigation li a:hover {
    color: var(--yellow);
}

.access {
    width: 20%;
    height: 100%;
    display: flex;
    transition: .5s;
    list-style: none;
    margin-right: -3%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
}

.access li {
    transition: 0.3s;
    font-size: 1.3em;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

.access li:hover {
    cursor: pointer;
    color: var(--yellow);
}

.toggle {
    width: 50px;
    height: 30px;
    display: none;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
}

.toggle:hover {
    cursor: pointer;
}

.toggle span {
    width: 28px;
    height: 3px;
    transition: 0.5s;
    position: absolute;
    border-radius: 4px;
    background: var(--yellow);
}

.toggle span:nth-child(1) {
    left: 15px;
    width: 28px;
    transform: translateY(-8px);
}

.toggle.active span:nth-child(1) {
    width: 28px;
    transform: translateY(0px) rotate(45deg);
}

.toggle span:nth-child(2) {
    left: 15px;
    width: 28px;
    transform: translateY(8px);
}

.toggle.active span:nth-child(2) {
    width: 28px;
    transform: translateY(0px) rotate(-45deg);
}

.toggle span:nth-child(3) {
    left: 15px;
    width: 28px;
}

.toggle.active span:nth-child(3) {
    opacity: 0;
}

.list {
    top: -80px;
    right: 0px;
    z-index: 2;
    width: 200px;
    position: fixed;
    text-align: end;
    transition: 0.5s;
    overflow: hidden;
    list-style: none;
    padding: 10px 10px;
    background: #242424;
    box-shadow: 1px 1px 2px black;
}

.list.active {
    top: 75px;
}

.list a {
    margin: 20px 10px;
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.list a:hover {
    color: var(--yellow);
}

.buy {
    top: 0;
    z-index: 5;
    width: 400px;
    height: 100%;
    right: -400px;
    padding: 40px;
    position: fixed;
    transition: .5s;
    background: #1c1c1c;
    box-shadow: -1px 1px 5px #000;
}

.buy.active {
    right: 0px;
}

.buy span {
    width: 90%;
    font-size: 1.1em;
    font-weight: bold;
    position: absolute;
    pointer-events: none;
}

.close {
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1.5em;
    position: absolute;
    border-radius: 7px;
    pointer-events: auto;
    border: 2px solid #333;
    transition: .5s;
}

.close:hover {
    cursor: pointer;
    color: var(--yellow);
    border-color: var(--yellow);
}

.items-buy {
    padding: 10px;
    overflow: scroll;
    border-width: 2px;
    margin: 40px -20px;
    border-style: solid;
    border-radius: 20px;
    border-color: #3b3b3b;
    width: calc(100% + 40px);
    height: calc(100% - 140px);
}

.info-buy {
    height: 60px;
    color: white;
    font-size: 0.5em;
    margin-top: -40px;
    margin-left: -20px;
    font-weight: normal;
    text-align: center;
}

.btn-buy {
    width: 60%;
    height: 40px;
    margin: auto;
    display: flex;
    color: white;
    transition: .5s;
    margin-top: 85px;
    font-weight: bold;
    user-select: none;
    background: #333;
    align-items: center;
    border-radius: 20px;
    justify-content: center;
    border: 2px solid white;
}

.btn-buy:hover {
    height: 45px;
    color: #838383;
    font-size: 1.1em;
    border-radius: 22.5px;
    width: calc(60% + 10px);
    background: var(--yellow);
    box-shadow: 1px 1px 10px #000;
    box-shadow: inset 0px 0px 5px 5px rgba(0, 0, 0, 0.3);
}

.item-buy {
    display: flex;
    padding: 10px;
    transition: .5s;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 20px;
    flex-direction: row;
    border: 2px solid #3b3b3b;
}

.item-buy:hover {
    border-color: var(--yellow);
}

.item-buy:hover img {
    filter: brightness(1.0);
}

.item-buy:nth-child(1) {
    margin-top: 0;
}

.image-buy {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 20px;
}

.image-buy img {
    width: 100%;
    height: 100%;
    filter: brightness(0.7);
}

.description-buy {
    width: 70%;
    color: white;
    display: flex;
    margin-left: 10px;
    position: relative;
    flex-direction: column;
}

.title-buy {
    width: 100%;
    height: 70px;
    display: flex;
    margin-top: -5px;
    align-items: center;
}

.more-buy {
    width: 100%;
    bottom: 10px;
    display: flex;
    position: absolute;
    flex-direction: row;
}

.price-buy {
    left: 0;
    width: 60%;
    bottom: -10px;
    display: block;
    position: absolute;
}

.trash-buy {
    right: 0;
    width: 30px;
    height: 30px;
    bottom: -10px;
    font-size: 1.5em;
    display: block;
    transition: .5s;
    position: absolute;
    border-radius: 10px;
    border: 2px solid #3b3b3b;
}

.trash-buy:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}

.content {
    width: 100%;
    display: flex;
    position: absolute;
    justify-content: center;
    flex-direction: column;
}

.first {
    width: 100%;
}

.first:hover .car {
    filter: brightness(0.8);
}

.container-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider {
    width: 400%;
    height: 400%;
    display: flex;
    margin-left: -100%;
}

.slider-section {
    width: 100%;
}

.car {
    width: 100%;
    margin-top:-20px;
    transition: 0.5s;
    object-fit: cover;
    pointer-events: none;
    filter: brightness(0.5);
}

.slider-btn {
    top: 50%;
    width: 0px;
    height: 0px;
    cursor: pointer;
    position: absolute;
    background: transparent;
    transform: translateY(-50%);
}

.slider-btn-right {
    right: 3.5%;
	width: 3vmin;
	height: 3vmin;
    transition: 0.5s;
	position: absolute;
    border-style: solid;
    border-color: white;
	box-sizing: border-box;
	transform: rotate(45deg);
	border-width: 4px 4px 0 0;
}

.slider-btn-right::before {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	transition: .2s ease;
	transform-origin: 100% 0;
}
	
.slider-btn-right::after {
	top: -100%;
	content: '';
	float: left;
	width: 100%;
	height: 100%;
	position: relative;
	border-style: solid;
	transition:.2s ease;
	border-color: #fafafa;
	border-width: 0 3px 0 0;
	transform-origin: 100% 0;
}

.slider-btn-right:hover{
	border-color: var(--yellow);
}

.slider-btn-right:hover::after {
	height: 140%;
    transform: rotate(45deg);
	border-color: var(--yellow);
}

.slider-btn-right:hover::before {
    border-color: var(--yellow);
}

.slider-btn-left {
    left: 3.5%;
	width: 3vmin;
	height: 3vmin;
    transition: 0.5s;
	position: absolute;
    border-style: solid;
    border-color: white;
	box-sizing: border-box;
	border-width: 4px 4px 0 0;
	transform: rotate(-135deg);
}
.slider-btn-left::before {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	transition: .2s ease;
	transform-origin: 100% 0;
}
	
.slider-btn-left:after {
	top: -100%;
	content: '';
	float: left;
	width: 100%;
	height: 100%;
	position: relative;
	transition:.2s ease;
	border-style: solid;
	border-color: #fafafa;
	border-width: 0 3px 0 0;
    transform: rotate(90deg);
	transform-origin: 100% 0;
}

.slider-btn-left:hover{
	border-color: var(--yellow);
}

.slider-btn-left:hover::after {
	height: 140%;
    transform: rotate(45deg);
	border-color: var(--yellow);
}

.slider-btn-left:hover::before {
    border-color: var(--yellow);
}

.content h2 {
    cursor: default;
    margin-left: 7%;
    font-size: 2.5em;
    font-weight: 400;
    margin-top: -50%;
    position: relative;
    margin-right: auto;
    font-family: Impact;
    color: var(--white);
    pointer-events: none;
    text-shadow: 1px 1px 1px #313131;
}

.btn {
    width: 20%;
    z-index: 1;
    height: 50px;
    transition: 0.5s;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    color: var(--white);
    border-radius: 40px;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 2px solid #fff;
    text-transform: uppercase;
    background: rgb(23, 23, 23);
    box-shadow: 1px 1px 5px #313131;
}

.btn:hover {
    width: 25%;
    cursor: pointer;
    color: var(--white);
    letter-spacing: 0.25em;
    background: var(--yellow);
    text-shadow: 1px 1px 5px #9d9d9d;
    box-shadow: 0 0 35px var(--yellow);
}

.btn::before {
    content: '';
    position: absolute;
    background: #27282c;
}

.btn span{
    display: block;
    font-size: 100%;
    margin-top: 12px;
    position: relative;
}

.btn i {
    display: block;
}

.btn i::before {
    top: -7px;
    left: 90%;
    content: '';
    width: 20px;
    height: 10px;
    transition: 0.5s;
    position: absolute;
    border-radius: 10px;
    background: #27282c;
    border: 2px solid #fff;
    transform: translateX(-50%);
}

.btn:hover i::before {
    left: 10%;
    width: 30px;
    border: 2px solid #fff;
    background: var(--yellow);
    box-shadow: 0 0 35px var(--yellow);
}

.btn i::after {
    left: 10%;
    width: 20px;
    content: '';
    bottom: -7px;
    height: 10px;
    transition: 0.5s;
    position: absolute;
    border-radius: 10px;
    background: #27282c;
    border: 2px solid #fff;
    transform: translateX(-50%);
}

.btn:hover i::after {
    left: 90%;
    width: 30px;
    border: 2px solid #fff;
    background: var(--yellow);
    box-shadow: 0 0 35px var(--yellow);
}

.carruselpos {
    width: 100%;
    bottom: 25px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
}

.pos {
    width: 25px;
    margin: 10px;
    border-radius: 50%;
    pointer-events: none;
    animation-duration: 1.0s;
    animation-name: spinner-loading;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.carruselbtns {
    width: 96%;
    bottom: 415px;
    display: flex;
    margin-left: 2%;
    margin-right: 2%;
    min-height: 40px;
    position: absolute;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.carruselbtns a {
    color: white;
    font-size: 4.1em;
}

.carruselbtns a:hover {
    color: var(--yellow);
}

.about {
    width: 90%;
    padding: 30px;
    cursor: default;
    padding-bottom: 0px;
    scroll-margin-block-start: 80px;
}

.contain-about {
    padding: 30px;
}

.subtitle {
    z-index: 2;
    color: white;
    font-size: 2em;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.aboutme {
    color: white;
    display: block;
    font-size: 20px;
    margin-top: 30px;
    text-align: center;
}

.services {
    width: 90%;
    display: flex;
    cursor: default;
    padding: 30px 60px;
    position: relative;
    align-items: center;
    flex-direction: column;
    scroll-margin-block-start: 110px;
}

.description {
    width: 100%;
    color: white;
    font-size: 20px;
    margin-top: 30px;
    text-align: center;
}

.content-service {
    width: 100%;
}

.content-services2 {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    border-radius: 10px;
}

.title-service {
    width: 100%;
    color: white;
    font-size: 2em;
}

.content-items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    align-items: center;
    justify-content: space-between;
}

.service-item {
    position: relative;
    flex-basis: calc(25% - 10px);
    text-align: center;
    border-radius: 10px;
    transition: 0.5s;
}

.service-item:hover {
    border: 3px solid var(--yellow);
}

.service {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(0.5);
}

.service-item:hover .service {
    filter: brightness(1.0);
    box-shadow: 1px 1px 5px var(--yellow);
}

.title-item {
    left: 0;
    z-index: 2;
    width: 100%;
    color: white;
    font-size: 1.2em;
    position: absolute;
    text-shadow: 2px 2px 10px #000;
}

.content-packages {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.item-package {
    width: 380px;
    height: 500px;
    display: flex;
    overflow: hidden;
    margin-top: 10px;
    transition: 0.5s;
    position: relative;
    border-radius: 20px;
    align-items: center;
    flex-direction: column;
    box-shadow: 1px 1px 5px #000;
}

.item-package:hover{
    height: 500px;
    border: 2px solid var(--yellow);
    box-shadow: 1px 1px 5px var(--yellow);
}

.item-package:hover:nth-child(2){
    height: 590px;
}

.item-package:hover:nth-child(3){
    height: 680px;
}

.item-package:hover:nth-child(4){
    height: 730px;
}

.item-package:hover:nth-child(5){
    height: 730px;
}

.marker {
    width: 100%;
    height: 5px;
    z-index: 2;
    border-radius: 10px;
    background: var(--yellow);
}

.subtitle-image {
    color: white;
    font-size: 2em;
    display: block;
    margin-top: -10px;
    text-align: center;
    margin-bottom: 10px;
    z-index: 2;
    text-shadow: 2px 2px 10px #000;
}

.item-package ul {
    width: 80%;
    z-index: 2;
    display: block;
    text-align: start;
}
    
.item-service {
    color: white;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px #000;
}

.btn-cart {
    z-index: 2;
    bottom: 10px;
    margin: auto;
    width: 180px;
    height: 30px;
    color: white;
    background: #333;
    transition: 0.5s;
    position: absolute;
    text-align: center;
    border-radius: 20px;
    border: 2px solid white;
    box-shadow: 1px 1px 5px #000;
}

.btn-cart.active {
    z-index: 2;
    bottom: 10px;
    margin: auto;
    width: 180px;
    height: 30px;
    background: #333;
    transition: 0.5s;
    position: absolute;
    text-align: center;
    border-radius: 20px;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    box-shadow: 1px 1px 5px #000;
}

.btn-cart:hover {
    width: 200px;
    height: 35px;
    color: #838383;
    font-size: 1.1em;
    background: var(--yellow);
    box-shadow: 1px 1px 10px #000;
    box-shadow: inset 0px 0px 5px 5px rgba(0, 0, 0, 0.3);
}

.btn-cart.active:hover {
    width: 200px;
    height: 35px;
    color: #838383;
    font-size: 1.1em;
    background: var(--yellow);
    box-shadow: 1px 1px 10px #000;
    box-shadow: inset 0px 0px 5px 5px rgba(0, 0, 0, 0.3);
}

.btn-cart .check {
    top: 7px;
    display: none;
    font-size: 1.5em;
    position: relative;
}

.btn-cart.active .check {
    display: inline-block;
}

.span-cart {
    bottom: 5px;
    height: 100%;
    border: none;
    font-size: 1em;
    font-weight: bold;
    position: relative;
    background: rgba(0, 0, 0, 0.0);
}

.item-cart {
    top: 7px;
    font-size: 1.5em;
    position: relative;
}

.image-service {
    height: 500px;
    transition: 0.5s;
    object-fit: cover;
    position: absolute;
    pointer-events: none;
    filter: brightness(0.5);
}

.item-package:hover .image-service {
    height: 100%;
    transition: 0.5s;
    filter: brightness(1.0);
}

.item-package:hover .subtitle-image {
    text-shadow: 2px 2px 10px #000;
}

.certificaciones {
    scroll-margin-block-start: 80px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.subtitle-cert {
    margin-top: 30px;
    display: block;
    text-align: center;
    color: white;
    font-size: 2em;
    z-index: 2;
}

.slider-certif {
    display: flex;
    margin-top: 20px;
    width: calc(300px * 20);
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
}

.slider-certif > div:first-child {
  animation-delay: 0s;
}

.slider-certif > div:last-child {
  animation-delay: 40s;
}

.cert-section {
    width: 300px;
}

.certif {
    width: 100%;
    height: 60px;
    object-fit: cover;
    pointer-events: none;
}

.ubication {
    width: 100%;
    padding: 40px;
    text-align: center;
    scroll-margin-block-start: 80px;
}

.container-ubi {
    display: flex;
    border-radius: 20px;
    box-shadow: 1px 1px 5px #181818;
}

.soporte {
    width: 40%;
    padding: 40px;
    text-align: start;
}

.soporte li {
    color: white;
    cursor: default;
}

.soporte span {
    color: white;
}

.direccion {
    display: block;
    color: white;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.phone {
    cursor: pointer;
}

.email {
    cursor: pointer;
}

.gps-1 {
    cursor: pointer;
}

.map {
    width: 60%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.end {
    height: 140px;
    width: 100%;
}

.divisor {
    width: 100%;
    height: 90px;
    padding: 30px;
    color: #c6c6c6;
    margin-top: 50px;
    font-weight: 450;
    text-align: center;
    background: #242424;
}

.divisor font {
    cursor: default;
}

.privacity {
    color: #e6e6e6;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: underline;
}

.privacity:hover {
    color: #c6c6c6;
    cursor: pointer;
    color: var(--yellow);
}

.footer {
    left: 0;
    bottom: 0;
    width: 40%;
    display: flex;
    position: fixed;
    padding: 20px 100px;
    align-items: center;
    justify-content: space-between;
}

.sci {
    display: flex;
}

.sci li {
    list-style: none;
}

.sci li a {
    font-size: 2em;
    transition: 0.3s;
    margin-right: 20px;
    color: var(--white);
}

.sci li a:hover {
    cursor: pointer;
    color: var(--yellow);
}

.notify {
    z-index: 4;
    bottom: 40px;
    width: 260px;
    height: 90px;
    right: -260px;
    padding: 20px;
    display: flex;
    position: fixed;
    transition: 1s;
    user-select: none;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background: var(--yellow);
}

.msg-notify {
    font-weight: bold;
}

.icon-notify {
    position: relative;
    top: 3px;
    font-size: 1.1em;
}

@media screen and (max-width: 1300px) {
    
}

@media screen and (max-width: 1170px) {
    
    .menu {
        height: 70px;
    }
    
    .content-logo {
        margin-left: -4.5%;
    }
    
    .access {
        margin-right: -4.5%;
    }
    
    .load {
        margin-top: 70px;
    }
    
    .btn {
        height: 45px;
    }

    .btn span {
        display: block;
        font-size: 90%;
    }
    
}

@media screen and (max-width: 1154px) {
    
    .content-logo {
        margin-left: -6.5%;
    }
    
    .access {
        margin-right: -6.5%;
    }
    
}

@media screen and (max-width: 1024px) {
    
    .content-logo {
        margin-left: -9%;
    }
    
    .access {
        margin-right: -9%;
    }
    
}

@media screen and (max-width: 960px) {
    
    .menu {
        height: 60px;
    }
    
    .content-logo {
        margin-left: -10%;
        width: 17%;
    }
    
    .logo {
        width: 60px;
    }
    
    .navigation {
        margin-left: -5%;
        font-size: 1em;
    }
    
    .access {
        margin-right: -10%;
        width: 17%;
    }
    
    .load {
        margin-top: 60px;
    }
    
    .btn span {
        font-size: 70%;
    }

    .btn-cart:hover {
        z-index: 2;
        bottom: 10px;
        margin: auto;
        width: 180px;
        height: 30px;
        color: white;
        background: #333;
        transition: 0.5s;
        position: absolute;
        text-align: center;
        border-radius: 20px;
        border: 2px solid white;
        box-shadow: 1px 1px 5px #000;
    }

    .btn-cart.active:hover {
        z-index: 2;
        bottom: 10px;
        margin: auto;
        width: 180px;
        height: 30px;
        background: #333;
        transition: 0.5s;
        position: absolute;
        text-align: center;
        border-radius: 20px;
        color: var(--yellow);
        border: 2px solid var(--yellow);
        box-shadow: 1px 1px 5px #000;
    }
    
}

@media screen and (max-width: 830px) {
    
    .content-logo {
        margin-left: -12%;
    }
    
    .navigation {
        font-size: 0.8em;
    }
    
    .access {
        margin-right: -12%;
    }
    
    .content h2 {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        text-align: center;
        font-size: 2em;
    }
    
    .btn {
        width: 25%;
    }
    
    .aboutme {
        font-weight: bold;
    }
    
    .description {
        font-size: 1em;
        font-weight: bold;
    }
    
    .item-package {
        width: 280px;
        height: 370px;
    }
    
    .subtitle-image {
        font-size: 1.5em;
        font-weight: bold;
    }

    .item-service {
        font-size: 0.8em;
    }
    
    .certif {
        height: 50px;
    }

    .container-ubi {
        flex-direction: column;
    }
    
    .soporte {
        width: 100%;
        text-align: center;
    }
    
    .direccion {
        font-weight: bold;
    }
    
    .map {
        width: 100%;
        border-radius: 0 0 20px 20px;
    }
    
    .footer {
        padding: 0 3%;
    }
    
    .divisor {
        height: 140px;
    }
    
    .divisor font:first-child {
        display: block;
        text-align: center;
        width: 100%;
        margin-top: 10px;
        font-weight: bold;
    }
    
    .privacity {
        color: var(--yellow);
        font-weight: bold;
    }

    .sci {
        flex-direction: column;
    }

}

@media screen and (max-width: 800px) {
    
    .content-logo {
        margin-left: -16%;
    }
    
    .access {
        margin-right: -16%;
        width: 60px;
    }

    .car {
        margin-top:40px;
    }
    
    .content h2 {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        text-align: center;
        font-size: 1em;
    }

    .btn {
        height: 40px;
    }
    
    .btn span {
        margin-top: 10px;
    }
    
    .about {
        width: 100%;
        height: 410px;
        overflow: hidden;
    }
    
    .contain-about {
        padding: 0;
        width: 100%;
    }
    
    .subtitle {
        font-size: 1em;
        font-weight: bold;
    }
    
    .services {
        padding-left: 0;
        padding-right: 0;
    }
    
    .content-packages {
        width: 90%;
    }

    .item-package {
        width: 280px;
        height: 360px;
    }

    .item-package:hover {
        border: 2px solid var(--yellow);
        box-shadow: 1px 1px 5px var(--yellow);
        height: 360px;
    }

    .item-package:hover:nth-child(2){
        height: 430px;
    }

    .item-package:hover:nth-child(3){
        height: 490px;
    }

    .item-package:hover:nth-child(4){
        height: 540px;
    }

    .item-package:hover:nth-child(5){
        height: 520px;
    }
    
    .subtitle-image {
        font-size: 1em;
    }
    
    .subtitle-cert {
        font-size: 1em;
        font-weight: bold;
    }
    
}


@media screen and (max-width: 720px) {
    
    .content-logo {
        margin-left: -60px;
        width: 150px;
    }
    
    .content-logo a {
        margin-left: 40px;
    }
    
    .navigation {
        display: none;
    }
    
    .access {
        position: absolute;
        margin: 0;
        right: 75px;
        width: 80px;
    }
    
    .toggle {
        position: absolute;
        right: 15px;
        display: flex;
    }
    
    .toggle span {
        width: 20px;
        height: 2px;
    }
    
    .toggle span:nth-child(1) {
        width: 25px;
        transform: translateY(-6px);
    }
    
    .toggle span:nth-child(2) {
        width: 25px;
        transform: translateY(0px);
    }
    
    .toggle span:nth-child(3) {
        width: 25px;
        transform: translateY(6px);
    }

    .logo {
        margin-left: -40px;
        max-width: 80px;
    }
    
    .load {
        margin-top: 60px;
    }

    .first {
        margin-top: -30px
    }
    
    .car {
        margin-top: 70px;
    }
    
    .slider-btn {
        margin-top: 30px;
    }
    
    .slider-btn-left {
	   border-width: 2px 2px 0 0;
    }
    
    .slider-btn-left::after {  
	   border-width: 0 2px 0 0;
    }
    
    .slider-btn-right {
	   border-width: 2px 2px 0 0;
    }
    
    .slider-btn-right::after {
        border-width: 0 2px 0 0;
    }
    
    .content h2 {
        margin-top: -55%;
        font-size: 1.5em;
    }

    .btn {
        font-size: 1.0em;
        margin-top: 25px;
        width: 200px;
        height: 30px;
        border-width: 1px;
    }
    
    .btn i::after {
        border-width: 1px;
    }
    
    .btn i::before {
        border-width: 1px;
    }

    .btn span {
        margin-top: 5px;
    }
    
    .btn:hover {
        width: 200px;
    }
    
    .btn:hover i::before {
        width: 25px;
        border-width: 1px;
    }
    
    .btn:hover i::after {
        width: 25px;
        border-width: 1px;
    }
    
    .subtitle {
        font-size: 1em;
        font-weight: bold;
    }
    
    .about {
        height: 230px;
    }

    .aboutme {
        font-size: 1.0em;
    }
    
    .content-packages {
        width: 90%;
    }

    .item-package {
        width: 200px;
        height: 265px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
}

@media screen and (max-width: 480px) {
    
    .body.active {
        overflow:hidden;
    }
    
    .menu {
        padding-top: 0;
        height: 30px;
    }
    
    .content-logo {
        width: 100px;
    }
    
    .logo {
        width: 40px;
    }
    
    .access {
        right: 54px;
        width: 60px;
    }
    
    .access li {
        font-size: 0.8em;
    }
    
    .toggle {
        right: 0;
    }
    
    .toggle span {
        height: 1px;
    }
    
    .toggle span:nth-child(1) {
        width: 15px;
        transform: translateY(-4px)
    }
    
    .toggle span:nth-child(2) {
        width: 15px;
        transform: translateY(0px)
    }
    
    .toggle span:nth-child(3) {
        width: 15px;
        transform: translateY(4px)
    }
    
    .load {
        margin-top: 30px;
    }
    
    .list {
        top: -110px;
    }
    
    .list.active {
        top: 30px;
    }
    
    .buy.active {
        width: 100%;
    }
    
    .car {
        margin-top: 50px;
    }
    
    .slider-btn {
        margin-top: 10px;
    }
    
    .content h2 {
        width: 100%;
        font-size: 1em;
    }
    
    .btn {
        margin-top: 10px;
        width: 150px;
        height: 30px; 
        border-width: 1px;
    }
    
    .btn i::before {
        width: 15px;
        height: 8px;
        top: -5px;
        border-width: 1px;
    }
    
    .btn i::after {
        width: 15px;
        height: 8px;
        bottom: -5px;
        border-width: 1px;
    }
    
    .btn:hover i::before {
        width: 20px;
        border-width: 1px;
    }
    
    .btn:hover i::after {
        width: 20px;
        border-width: 1px;
    }
    
    .btn span {
        margin-top: 10px;
        font-size: 0.5em;
    }
    
    .pos {
        width: 15px;
    }
    
    .content-packages {
        width: 280px;
    }

    .item-package {
        width: 280px;
        height: 370px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
}

/*========================SCROLLBAR=======================*/

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(28,28,28,1);
}

*::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 30px;
}

*::-webkit-scrollbar-corner {
    background: transparent;
}

.buy::-webkit-scrollbar-track {
    background: transparent;
}

.buy::-webkit-scrollbar {
    background: transparent;
}

.buy::-webkit-scrollbar-thumb {
    background: transparent;
}

@keyframes deslizar {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(110%);
  }
}

@keyframes spinner-loading{
  0% {
      transform: rotate(0deg)
  } to {
      transform: rotate(1turn)
  }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-300px * 7));
        transform: translateX(calc(-300px * 7));
    }
}