/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{

    /* Google Font */
    --poppins: "Poppins", serif;
    
    /* Color Palette */
    --white: #fff;
    --light: #F4F4F4;
    --black: #000;
    --primary: #246BFF;
    --dark: #060F1C;
    --gray: #818181;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html, body {
    height: 100%;
    overflow-x:hidden;
    scroll-behavior: smooth;
}
body {
    font-family: var(--poppins);
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    background:var(--light);
    text-rendering: optimizeLegibility;
    color: var(--dark);
}
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

.paragraph {
    font-family: var(--poppins);
    font-weight: 400;
    line-height: 1.55;
    color: var(--gray);
    font-size: 18px;
}
section, .section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
}
a, button {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a, button {
	outline: none;
	box-shadow: none;
	border: none;
}
button {
	background: unset;
}
ol, ul {
    margin: 0;
    padding: 0;
}

ol li, ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input, input:focus, input:focus-visible, input:active, select, .form-select, .form-select:focus, textarea {
    outline: none;
    border: none;
    box-shadow: none;
}
* + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
	margin: 0;
	padding: 0;
}

*::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  opacity: 1;
}

/* --- Page Theme CSS Start --- */
p {
    letter-spacing: .32px;
}

.btn {
	height: 55px;
	padding: 14px 37px;
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
	border: 2px solid var(--primary);
	border-radius: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background-color: transparent;
}
.btn--white {
    color: var(--dark);
}
.btn__icon {
	font-size: 20px;
}
.btn:hover {
    border: 2px solid var(--primary);
    background-color: var(--primary);
    color: var(--white);
}
/* --- Page Theme CSS End --- */


/* --- Bootstrap Customized CSS Start --- */
.fs-1 {
	font-size: 80px !important;
	line-height: 1.17;
}
.fs-2 {
	font-size: 50px !important;
	line-height: 1.1;
}

.text-primary {
    color: var(--primary) !important;
}
.text-dark {
    color: var(--dark) !important;
}
.text-gray {
    color: var(--gray);
}
.bg-dark {
    background-color: var(--dark) !important;
}
/* --- Bootstrap Customized CSS End --- */


/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header__wrapper {
    padding: 25px 0 20px;
    border-bottom: 1px solid #28374D;
}
.logo {
    max-width: 420px;
}
.header__nav {
    gap: 65px;
}
.header__ul {
    gap: 55px;
}
.header__nav__link {
    color: var(--white);
}
.header__nav__link:hover {
    color: var(--primary);
}
.header__nav__link.active {
    color: var(--primary);
    font-weight: 700;
    cursor: default;
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* ================================================ */
/* :: 5.0 Hero + Overview + About Section CSS Start */
/* ================================================ */

/* ----- Hero Section Start ----- */
.hero {
	padding: 125px 0 175px;
	margin-top: 100px;
}
.hero__subtitle {
	font-size: 75%;
    text-transform: none;
}
.hero::after {
	content: "";
	position: absolute;
	top: 50px;
	right: 0;
	width: 48%;
	height: 97%;
	background: url("../imgs/thumbs/hero-thumb.jpg") no-repeat center / cover;
}
.hero--main::after {
    background-image: url("../imgs/thumbs/hero-thumb.jpg");
}
.hero__service {
    font-size: 20px;
}
.hero__service__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--white);
}
/* ----- Hero Section End ----- */



/* ----- Overview Section Start ----- */
.overview__wrapper {
	gap: 40px;
}
.overview__contact__item {
	gap: 40px;
	padding: 24px 35px;
    border-right: 1px solid var(--dark);
}
.overview__contact__item:first-child {
    padding-left: 0;
}
.overview__contact__item:last-child {
    padding-right: 0;
    border: none;
}
.overview__icon, .contact__info__icon {
    font-size: 27px;
}
.overview__contact__info {
    font-size: 20px;
    color: var(--dark);
}
a.overview__contact__info:hover {
    color: var(--primary);
}

.overview__counter {
    gap: 100px;
}
.counter__number {
    font-size: 25px;
}
.counter__text {
    font-size: 20px;
}
/* ----- Overview Section End ----- */



/* ----- About Section Start ----- */
.about {
    padding: 140px 0;
}
.about__wrapper {
    border-top: 1px solid var(--white);
    border-left: 1px solid var(--white);
}
.about__card {
    min-height: 246px;
    height: 100%;
    padding: 65px 35px 30px;
    border-bottom: 1px solid var(--white);
    border-right: 1px solid var(--white);
    transition: all .3s ease-in-out;
}
.about__card:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}
.about__icon {
	width: 90px;
	height: 90px;
    background-color: var(--dark);
	border: 1px solid var(--white);
	border-radius: 50%;
	top: -45px;
	left: 35px;
}
.about__icon__img {
    max-width: 44px;
}
/* ----- About Section End ----- */

/* ============================================== */
/* :: 5.0 Hero + Overview + About Section CSS End */
/* ============================================== */

/* =============================== */
/* :: 6.0 Service Section CSS Start */
/* =============================== */
.service__top {
	padding-bottom: 150px;
}
.service__top__wrapper {
    gap: 140px;
}
.service__text {
	max-width: 620px;
}
.service__btn__banner {
    max-width: 600px;
}
.service__btn__text {
    font-size: 18px;
    padding: 24px 35px;
}
.btn--service {
	min-width: 313px;
	height: 105px;
	background-color: var(--primary);
	color: var(--white);
	gap: 15px;
	font-size: 20px;
}
.btn--service .btn__icon {
    font-size: 24px;
}
.btn--service:hover {
    background-color: var(--white);
    color: var(--dark);
}



.service__cards__wrapper {
    margin-top: -50px;
}
.service__card {
    min-height: 540px;
    height: 100%;
    box-shadow: 0 4px 12px 0 #7575751A;
    transition: all .3s ease-in-out;
}
.service__card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.service__thumb {
    height: 300px;
    background: #D9D9D9;
}
.service__img {
    max-height: 296px;
    width: auto;
    transform: scale(.97);
    transition: all .2s linear;
}
.service__card:hover .service__img {
    transform: scale(1);
}
.service__card__text {
    padding: 30px;
}
.service__card__title {
    font-size: 25px;
}
/* =============================== */
/* :: 6.0 Service Section CSS End */
/* =============================== */

/* ======================================================= */
/* :: 7.0 About + Testimonial + UsedCars Section CSS Start */
/* ======================================================= */
.about__text--williescars {
	max-width: 600px;
}
.about__title {
	font-size: 25px;
}

/* ----- Testimonial Section Start ----- */
.testimonial__slide {
	width: 630px;
	min-height: 285px;
	height: 100% !important;
	padding: 45px 40px 35px;
	background-color: var(--white);
}
.client__avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--primary);
}
.client__company {
    width: 32px;
    height: 32px;
}
.testimonial__btn__next::after, .testimonial__btn__prev::after {
    display: none;
}
.testimonial .swiper-button-next, .testimonial .swiper-button-prev {
    position: static;
}
.testimonial__btns__wrapper {
	margin-right: 150px;
    gap: 20px;
}
.testimonial__btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: all .3s ease-in-out;
}
.testimonial__icon {
    max-width: 20px;
    transition: all .3s ease-in-out;
}
.testimonial__btn:hover {
    border-color: var(--primary);
}
.testimonial__btn:hover .testimonial__icon {
    filter: brightness(0) saturate(100%) invert(33%) sepia(96%) saturate(3302%) hue-rotate(215deg) brightness(103%) contrast(104%);
}
/* ----- Testimonial Section End ----- */



/* ----- UsedCar Section Start ----- */
.usedcars {
	padding: 220px 0 100px;
	margin-top: -120px;
}
.usedcars__content {
    max-width: 435px;
}
.usedcar__item {
    min-height: 410px;
    height: 100%;
    transition: all .3s ease-in-out;
}
.usedcar__thumb {
    height: 335px;
}
.usedcar__img {
    transition: all .2s linear;
    transform-origin: center center;
}
.usedcar__item:hover .usedcar__img {
    transform: scale(1.03);
}
.usedcar__detail {
    padding: 24px 35px;
}
/* ----- UsedCar Section End ----- */

/* ===================================================== */
/* :: 7.0 About + Testimonial + UsedCars Section CSS End */
/* ===================================================== */

/* ============================================ */
/* :: 8.0 Contacts + Footer Section CSS Start */
/* ============================================ */

/* ----- Contact Section Start ----- */
.contact--section {
    padding-bottom: 150px;
}
.contact__bg {
	width: 100%;
	height: 82%;
	background: url("../imgs/bg/contact-bg.jpg") no-repeat center / cover, var(--primary);
	z-index: -1;
}
.contact__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    opacity: .5;
}
.contact__inner {
    padding: 90px 140px;
}
.contact__details {
    gap: 35px;
}
.contact__info__item {
	gap: 40px;
}
.contact__info__icon {
	margin-top: 6px;
}
.contact__way {
    font-size: 18px;
    color: var(--dark);
}
a.contact__way:hover {
    color: var(--primary);
}
.contact__info__btns .btn {
	white-space: nowrap;
}
/* ----- Contact Section End ----- */



/* ----- Footer Section Start ----- */
.footer__wrapper {
    gap: 190px;
}
.footer__logo {
    max-width: 265px;
}
.footer__ul {
    gap: 10px;
}
.footer__nav__link {
    font-size: 18px;
    color: var(--dark);
}
.footer__nav__link:hover {
    color: var(--primary);
}
.footer__widget__title {
    font-size: 18px;
}
.footer__socials {
    gap: 10px;
}
.footer__social__icon {
    transition: all .3s linear;
}
.footer__social__link:hover .footer__social__icon {
    filter: brightness(0) saturate(100%) invert(33%) sepia(96%) saturate(3302%) hue-rotate(215deg) brightness(103%) contrast(104%);
}
/* ----- Footer Section End ----- */

/* ========================================== */
/* :: 8.0 Contacts + Footer Section CSS End */
/* ========================================== */

/* =============================== */
/* :: 9.0 About Us Page CSS Start */
/* =============================== */

/* ----- Hero Section Start ----- */
.hero--common {
	padding: 0;
	margin-bottom: 100px;
}
.hero--aboutus::after {
	background-image: url("../imgs/bg/hero-about-us-bg.jpg");
	z-index: 1;
	height: 90%;
}
.hero__common__top {
	padding: 100px 0;
}
.hero__para {
    font-size: 20px;
}
.hero__bg__content {
	max-width: 645px;
}
.hero__bg__content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 99999%;
    height: 100%;
    background-color: var(--light);
    z-index: -1;
}
/* ----- Hero Section End ----- */


/* ----- Timeline Section Start ----- */
.timeline__contents {
    padding: 60px 0;
    gap: 100px;
}
.timeline__contents::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--black);
}
.timeline__item {
    min-height: 610px;
}
.timeline__item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(50% - 12px);
	height: 100%;
	background: url("../imgs/thumbs/timeline/timeline-1.jpg") no-repeat center / cover, var(--dark);
    z-index: -1;
}
.timeline__item--1::after {
    background-image: url("../imgs/thumbs/timeline/timeline-1.jpg");
}
.timeline__item--2::after {
    background-image: url("../imgs/thumbs/timeline/timeline-2.jpg");
}
.timeline__item--3::after {
    background-image: url("../imgs/thumbs/timeline/timeline-3.jpg");
}
.timeline__item--4::after {
    background-image: url("../imgs/thumbs/timeline/timeline-4.jpg");
}
.timeline__item:nth-child(even)::after {
    left: auto;
    right: 0;
}
.timeline__inner {
    max-width: 650px;
    padding: 50px;
}
.timeline__item:nth-child(odd) .timeline__inner {
    padding-right: 0;
}
.timeline__item:nth-child(even) .timeline__inner {
    padding-left: 0;
}
.timeline__year {
    font-size: 25px;
}
/* ----- Timeline Section End ----- */


/* ----- Owner Section Start ----- */
.owner {
    min-height: 650px;
    padding: 125px 0;
}
.owner::after {
	content: "";
	position: absolute;
	bottom: 25px;
	left: 0;
	width: 50%;
	height: 65%;
	background: url("../imgs/thumbs/owner-car-thumb.png") no-repeat center / 100% 100%;
	z-index: -1;
}
.owner__thumb {
	max-width: 400px;
	margin-right: 120px;
}
.owner__text {
	max-width: 600px;
}
.owner__subtitle {
    font-size: 25px;
}
/* ----- Owner Section End ----- */

/* =============================== */
/* :: 9.0 About Us Page CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Occasions Page CSS Start */
/* =============================== */

/* ----- Hero Section Start ----- */
.hero--occasions::after {
    height: 90%;
    z-index: 1;
}


.occasioins__ul {
    gap: 20px;
}
.occasions__list__itme {
    gap: 35px;
}
.occasions__icon {
	max-width: 30px;
	margin-top: -3px;
}
/* ----- Hero Section End ----- */



/* ----- Sale Section Start ----- */
.sale::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background-color: var(--light);
	z-index: -1;
}
.sale__cards__wrapper {
    max-width: 1255px;
}
.sale__car__card {
    min-height: 335px;
    transition: all .3s ease-in-out;
}
.sale__car__card:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}
.sale__car__thumb {
	width: 445px;
	min-height: 100%;
}
.sale__car__img {
    transition: all .25s linear;
}
.sale__car__card:hover .sale__car__img {
    transform: scale(1.03);
}
.sale__car__contents {
    padding: 30px 40px;
}
.sale__car__details {
    max-width: 600px;
}
.sale__car__title, .car__price {
    font-size: 25px;
    padding-bottom: 20px;
}
.car__details {
    padding: 20px 0;
    border-top: 1px solid #D7D7D7;
}
.car__details {
	gap: 15px 40px;
}
.car__single__info {
    gap: 10px;
}
.car__detail__icon {
    max-width: 24px;
}
.sale__card__ticker {
    padding: 9px 23px;
    margin-top: 30px;
    top: 0;
    right: 0;
}
/* ----- Sale Section End ----- */

.contact--occasion {
    padding: 90px 0;
}

/* =============================== */

/* :: 10.0 Occasions Page CSS End */
/* =============================== */







/* =============================== */
/* :: 11.0 Car Details Page CSS Start */
/* =============================== */
.car__details__page {
    margin-top: 100px;
    padding: 100px 0;
}
.car__details__page::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 355px;
	background-color: var(--dark);
	z-index: -1;
}
.prev__page {
    color: var(--white);
}
.prev__page:hover {
    color: var(--primary);
}


.car__details__slider {
    margin-bottom: 60px;
}
.car__img__slider {
    margin-bottom: 10px;
}
.car__img__lg {
	height: 550px;
}
.car__img__lg img {
    width: 100%;
    height: 100%;
}
.car__next::after, .car__prev::after {
	display: none;
}
.car__next, .car__prev {
	right: 0;
	height: 120px;
	width: 60px;
    padding: 20px 10px;
	background-color: rgba(0, 0, 0, 0.5);
}
.car__prev {
    right: auto;
    left: 0;
}
.car__next:hover, .car__prev:hover {
    background-color: rgba(0, 0, 0, 0.75);
}
.car__pagination {
	width: auto;
    height: auto;
	left: auto;
	top: 0;
    bottom: auto;
	right: 0;
	color: #fff;
	font-size: 20px;
    background-color: rgba(0, 0, 0, 0.5);
	padding: 10px 27px;
}
.car__img__sm {
	height: 100px;
    cursor: pointer;
}
.car__img__sm img {
	width: 100%;
    height: 100%;
}



.car__all__info__text {
	padding: 65px 0 55px;
	border-bottom: 1px solid #000;
}
.car__all__info__text .sale__car__details {
    padding-left: 30px;
    max-width: 100%;
}
.car__all__info__text .sale__car__title {
    color: var(--white);
    font-size: 35px;
    padding-bottom: 50px;
}
.car__all__info__text .sale__car__title span {
    font-size: 85%;
}
.car__all__info__text .car__price {
    font-size: 35px;
}
.car__all__info__text .car__details {
    border: none;
}


.car__info__details__text {
    padding-top: 50px;
    padding-left: 30px;
}
.details__text__title {
    font-size: 35px;
}
/* =============================== */
/* :: 11.0 Car Details Page CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 Contact Page CSS Start */
/* =============================== */
.contact--page {
    margin-top: 100px;
    padding: 100px 0;
}
.contact__page__info {
	padding-left: 150px;
}
.contact__page__para {
	max-width: 435px;
}
.contact--page .contact__way {
	color: var(--white);
}
.contact__map {
    width: 50%;
    height: 100%;
}
.contact__map::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}
.contact__map:hover::after {
    background-color: rgba(0, 0, 0, 0.75);
}
.btn--location {
	border-color: var(--white);
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
	white-space: nowrap;
}
.contact__map:hover .btn--location {
    opacity: 1;
    visibility: visible;
}

.contact__form__wrapper {
	margin-top: 80px;
    z-index: 1;
}
.contact__form__wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url("../imgs/thumbs/contact-car-thumb.png") no-repeat center / 100% 100%;
    z-index: -1;
}
.contact__form__inner {
	max-width: 420px;
}
.contact__form {
    gap: 20px;
}
.input {
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
    resize: none;
    transition: all .2s ease-in-out;
}
textarea.input {
    height: 110px;
}
.input:focus {
    border: 1px solid var(--primary);
}
.btn--submit {
    background-color: var(--primary);
    transition: all .3s ease-in-out;
}
.btn--submit:hover {
    color: var(--dark);
    border-color: var(--white);
    background-color: var(--white);
}
/* =============================== */
/* :: 12.0 Contact Page CSS End */
/* =============================== */