﻿/* 
  ##Device = All
  ##Screen = Styles will be apply for all resolutions
*/

/* CSS */
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    border: solid 1px gray;
}

:root {
    --swiper-theme-color: white !important;
}

.gallery_item_1 {
    grid-area: area1;
}

.gallery_item_4 {
    grid-area: area4;
}


.gallery_item_5 {
    grid-area: area5;
    object-fit: cover;
}

.gallery_item_6 {
    grid-area: area6;
    object-fit: cover;
}

.gallery_item_7 {
    grid-area: area7;
}

.gallery_item_9 {
    grid-area: area9;
    object-fit: cover;
}

.gallery-containerSecond {
    display: grid;
    grid-template-areas:
        'area1 . .'
        'area1 area5 area6'
        'area4 area5  area9'
        'area7 area8 area10';
}

    .gallery-containerSecond > div {
        text-align: center;
    }

.img-grid-gallery {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,2px) !important;
    top: var(--swiper-pagination-top,auto);
    left: 0;
    width: 100%;
}

.color-image-swiper {
    aspect-ratio: 2;
}

.section-galerySecond {
    margin: 5% 10% 5% 10%;
}

.arrow_next {
    width: 45pc;
    height: 45px;
}

.arrow_prev {
    width: 45pc;
    height: 45px;
}

.vehicle-color-information {
    text-align: center;
    padding: 2rem 0rem;
}

    .vehicle-color-information h5 {
        margin-top: 1rem;
    }

.vehicle-selector {
    margin: 5% 10%;
}

    .vehicle-selector h4 {
        display: flex;
        justify-content: center;
        color: #314257;
        text-align: center;
        font-family: FordAntennaMedium;
        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 1.8px;
    }

    .vehicle-selector h5 {
        display: flex;
        justify-content: center;
        margin-bottom: 4rem;
        color: #314257;
        text-align: center;
        font-family: FordAntennaLight;
        font-size: 26px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 1.3px;
    }

.vehicle-color-information h6 {
    color: #314257;
    text-align: center;
    font-family: FordAntennaLight;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.3px;
    margin-bottom: 1rem;
}

.button_selector {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.button_vehicle {
    display: flex;
    border: none;
    background: #012E40;
    color: #fff;
    width: 315px;
    height: 67px;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
}

.text_link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    margin: auto;
    color: #FFF;
    font-family: FordAntennaLight;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 75% */
    cursor: pointer;
}

    .text_link:hover {
        color: #2D96CD;
    }


.btn-circle {
    width: 40px;
    height: 40px;
    border: solid 1px #8080807a;
    border-radius: 20px;
    background: linear-gradient(18deg, rgba(249,247,251,0) 69%, rgba(255,254,252,1) 78%, rgba(249,245,245,1) 96%);
    box-shadow: 0 0 4px rgba(0,0,0,0.8);
}



/* 
  ##Device = Desktops large
  ##Screen = 1920px to higher resolution desktops
*/
@media (min-width: 1920px) {
    /* CSS */
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to 1919px
*/

@media (min-width: 1281px) and (max-width: 1919px) {
}

/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */

@media (min-width: 1025px) and (max-width: 1280px) {
}

/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) {
    .button_vehicle {
        margin-left: 0.5rem;
    }

    .button_selector {
        flex-wrap: wrap;
        flex-direction: row;
    }
}

/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}

/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */

@media (min-width: 481px) and (max-width: 767px) {

    .button_selector {
        flex-wrap: wrap;
        flex-direction: row;
    }
}

/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */

@media (min-width: 320px) and (max-width: 480px) {
    .gallery_item_1 {
        grid-area: area1;
    }

    .gallery_item_2 {
        grid-area: area2;
    }

    .gallery_item_3 {
        grid-area: area3;
    }

    .gallery_item_4 {
        grid-area: area4;
    }

    .gallery_item_5 {
        grid-area: area5;
    }

    .gallery_item_6 {
        grid-area: area6;
    }

    .gallery_item_7 {
        grid-area: area7;
    }

    .gallery_item_8 {
        grid-area: area8;
    }

    .gallery_item_9 {
        grid-area: area9;
    }

    .gallery_item_10 {
        grid-area: area10;
    }

    .gallery-containerSecond {
        display: grid;
        grid-template-areas:
            'area1 area2'
            'area4 area4 '
            'area5 area6 '
            'area7 area8 '
            'area3 area9 '
            'area10 area10';
    }

    .vehicle-selector {
        margin: 5% 5%;
    }

    .vehicle-color-information {
        padding: 1rem 0rem;
    }

    .vehicle-selector h4 {
        color: #314257;
        font-size: 15px;
        letter-spacing: 0.75px;
    }

    .vehicle-selector h5 {
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.8px;
        margin-bottom: 1rem;
    }

    .arrow_next {
        width: 23px;
        height: 23px;
    }

    .arrow_prev {
        width: 23px;
        height: 23px;
    }

    .btn-circle {
        width: 20px;
        height: 20px;
    }

    .button_vehicle {
        border-radius: 0.5rem;
        width: 135px;
        height: 50px;
        margin-bottom: 1rem;
        text-align: center;
        margin-left: 0.5rem;
    }

    .vehicle-color-information h6 {
        font-size: 12px;
        letter-spacing: 0.6px;
    }

    .text_link {
        font-size: 13px;
    }

    .logo_button {
        width: 50px;
        height: 50px;
    }

    .button_selector {
        flex-wrap: wrap;
        flex-direction: row;
    }
}
