:root {
   
    --ghost-white-color: #fafafc;
    --dodger-blue-color: #33d2fd;
    --blue-color: #233148;
 

    --transition: all 0.3s ease-in-out;
}






/* text classes */
.text-white {
    color: var(--white-color);
}

.text-blue {
    color: var(--blue-color);
}

.text-lynch {
    color: var(--lynch-color);
}

.text-center {
    text-align: center;
}

.text-capitalize {
    text-transform: capitalize;
}

.text {

    font-weight: 400;
    color: var(--lynch-color);
    line-height: 1.85;
}

/* backgrounds */
.bg-white {
    background-color: var(--white-color);
}

.bg-blue {
    background-color: var(--blue-color);
}

.bg-dodger-blue {
    background-color: var(--dodger-blue-color);
}

.bg-ghost-white {
    background-color: var(--ghost-white-color);
}






/* section one */
.section-one {
    position: relative;
}

.section-one .curve-bg {
    position: absolute;
    top: -160px;
    left: 0;
    width: 100%;
    z-index: 0;
    min-height: 1250px;
    object-fit: cover;
}

.section-one-content {
    position: relative;
    padding-top: 11.5rem;
    padding-bottom: 11.5rem;
}

.section-one-content .img img {
    width: 260px;
    display: none;
}

.grid-item {
    padding: 6rem 3rem 4rem;
    box-shadow: 0 7px 14px -2px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    margin-bottom: 7rem;
}

.grid-item:last-child {
    margin-bottom: 0;
}

.grid-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 3.5rem 0 3rem 0;
}

.grid-item img {
    width: 52px;
    margin: 0 auto;
}

/*timeline*/
.timeline-section {
    background-color: var(--ghost-white-color);
    min-height: 100vh;
    padding: 100px 15px;
}

.timeline-section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.timeline-items {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #2f363e;
    left: calc(50% - 1px);
}

.timeline-item {
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    height: 16px;
    width: 16px;
    background-color: #eaa023;
    position: absolute;
    left: calc(50% - 8px);
    border-radius: 50%;
    top: 10px;
}

.timeline-date {
    font-size: 18px;
    color: #eaa023;
    margin: 6px 0 15px;
}

.timeline-content {
    background-color: #2f363e;
    padding: 30px;
    border-radius: 5px;
}

.timeline-content h3 {
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 10px;
    text-transform: capitalize;
    font-weight: 500;
}

.timeline-content p {
    color: #c8c8c8;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

/* responsive */
@media(max-width: 767px) {
    .timeline-items::before {
        left: 7px;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 37px;
    }

    .timeline-dot {
        left: 0;
    }
}

/* section two */
.section-two {
    padding: 9rem 0;
}

.section-two-content {
    display: grid;
    row-gap: 9rem;
}

.section-two-content .info .text {
    max-width: 460px;
    margin-right: auto;
    margin-left: auto;
}

.section-two-content .info .btn {
    margin-top: 3rem;
}

.accordion-item {
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    padding: 3rem 4rem;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 50px auto;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.accordion-item-content {
    transition: var(--transition);
}

.accordion-item-content p.text {
    transition: var(--transition);
}

.accordion-item:hover {
    background-color: var(--lynch-color);
}

.accordion-item:hover p.text {
    color: var(--white-color);
}

.accordion-item-content span {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-item-content span:hover {
    color: var(--white-color);
}

.accordion-item-icon img {
    width: 30px;
    margin-right: 2.5rem;
}

.accordion-item:nth-child(2) .accordion-item-icon img {
    width: 16px;
}

.accordion-item:nth-child(4) .accordion-item-icon img {
    width: 26px;
}

/* accordion js */
.accordion-item-content p {
    max-height: 0;
    overflow: hidden;
}

.show-accordion {
    max-height: 200px !important;
}

/* section three */
.section-three {
    padding: 8rem 0;
}

.section-three-content {
    display: grid;
    row-gap: 9rem;
}

.section-three-content .img img {
    max-width: 530px;
}

.section-three-content .info ul li {
    display: flex;
    margin-bottom: 2.5rem;
}

.section-three-content .info ul li span {
    font-size: 1.5rem;
    font-weight: 600;
}

.section-three-content .info ul li img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 0.5rem;
    margin-right: 1.6rem;
}

.section-three-content .info p.text {
    margin-top: 1.8rem;
}

/* section four */
.section-four {
    background: url(../images/vector-bg.png) center/cover no-repeat;
    min-height: 764px;
    padding: 11rem 0;
    position: relative;
}

.section-four-content {
    display: grid;
    row-gap: 9rem;
}

.section-four-content .img img {
    max-width: 260px;
    margin-right: auto;
    margin-left: auto;
}

.section-four-content .info p.text {
    color: var(--white-color);
    margin-bottom: 4rem;
    max-width: 470px;
    margin-right: auto;
    margin-left: auto;
}

.store-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.store-group a {
    width: 100%;
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

.store-group a:hover {
    transform: scale(1.05);
}

.store-group img {
    width: 170px;
}

.store-group a:first-child {
    margin-bottom: 2rem;
}

.get-app-btn {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    height: 70px;
    min-width: 370px;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 0 30px 0px rgba(255, 7, 95, 0.2);
    background: linear-gradient(#6783df, #33d2fd);
}

.btn.get-app-btn:hover {
    transform: translate(-50%, 3px);
}

/*section 5*/
.target-cards {
    grid-template-columns: 250px;
    justify-content: center;
    row-gap: 2rem;
    padding: 10px;

}

/* Media Queries */
@media(min-width: 500px) {}

@media(min-width: 600px) {


    .section-one-content .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }

    .grid-item {
        width: 270px;
        margin-right: auto;
        margin-left: auto;
    }

    .grid-item:last-child {
        margin-bottom: 7rem;
    }

    .grid-item:nth-child(odd) {
        margin-right: 0;
    }

    .grid-item:nth-child(even) {
        margin-left: 0;
    }

    .newsletter-form {
        grid-template-columns: auto 170px;
        column-gap: 30px;
    }
}

@media(min-width: 800px) {


    .section-one-content .grid {
        column-gap: 7rem;
    }

    .grid-item:nth-child(1) {
        margin-right: -7rem;
    }

    .grid-item:nth-child(2) {
        margin-left: 7rem;
        margin-top: 7rem;
        margin-bottom: 0;
    }

    .grid-item:nth-child(3) {
        margin-bottom: 14rem;
    }

    .grid-item:nth-child(4) {
        margin-top: 7rem;
    }



}

@media(min-width: 992px) {
    .section-two-content {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 14.5rem;
        align-items: center;
    }

    .section-two-content .info {
        text-align: right;
    }

    .section-three-content {
        column-gap: 15rem;
        align-items: center;
        grid-template-columns: 530px auto;
    }

    .section-four-content {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16rem;
        align-items: center;
    }

    .section-four-content .info {
        text-align: left;
    }

    .section-four-content .img img {
        margin-right: 0;
    }

    .store-group {
        justify-content: flex-start;

    }

}

@media(min-width: 1200px) {
    .section-one-content .img img {
        display: block;
    }

    .section-one-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

.resize-animation-stopper * {
    animation: none !important;
    transition: none !important;
}