.header-area {
    background-color: black;
}

.features-area {
    background-color: var(--theme);
}

.pt-25{
    padding-top: 25px;
}


/* Banner Area */

.header-spacing {
    padding-top: 200px;
    padding-bottom: 100px;
}

.icon-img-80 {
    width: 80px;
}

.p-style {
    font-size: 17px !important;
    font-weight: 500;
}

.long-arw {
    margin-right: 30px;
}

.hero-area .section-title {
    font-size: 80px
}

.section-title {
    font-size: 35px;
    padding-bottom: 15px;
}

@media only screen and (max-width:1599px) {
    .hero-area .section-title {
        font-size: 60px;
    }
}

@media only screen and (max-width:767px) {
    .hero-area .section-title {
        font-size: 40px;
    }

    .pt_sm_30 {
        padding-top: 30px;
    }

    .header-spacing {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .section-title {
        font-size: 30px;
        padding-bottom: 15px;
    }
}

.pricing-area .section-title {
    max-width: 350px;
    margin-inline: auto
}

.pricing-area .section-header {
    text-align: center
}

.pricing-area .section-header .title-wrapper {
    margin-top: 18px
}

@media only screen and (max-width: 1919px) {
    .pricing-area .pricing-wrapper-box {
        margin-top: 0;
    }
}

@media only screen and (max-width: 1399px) {
    .pricing-area .pricing-wrapper-box {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .pricing-box {
        display: flex;
        flex-direction: column;
    }

    /* Change the order for small devices */
    .pricing-box:nth-of-type(2) {
        order: 3;
        /* Moves second section to third place */
    }

    .pricing-box:nth-of-type(3) {
        order: 2;
        /* Moves third section to second place */
    }
}

@media only screen and (max-width: 991px) {
    .pricing-area .pricing-wrapper-box {
        padding: 0 0px
    }
}

.pricing-area .pricing-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr)
}

@media only screen and (max-width: 1199px) {
    .pricing-area .pricing-wrapper {
        gap: 30px
    }
}

@media only screen and (max-width: 991px) {
    .pricing-area .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media only screen and (max-width: 767px) {
    .pricing-area .pricing-wrapper {
        grid-template-columns: repeat(1, 1fr)
    }
}

.pricing-box {
    border: 1px solid rgba(18, 18, 18, .15);
    padding: 40px 30px 20px;
    text-align: center;
    position: relative
}

.dark .pricing-box {
    border-color: rgba(255, 255, 255, .15)
}

@media only screen and (max-width: 1199px) {
    .pricing-box {
        padding: 37px 20px 40px
    }
}

.pricing-box .card-tag {
    font-size: 16px;
    text-transform: uppercase;
    padding: 22px 9px;
    background-color: var(--primary);
    color: var(--white);
    line-height: 1;
    writing-mode: vertical-lr;
    position: absolute;
    right: -1px;
    top: -1px
}

.dark .pricing-box .card-tag {
    color: var(--black)
}

.dir-rtl .pricing-box .card-tag {
    left: -1px;
    right: auto
}

@media only screen and (max-width: 1199px) {
    .pricing-box .card-tag {
        font-size: 14px;
        padding: 18px 7px
    }
}

.pricing-box .tag {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    /* text-transform: uppercase; */
    color: var(--primary)
}

.pricing-box .price {
    font-size: 24px;
    line-height: 1;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 5px
}

.pricing-box .price span {
    font-size: 100px;
    font-style: normal
}

@media only screen and (max-width: 1399px) {
    .pricing-box .price span {
        font-size: 70px
    }
}

@media only screen and (max-width: 1199px) {
    .pricing-box .price span {
        font-size: 60px
    }
}

.pricing-box .price.popular span {
    font-style: italic
}

.pricing-box .feature-list {
    margin-top: 50px
}

@media only screen and (max-width: 1199px) {
    .pricing-box .feature-list {
        margin-top: 40px
    }
}

.pricing-box .feature-list li {
    font-size: 18px;
    text-align: center
}

@media only screen and (max-width: 1199px) {
    .pricing-box .feature-list li {
        font-size: 16px
    }
}

.pricing-box .feature-list li:not(:first-child) {
    margin-top: 20px
}

@media only screen and (max-width: 1199px) {
    .pricing-box .feature-list li:not(:first-child) {
        margin-top: 15px
    }
}

.pricing-box .wc-btn-primary {
    margin-top: 45px
}

@media only screen and (max-width: 1199px) {
    .pricing-box .wc-btn-primary {
        margin-top: 35px
    }
}


/* Contact Form Styles */

.custom-input {
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    padding: 5px 0;
    width: 100%;
}

.custom-input:focus {
    border-bottom-color: black;
}

.form-group {
    margin-bottom: 20px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.btn-calculate {
    width: 100%;
    background-color: black;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}

.btn-calculate:hover {
    background-color: white;
    color: black;
    border: 2px solid black;
}

.wc-btn-play {
    width: 56px;
    height: 56px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid currentColor;
    color: var(--primary);
    border-radius: 50%;
    transition: all .5s;
    font-size: 14px
}

@media only screen and (max-width: 767px) {
    .wc-btn-play {
        width: 50px;
        height: 50px;
        font-size: 12px;
        border-width: 1px
    }
}

.wc-btn-play:hover {
    color: var(--theme, --action)
}

.wc-btn-play.light {
    color: var(--white)
}

.wc-btn-play.light:hover {
    color: var(--white)
}

.wc-btn-play.dark {
    color: var(--black)
}

.wc-btn-play.dark:hover {
    color: var(--black)
}

.wc-btn-primary {
    padding: 21px 30px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 15px;
    text-transform: capitalize;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    gap: 30px;
    white-space: nowrap
}

.dark .wc-btn-primary {
    color: var(--black)
}

@media only screen and (max-width: 991px) {
    .wc-btn-primary {
        padding: 16px 25px
    }
}

.wc-btn-primary:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary)
}

.wc-btn-primary.bordered {
    border-color: var(--primary);
    background-color: rgba(0, 0, 0, 0);
    color: var(--primary)
}

.wc-btn-primary.bordered:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white)
}

.dark .wc-btn-primary.bordered:hover {
    color: var(--black)
}

.dir-rtl .wc-btn-primary i {
    transform: rotateY(180deg)
}

.wc-btn-primary {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 30px 0 30px;
    padding: 22px 38px
}

.header-area .wc-btn-primary {
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 0 20px 0 20px
}

.dark .header-area .wc-btn-primary:hover {
    color: var(--black)
}

/* ul li List */

.pricing-box .feature-list {
    margin-top: 39px;
}

.pricing-box .feature-list li {
    display: flex;
    align-items: center;
}

.pricing-box .feature-list li:not(:first-child) {
    margin-top: 15px;
}

.pricing-box .feature-list li img {
    margin-inline-end: 10px;
    margin-inline-start: 5px;
}

.dir-rtl .pricing-box .feature-list li img {
    transform: rotateY(180deg);
}

.dark .pricing-box {
    background-color: #1b1b1b;
}

@media only screen and (max-width: 1199px) {
    .pricing-box {
        padding: 27px 30px 30px;
    }
}

.pricing-box .tag {
    font-size: 18px;
    color: var(--primary);
    display: inline-block;
    line-height: 1;
}

.pricing-box .feature-list {
    margin-top: 39px;
}


.pricing-box .price {
    font-size: 60px;
    line-height: 1;
    margin-top: 17px;
}

@media only screen and (max-width: 1399px) {
    .pricing-box .price {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .pricing-box .price {
        font-size: 40px;
    }
}

.pricing-box .wc-btn-primary {
    margin-top: 50px;
}

@media only screen and (max-width: 1199px) {
    .pricing-box .wc-btn-primary {
        margin-top: 40px;
    }
}

.dark .pricing-box .wc-btn-primary:hover {
    color: var(--black);
}

/* Image CSS */

.tiles-calculator .featured-icon-box.style16 {
    padding: 42px 55px 85px 260px;
    background-color: #fbfbfb;
    margin: 0 -70px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.tiles-calculator .featured-icon-box.style17 {
    padding: 51px 295px 50px 50px;
    background-color: #fbfbfb;
    margin: -10px -70px 0;
    height: 100%;
    text-align: right;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.tiles-calculator .result-form {
    background-color: #fff;
    padding: 10px 15px 15px;
    box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
}

.tips-sec ul {
    list-style: none;
}

.tilestips {
    background: none repeat scroll 0 0;
    border: 1px solid #d1d1d1;
    display: inline-block;
    height: 220px;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    width: 100%;
}

.tilestips div {
    background: #fff url('../img/tilePattern.png') repeat scroll -4px -4px;
    border: 1px solid #000000;
    /* box-shadow: 0 0 8px 5px #fff; */
    left: 52%;
    position: absolute;
    top: 52%;
    transform: translateX(-50%) translateY(-50%);
}

.tilestips .tileFt {
    background: #868686 none repeat scroll 0 0;
    margin-bottom: 0;
    padding: 0;
    position: absolute;
    text-align: center;
}

.tilestips .tileFt span {
    background: #fff none repeat scroll 0 0;
    /* color: #d1d1d1; */
    display: block;
    font-size: 12px;
    font-weight: bold;
    height: auto;
    position: absolute;
    text-transform: uppercase;
    width: 50px;
}

.tilestips .horzFt span {
    margin-left: 50%;
    margin-top: -12px;
    transform: translateX(-50%);
}

.tilestips .vertFt span {
    margin-left: -27px;
    top: 50%;
    transform: rotate(-90deg) translateX(20%);
}

.horzFt {
    border-top: 1px dashed #868686;
    height: 0;
    left: 0;
    top: -20px;
    width: 100%;
}

.vertFt {
    border-left: 1px dashed #868686;
    height: 100%;
    left: -20px;
    top: 0;
    width: 0;
}

.last_form_input {
    margin-bottom: 10px;
}

.tips_sec ul li {
    font-size: 15px !important;
}

.pricing-area .pricing-area-inner form label{
    font-size: 15px;
    font-weight: 600;
    color: #121212;
}
