/* BLOG */

.blog-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    z-index: 0;
    width: 520px;
}

.blog-card>img {
    width: 100%;
    min-height: 370px;
    height: auto;
    position: relative;
    z-index: 1;
    margin-bottom: -10px;
}

.blog-card .blog-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%) 0%, rgba(179, 166, 63, 0) 80%, rgba(237, 221, 83, 0) 100%);
    padding: 24px;
    box-sizing: border-box;
    z-index: 2;
    color: #fff;
}

.blog-card .blog-card-categories {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
}

.blog-card .blog-card-categories a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    box-sizing: border-box;
    padding: 4px 24px 4px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    color: #F8F8F8;
    position: relative;
}

.blog-card .blog-card-categories a::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #FFFFFF;
    border-radius: 50%;
    right: 11px;
    top: calc(50% - 3px);
}

.blog-card .blog-card-title {
    margin: 0;
    padding: 0;
}

.blog-card .blog-card-title>a {
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 31px;
    color: #FFFFFF;
}

.blog-card .blog-card-excerpt {
    font-weight: 300;
    font-size: 15px;
    line-height: 23px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin: 0;
}

.blog .swiper {
    margin-top: 30px;
}

.blog .swiper::before,
.blog .swiper::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 20vw;
    z-index: 99;
}

.blog .swiper::before {
    left: -1px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 85.09%);
}

.blog .swiper::after {
    right: -1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 85.09%);
}

.blog .swiper .swiper-slide {
    width: fit-content;
}

.blog .navigation-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.blog .navigation-holder .navigation {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.blog .navigation-holder .navigation>* {
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
}

.blog .swiper-pagination-bullet {
    transition: ease all .3s;
    background-color: var(--secondary-color);
    opacity: .5;
}

.blog .swiper-pagination-bullet-active {
    opacity: 1;
    width: 22px;
    border-radius: 11px;

}

/* FAQ */

.faq-component {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    padding-right: 40px;
    padding-left: 40px;
}

.faq-component .item {
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 16px;
    transition: ease background 0.3s;
}

.faq-component .item.o {
    background: #F8F8F8;
}

.faq-component .item .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

.faq-component .item .question>svg {
    transition: ease transform 0.3s;
    transform: rotate(0);
}

.faq-component .item.o .question>svg {
    transform: rotate(180deg);
}

.faq-component .item .question .title {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    color: var(--primary-color);
}

.faq-component .item .answer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E8E8E8;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: var(--primary-color);
    display: none;
}

/* ICON BOX */
.icon-box {
    background: #FFFFFF;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.04);

}

.icon-box .content {
    display: flex;
    justify-content: inherit;
    align-items: inherit;
    flex-direction: column;
    gap: inherit;
}

.icon-box.h {
    flex-direction: row;
}

.icon-box.h .content {
    flex: 1;
}

.icon-box.shaped {
    box-shadow: none;
    background-color: transparent;
    background-image: url(../img/components/shaped-iconbox-bg.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top;
}

.icon-box.shaped .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
    align-items: center;
}

.icon-box.shaped .tags .tag {
    padding: 4px 12px;
    background: #F8F8F8;
    border-radius: 8px;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: var(--primary-color);
}

.icon-box.shaped .tags .tag.secondary {
    background: #F5F2ED;
    color: var(--secondary-color);
}

.icon-box.jc {
    justify-content: center;
}

.icon-box.js {
    justify-content: flex-start;
}

.icon-box.je {
    justify-content: flex-end;
}

.icon-box.c {
    align-items: center;
}

.icon-box.s {
    align-items: flex-start;
}

.icon-box.e {
    align-items: flex-end;
}

.icon-box .title a,
.icon-box .title h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 37px;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
}

.icon-box .desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 44px;
    color: var(--muted-color);
    margin: 0;
    padding: 0;
}

.icon-box.tl .desc {
    text-align: left;
}

.icon-box.tr .desc {
    text-align: right;
}

.icon-box.tc .desc,
.icon-box.tc .title {
    text-align: center;
}

.icon-box.tj .desc {
    text-align: justify;
}

.icon-box.g {
    background-color: rgba(255, 255, 255, 0.06);
}

.icon-box.tw * {
    color: #fff !important;
}

.icon-box.f {
    box-shadow: none;
    border: 1px solid #E8E8E8;
}

.icon-box.ts .title h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
}

/* TESTIMONIALS PREVIEW */
.testimonials-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonials-preview .comment {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: var(--muted-color);
}

.testimonials-preview .comment>svg {
    margin-top: 10px;
}

.testimonials-preview .more {
    display: flex;
    align-items: center;
}

.testimonials-preview .more .avatars {
    display: flex;
    align-items: center;
}

.testimonials-preview .more .avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.testimonials-preview .more>a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: var(--primary-color);
}

/* Tabs */

.tabs {
    background: #F8F8F8;
    border-radius: 40px;
    box-sizing: border-box;
    padding: 20px;
}

.tabs .tabs-holder {
    display: flex;
    gap: 15px;
}

.tabs .tabs-holder .head {
    min-width: 265px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    gap: 16px;
}

.tabs .tabs-holder .head .item {
    box-sizing: border-box;
    padding: 20px;
    background: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabs .tabs-holder .head .item.o {
    background: #FFFFFF;
}

.tabs .tabs-holder .contents {
    flex: 1;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 28px;
    box-sizing: border-box;
}

.tabs .tabs-holder .contents .content {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.tabs .tabs-holder .contents .content.o {
    display: flex;
}

.tabs .tabs-holder .content h3 {
    font-weight: 800;
    font-size: 28px;
    line-height: 50px;
    color: var(--primary-color);
    margin: 0;
}

.tabs .tabs-holder .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: var(--muted-color);
    margin: 0;
}

.tabs .tabs-holder .content .btn {
    padding: 15px 32px;
    width: fit-content;
}

/* AIRPLANE */

.airplane {
    position: relative;
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 50% auto;
    background-image: url(../img/components/airplan-bg.svg);
    border-radius: 24px;
    box-sizing: border-box;
    padding: 30px;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.airplane .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 50%;
}

.airplane h2 {
    font-weight: 800;
    font-size: 24px;
    line-height: 55px;
    color: #FFFFFF;
    margin: 0;
}

.airplane p {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: #FFFFFF;
    margin: 0;
}

.airplane img {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 620px;
}

/* List */
ul.list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

ul.list li {
    position: relative;
    padding-right: 26px;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: var(--primary-color);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: right center;
    background-image: url(../img/components/list.svg);
    padding-bottom: 5px;
    border-bottom: 1px solid #E8E8E8;
}

/* FORM */

.cf7-custom-form .form-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cf7-custom-form .form-col {
    flex: 1;
    min-width: 200px;
}

.cf7-custom-form .form-col-wide {
    flex: 1;
    width: 100%;
}

.cf7-custom-form .form-col-button {
    display: flex;
    align-items: stretch;
}

.cf7-custom-form p:has(.wpcf7-spinner) {
    margin: 0;
}

.cf7-custom-form p:has(.wpcf7-spinner) .btn {
    height: 100%;
}

.cf7-custom-form p .wpcf7-spinner {
    position: absolute;
}

.cf7-custom-form input:not([type="submit"]),
.cf7-custom-form textarea {
    background: transparent;
    border: none;
}

.cf7-custom-form .wpcf7-form-control-wrap {
    flex: 1;
}

.cf7-custom-form label {
    padding: 10px 10px 10px 20px;
    border-left: 1px solid #e8e8e8;
    color: var(--primary-color);
}

.cf7-custom-form .form-col>p:not(:has([type="submit"])) {
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    margin: 0;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
}