/* ---HEADER--- */

header .desktop_header .button_contain .address_button {
    color: white;
    text-shadow: 2px 2px 5px #00000025;
    border: 2px solid white;
    background: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
    box-shadow: 2px 2px 5px #00000025;
}

header .desktop_header .button_contain .address_button:hover {
    color: var(--orange);
    text-shadow: none;
}


/* ---BANNER SECTION--- */

.banner_section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 10% 5% 5% 5%;
    background: linear-gradient(90deg, white 50%, var(--orange) 50%);
    background-size: 200%;
    animation: background_animation 2s forwards;
}

@keyframes background_animation {
    from {
        background-position: 50%;
    }
    to {
        background-position: 250%;
    }
}

.banner_transition {
    animation: background_transition_animation 2s forwards;
}

@keyframes background_transition_animation {
    from {
        background-position: 50%;
    }
    to {
        background-position: 250%;
    }
}

.banner_section .banner_box {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 20% 60% 20%;
}

.banner_section .networks_box {
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner_section .networks_box a {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.banner_section .networks_box i {
    color: #ff7e22;
}

.banner_section .networks_box i:hover {
    color: black;
}

.banner_section .dots_box {
    padding-left: 15%;
}

.banner_section .dots_box,
.banner_section .dots_items {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_section .dots_box hr {
    width: 5px;
    height: 25%;
    border: 0;
    border-radius: 5px;
    margin-left: 1px;
}

.banner_section .dots_box hr:first-child {
    background: linear-gradient(to bottom, #ff7e22, #ff7e2200);
}

.banner_section .dots_box hr:last-child {
    background: linear-gradient(to top, #ff7e22, #ff7e2200);
}

.banner_section .dot_item {
    width: fit-content;
    display: flex;
    align-items: center;
    margin: 5px 0;
    cursor: pointer;
}

.banner_section .dot_item button {
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border: 0;
    border-radius: 50%;
    background: #ff7e22;
}

.banner_section .dot_item:hover button,
.banner_section .dot_active button {
    background: black;
}

.banner_section .dot_item p {
    color: black;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: .25s;
    text-shadow: 2px 2px 2px #00000025;
}

.banner_section .dot_item:hover p,
.banner_section .dot_active p {
    opacity: 1;
}

.banner_section .contents_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_section .contents_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner_section .contents_item .title-banner {
    color: transparent;
    font-size: 62px;
    font-weight: 900;
    text-align: center;
    line-height: .8;
    padding-bottom: 5px;
    background: linear-gradient(to right, var(--orange) 50%, white 50%);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: none;
    filter: drop-shadow(3px 3px 2px #00000025);
    animation: text_animation 2s forwards;
}

@keyframes text_animation {
    from {
        background-position: 250%;
        opacity: 0;
    }
    to {
        background-position: 50%;
        opacity: 1;
    }
}

.banner_section .contents_item .title-banner span {
    font-size: 50px;
}

.banner_section .contents_item img {
    width: 70%;
    transform-origin: center;
    transform: translateY(-15px);
    animation: img_animation 2s forwards;
}

@keyframes img_animation {
    from {
        transform: scale(.5) translateY(-10px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(-10px);
        opacity: 1;
    }
}

@keyframes button_animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banner_section .nav_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner_section .cards_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner_section .card_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 20%;
    margin: 25px 0;
    border-radius: 10px;
    background: #fb54073e;
    transition: .25s;
}

.banner_section .car_item {
    overflow: hidden;
}

.banner_section .card_item:hover {
    transform: scale(1.05);
    background: #fb540789;
    cursor: pointer;
}

.banner_section .card_item img {
    width: 40%;
    transform: scale(1.4);
    transition: .5s;
}

.banner_section .car_item img {
    transform: scale(2);
}

.banner_section .card_item:hover img {
    transform: scale(1);
}

.banner_section .car_item:hover img {
    transform: scale(1.5);
}

.banner_section .card_item .card_info {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #00000063;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: .25s;
}

.banner_section .card_item:hover .card_info {
    visibility: visible;
    opacity: 1;
}

.banner_section .card_item .tittle-card{
    color: white;
    font-weight: 800;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 996px) {
    .banner_section .banner_box {
        grid-template-columns: 100%;
    }
    .banner_section .networks_box {
        display: none;
    }
    .banner_section .dots_box {
        padding-left: 0;
        margin-top: 30%;
        align-items: center;
        justify-content: space-between;
    }
    .banner_section .dots_box,
    .banner_section .dots_items {
        flex-direction: row;
    }
    .banner_section .dots_box hr {
        width: 25%;
        height: 5px;
        margin-left: 0;
    }
    .banner_section .dots_box hr:first-child {
        background: linear-gradient(to right, #ff7e22, #ff7e2200);
    }
    .banner_section .dots_box hr:last-child {
        background: linear-gradient(to left, #ff7e22, #ff7e2200);
    }
    .banner_section .dot_item {
        flex-direction: column-reverse;
        margin: 0 5px;
    }
    .banner_section .dot_item button {
        margin-right: 0;
    }
    .banner_section .dot_item p {
        font-size: 12px;
    }
    .banner_section .contents_box {
        order: -1;
        min-height: 250px;
        margin-top: 40%;
    }
    .banner_section .contents_item .title-banner {
        font-size: 30px;
        margin-bottom: 5px;
    }
    .banner_section .contents_item .title-banner span {
        font-size: 24px;
    }
    .banner_section .contents_item img {
        width: 80%;
    }
    .banner_section .cards_box {
        flex-direction: row;
        margin-top: 30px;
    }
    .banner_section .card_item {
        width: fit-content;
        height: 50px;
        margin: 0 5px;
        border-radius: 5px;
    }
    .banner_section .card_item img {
        width: 50%;
    }
    .banner_section .card_item .card_info {
        border-radius: 5px;
        padding: 5px;
    }
    .banner_section .card_item .tittle-card {
        font-size: 10px;
    }
}


/* ---ABOUT SECTION--- */

.about_section {
    padding: 0;
    background: black;
}

.about_section .about_box {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
}

.about_box .about_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20% 10% 20% 20%;
}

.about_section .about_info h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.about_section .about_info p {
    color: white;
}

.about_section .about_info hr {
    width: 15%;
    height: 5px;
    margin: 20px 0;
    border: 0;
    border-radius: 5px;
    background: var(--orange);
}

.about_section .about_info a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--orange);
    font-weight: 600;
    width: 200px;
    height: 40px;
    border: 2px solid var(--orange);
    margin-top: 5px;
    transform: skewX(-15deg);
    background: linear-gradient(to right, var(--orange) 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.about_section .about_info a:hover {
    color: black;
    background-position: 0;
}

.about_section .video_box {
    position: relative;
    overflow: hidden;
}

.about_section .video_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, black 0%, transparent 80%);
    z-index: 1;
}

.about_section .video_box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 996px) {
    .about_section .about_box {
        grid-template-columns: 100%;
    }
    .about_box .about_info {
        padding: 20% 10%;
    }
    .about_section .about_info h2 {
        font-size: 30px;
    }
    .about_section .about_info hr {
        width: 30%;
        height: 3px;
    }
    .about_section .video_box {
        height: 250px;
    }
    .about_section .video_box::before {
        display: none;
    }
    .about_section .video_box video {
        transform: scaleX(100%);
    }
}


/* ---CARDS SECTION--- */

.cards_section {
    padding: 10%;
    background: #eaeaea;
}

.cards_section .card_title {
    display: flex;
    justify-content: center;
}

.cards_section .cards_text {
    margin: 20%;
}

.cards_section .card_title h2 {
    font-size: 40px;
    text-align: center;
}

.cards_section .card_title h2 span {
    color: black;
}

.cards_section .cards_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3%;
}

.cards_section .card_item {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 50%;
    margin: 0 3%;
    border-radius: 10px;
}

.cards_section .card_item:nth-child(odd) {
    background: white;
}

.cards_section .card_item:nth-child(even) {
    background: var(--orange);
}

.cards_section .card_media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards_section .card_media img {
    position: absolute;
    transform-origin: right;
    transform: scale(1.2);
}

.cards_section .info_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 20px;
}

.cards_section .card_item h2 {
    font-size: 25px;
}

.cards_section .card_item p {
    margin: 15px 0;
}

.cards_section .card_item:nth-child(even) h2 {
    color: white;
}

.cards_section .card_item:nth-child(even) p {
    color: white;
}

.cards_section .card_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    width: fit-content;
    padding: 5px 20px;
    transform: skewX(-15deg);
}

.cards_section .card_item:nth-child(odd) a {
    color: var(--orange);
    border: 2px solid var(--orange);
    background: linear-gradient(to right, var(--orange) 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.cards_section .card_item:nth-child(even) a {
    color: white;
    border: 2px solid white;
    background: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.cards_section .card_item:nth-child(odd) a:hover {
    color: white;
    background-position: 0;
}

.cards_section .card_item:nth-child(even) a:hover {
    color: var(--orange);
    background-position: 0;
}

@media (max-width: 996px) {
    .cards_section {
        padding: 20% 10%;
    }
    .cards_section .card_title {
        display: flex;
        justify-content: center;
    }
    .cards_section .card_title h2 {
        font-size: 30px;
    }
    .cards_section .cards_box {
        flex-direction: column;
        margin: 0;
    }
    .cards_section .card_item {
        grid-template-columns: 100%;
        width: 100%;
        margin: 5% 0;
    }
    .cards_section .card_media img {
        width: 60%;
        position: relative;
        transform: scale(1);
    }
    .cards_section .info_card {
        align-items: center;
        padding: 30px 20px;
    }
    .cards_section .card_item:nth-child(odd) .card_media {
        padding-top: 30px;
    }
    .cards_section .card_item:nth-child(even) .info_card {
        padding: 0 20px 30px 20px;
    }
    .cards_section .card_item h2 {
        text-align: center;
    }
    .cards_section .card_item p {
        text-align: center;
    }
}


/* ---FILTER SECTION--- */

.filter_section {
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 5% 10%;
    background: linear-gradient(90deg, var(--orange) 40%, white 40%);
}

.filter_section .filter_box {
    height: 100%;
    display: grid;
    grid-template-columns: 25% 75%;
}

.filter_section .filter_box .list_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.filter_section .list_box h2 {
    color: black;
    font-size: 30px;
    margin-bottom: 15px;
}

.filter_section .list_box ul {
    position: relative;
    list-style: none;
}

.filter_section .list_box ul::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    width: 4px;
    height: 120%;
    border-radius: 4px;
    background: black;
    z-index: 0;
}

.filter_section .list_box li {
    position: relative;
    width: fit-content;
    font-weight: 600;
    margin: 15px 0 0 20px;
    transition: .25s;
    text-shadow: 1px 1px 2px #00000040;
}

.filter_section .list_box li:hover,
.filter_section .list_box .item_active {
    color: white;
    cursor: pointer;
}

.filter_section .list_box li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: white;
    transition: .25s;
}

.filter_section .list_box li:hover::after,
.filter_section .list_box .item_active::after {
    background: black;
}

.filter_section .list_box li::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: white;
    transition: .25s;
}

.filter_section .list_box li:hover::before,
.filter_section .list_box .item_active::before {
    width: 100%;
    box-shadow: 1px 1px 2px #00000040 !important;
}

.filter_section .filter_contents {
    display: grid;
    grid-template-columns: 35% 65%;
}

.filter_section .filter_media {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: intro_service 1s forwards;
}

.filter_section .contents_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: intro_service 1s forwards;
}

@keyframes intro_service {
    from {
        opacity: 0;
        transform: scale(.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.filter_section .contents_item h2 {
    font-size: 30px;
}

.filter_section .contents_item span {
    color: black;
}

.filter_section .contents_item hr {
    width: 15%;
    height: 5px;
    margin: 20px 0;
    border: 0;
    border-radius: 5px;
    background: var(--orange);
}

.filter_section .contents_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--orange);
    font-weight: 600;
    width: 200px;
    height: 40px;
    border: 2px solid var(--orange);
    margin-top: 20px;
    transform: skewX(-15deg);
    background: linear-gradient(to right, var(--orange) 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.filter_section .contents_item a:hover {
    color: white;
    background-position: 0;
}

@media(max-width: 996px) {
    .filter_section {
        height: inherit;
        padding: 20% 10%;
        background: linear-gradient(90deg, var(--orange) 50%, white 50%);
    }
    .filter_section .filter_box {
        grid-template-columns: 100%;
    }
    .filter_section .filter_box .list_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .filter_section .list_box h2 {
        font-size: 30px;
    }
    .filter_section .filter_contents {
        grid-template-columns: 100%;
    }
    .filter_section .filter_media {
        margin: 30px 0;
    }
    .filter_section .filter_media img {
        width: 50%;
    }
    .filter_section .contents_item {
        align-items: center;
    }
    .filter_section .contents_item h2 {
        text-align: center;
        text-shadow: 1px 1px 2px #00000040;
    }
    .filter_section .contents_item hr {
        background: #fb5407;
        width: 30%;
    }
    .filter_section .contents_item p {
        text-align: center;
    }
    .filter_section .contents_item a {
        color: black;
        border: 2px solid black;
        background: linear-gradient(to right, black 50%, transparent 50%);
        background-size: 200%;
        background-position: 100%;
    }
}


/* ---VIDEO SECTION--- */

.video_section {
    position: relative;
    height: 100vh;
}

.video_section .bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.video_section .video_box {
    height: 100%;
    display: flex;
    align-items: center;
}

.video_section .video_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding: 5%;
    border-radius: 10px;
    background: linear-gradient(to right, transparent, #ff7e22);
    animation: flash_aniamte 1s forwards;
}

@keyframes flash_aniamte {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}

.video_section .video_info h2 {
    color: white;
    font-size: 40px;
    text-align: right;
}

.video_section h2 span {
    font-size: 130px;
}

@media (max-width: 996px) {
    .video_section {
        height: 40vh;
    }
    .video_section .video_info h2 {
        font-size: 22px;
    }
    .video_section .video_info h2 br:first-child {
        display: none;
    }
    .video_section h2 span {
        font-size: 50px;
    }
}


/* ---LIST SECTION--- */

.list_section {
    padding: 0 0 0 10%;
    background: linear-gradient(90deg, var(--orange) 5%, white 5%);
}

.list_section .list_box {
    display: grid;
    grid-template-columns: 45% 55%;
}

.list_section .list_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20% 0;
}

.list_section .list_info h2 {
    font-size: 35px;
}

.list_section .list_info h2 span {
    color: black;
}

.list_section .list_info ul {
    list-style: none;
    margin: 15px 0;
}

.list_section .list_info li {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0 0 30px;
}

.list_section .list_info li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border: 5px solid var(--orange);
    border-radius: 50%;
}

.list_section .list_info a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-weight: 600;
    width: 200px;
    height: 40px;
    border: 2px solid black;
    margin-top: 20px;
    transform: skewX(-15deg);
    background: linear-gradient(to right, black 50%, transparent 50%);
    background-size: 200%;
    background-position: 100%;
}

.list_section .list_info a:hover {
    color: white;
    background-position: 0;
}

.list_section .list_media {
    position: relative;
}

.list_section .list_media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 996px) {
    .list_section {
        padding: 0;
    }
    .list_section .list_box {
        grid-template-columns: 100%;
    }
    .list_section .list_info {
        padding: 20% 10%;
    }
    .list_section .list_info h2 {
        font-size: 30px;
    }
    .list_section .list_info ul {
        margin: 10px 0;
    }
    .list_section .list_info li {
        font-size: 16px;
    }
    .list_section .list_info li::before {
        width: 7px;
        height: 7px;
    }
    .list_section .list_media {
        height: 300px;
    }
}


/* ---TESTIMONIALS SECTION--- */

.testimonials_section {
    background: black;
}

.testimonials_section .testimonials_box {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
}

.testimonials_section .testimonials_media {
    height: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    background: linear-gradient(to right, transparent 25%, var(--orange) 25%);
    overflow: hidden;
}

.testimonials_section .testimonials_media img {
    animation: testimonial_intro 1s forwards;
}

@keyframes testimonial_intro {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(2%);
    }
}

.testimonials_section .testimonials_items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10%;
    padding: 10%;
    background: #2a2a29;
    border-radius: 80px 5px 80px 5px;
}

.testimonials_section .card_items {
    display: grid;
    grid-template-columns: 20% 80%;
}

.testimonials_section .profile_box img {
    border: 5px solid var(--orange);
    border-radius: 50%;
}

.testimonials_section .comment_box {
    padding-left: 5%;
}

.testimonials_section .comment_box h2 span {
    color: white;
}

.testimonials_section .comment_box p {
    color: white;
}

.testimonials_section .dots_items {
    display: flex;
    justify-content: center;
}

.testimonials_section .dot_item {
    width: 10px;
    height: 10px;
    margin: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
}

.testimonials_section .dot_item:hover,
.testimonials_section .dot_active {
    background: white;
}

@media (max-width: 996px) {
    .testimonials_section {
        padding: 20% 10%;
    }
    .testimonials_section .testimonials_box {
        grid-template-columns: 100%;
    }
    .testimonials_section .testimonials_items {
        margin: 10% 0 0 0;
        padding: 5%;
        border-radius: 40px 5px 40px 5px;
    }
    .testimonials_section .profile_box img {
        border: 3px solid var(--orange);
    }
    .testimonials_section .comment_box h2 {
        font-size: 20px;
    }
    .testimonials_section .dot_item {
        width: 7px;
        height: 7px;
    }
}