
/*-----------Pricing Area--------------*/
.examples-pricing-page {
    width: 100%;
    margin-top: 75px;
}
.every-trip-section {
    background-color: #cbe0f7;
    margin-top: 100px;
    height: 400px;
}
.every-trip-title {
    font-size: 30px;
    color: #081361;
    margin-top: 100px;
    text-align: center;
    padding-top: 25px;
}
.trip-examples-row {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.trip-examples-column,
.trip-examples-column3 {
    width: 35%;
    text-align: center;
    margin-top: 65px;
    border-left: 4px dotted orange;
}
.trip-examples-column3 {
    border-right: 4px dotted orange;
}
.trip-examples-title {
    font-size: 25px;
    color: #10318f;
}
.trip-examples-description {
    width: 300px;
    color: #10318f;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    font-weight: lighter;
}
.pricing-section {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.pricing-title-holder {
    width: 725px;
    margin-left: auto;
    margin-right: auto;
    font-size: 40px;
    margin-top: 150px;
}
.pricing-title {
    color: #081361;
}
.pricing-row {
    display: flex;
    width: 625px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.pricing-separator-line {
    border-top: 3px dotted orange;
    border-width: thick;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.pricing-column {
    display: flex;
}
.pricing-column-plan1,
.pricing-column-plan2 {
    width: 300px;
    height: 300px;
    border: 1px solid #d3d3d3;
    border-radius: 15px;
    box-shadow: 0 5px 10px -6px #777;
}
.pricing-column-plan1 {
    margin-right: 30px;
}
.pricing-plan-title {
    font-size: 24px;
    text-align: center;
    color: #10318f;
    margin-top: 10px;
}
.pricing-plan-subtitle {
    font-size: 18px;
    text-align: center;
    color: #f09637;
}
.pricing-plan-dollar-amount-free,
.pricing-plan-dollar-amount {
    text-align: center;
    font-size: 36px;
    color: #10318f;
}
.pricing-plan-dollar-amount-free {
    margin-top: 55px;
}
.pricing-plan-dollar-amount {
    margin-top: 30px;
}
.pricing-plan-dollar-amount-frequency {
    text-align: center;
    color: #10318f;
}
.pricing-top-column-preferred{
    position: absolute;
    top: -12px;
    left: 10px;
    font-size: 11px;
    color: #FFFFFF;
    background-color: #f09637;
    border: 1px solid #428ce2;
}
.pricing-get-started-holder,
.pricing-get-started-holder-free {
    margin-left: auto;
    margin-right: auto;
}
.pricing-get-started-holder-free {
    width: 150px;
    margin-top: 80px;
}
.pricing-get-started-holder {
    width: 200px;
    margin-top: 60px;
}
.pricing-get-started-button,
.pricing-get-started-button-free {
    height: 40px;
    border: 2px solid #081361;
    background-color: #ffffff;
    color: #081361;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    font-size: 18px;
}
.pricing-get-started-button {
    width: 200px;
}
.pricing-get-started-button-free {
    width: 150px;
}
.pricing-get-started-button:hover,
.pricing-get-started-button-free:hover {
    background-color: #081361;
    border: 2px solid #081361;
    color: #ffffff;
}
.features-table {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.features-table-header {
    font-size: 40px;
    color: #081359;
    margin-top: 150px;
    text-align: center;
    margin-bottom: 50px;
}
.features-table-title {
    border:1px solid #FAF9F6;
    padding:5px;
    background: #FAF9F6;
    color: #313030;
    font-size: 16px;
}
.features-free {
    border: 2px solid #4682B4;
    text-align: center;
}
.features-per-event {
    border: 2px solid #abd154;
    text-align: center;
}
.features-monthly {
    border: 2px solid #f09637;
    text-align: center;
}
.features-yearly {
    border: 2px solid #D2042D;
    text-align: center;
}
table th {
    border:1px solid #FAF9F6;
    padding:5px;
    color: #313030;
}
table td {
    border:1px solid #FAF9F6;
    text-align:center;
    padding:5px;
    background: #ffffff;
    color: #313030;
}

/*----------------------------------------------*/
@media only screen and (min-width : 150px) and (max-width : 550px) {
    .every-trip-section {
        height: 500px;
    }
    .trip-examples-row {
        height: 300px;
        width: 95%;
    }
    .trip-examples-column,
    .trip-examples-column3 {
        width: 33%;
    }
    .trip-examples-title {
        margin: 5px;
        font-size: 22px;
    }
    .trip-examples-description {
        width: 95%;
    }
    .pricing-section {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    .pricing-title-holder {
        width: 95%;
        text-align: center;
        margin-top: 150px;
    }
    .pricing-column {
        display: block;
    }
    .pricing-column-plan1,
    .pricing-column-plan2 {
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
    }
    .pricing-separator-line {
        width: 300px;
    }
    .pricing-row {
        margin-top: 0;
        width: fit-content;
    }
    .features-table-header {
        width: auto;
    }
    .features-table {
        width: auto;
        overflow-x: auto;
    }
}

/*----------------------------------------------*/
@media only screen and (min-width : 551px) and (max-width : 769px) {
    .every-trip-section {
        height: 500px;
    }
    .trip-examples-row {
        height: 300px;
        width: 95%;
    }
    .trip-examples-column,
    .trip-examples-column3 {
        width: 33%;
    }
    .trip-examples-title {
        margin: 5px;
        font-size: 22px;
    }
    .trip-examples-description {
        width: 95%;
    }
    .pricing-section {
        width: 45%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    .pricing-title-holder {
        width: 95%;
        text-align: center;
        margin-top: 150px;
    }
    .pricing-column {
        display: block;
    }
    .pricing-column-plan1,
    .pricing-column-plan2 {
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
    }
    .pricing-separator-line {
        width: 300px;
        margin-left: 0;
        margin-right: 0;
    }
    .pricing-row {
        margin-top: 0;
    }
    .features-table-header {
        width: auto;
    }
    .features-table {
        width: 90%;
    }
}
/*----------------------------------------------*/
@media only screen and (min-width : 770px) and (max-width : 1099px) {
    .every-trip-section {
        height: 450px;
    }
    .trip-examples-row {
        height: 250px;
        width: 95%;
    }
    .trip-examples-column,
    .trip-examples-column3 {
        width: 33%;
    }
    .trip-examples-title {
        margin: 5px;
        font-size: 22px;
    }
    .trip-examples-description {
        width: 95%;
    }
    .pricing-section {
        width: auto;
    }
    .features-table-header {
        width: auto;
    }
    .features-table {
        width: 70%;
    }
}
/*-----------Tablet-----------------------------------*/
@media only screen and (min-width: 1100px) and (max-width: 1299px) {
    .trip-examples-description {
        margin-left: 10px;
        margin-right: 10px;
    }
    .pricing-section {
        width: auto;
    }
    .features-table {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
}
/*----------------------------------------------*/
@media only screen and (min-width: 1300px) and (max-width: 1699px) {

    .features-table-header {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .features-table {
        width: 45%;
    }

}

/*----------------------------------------------*/
@media only screen and (min-width: 1700px) and (max-width: 2199px) {

    .features-table-header {
        width: 40%;
        margin-left: auto;
        margin-right: auto;
    }
    .features-table {
        width: 40%;
    }
}
/*----------------------------------------------*/
@media only screen and (min-width: 2200px) and (max-width: 2500px) {
    .bottom-banner-holder-right {
        margin-left: 350px;
    }

}
