.color-green {
    color: #3EBA79;
	display: inline-block;
}
.color-green-gradient {
    color: #3EBA79;
    background-image: linear-gradient(97.91deg, #D39C10 7.66%, #F1CE0B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
	display: inline-block;
}
.mobile-show {
    display: none;
}
.btn {
    display: flex;
    width: fit-content;
    font-size: 16px;
    line-height: 24px;
    padding: 13px 19px 9px;
    border: 2px solid transparent;
    text-decoration: none;
    border-radius: 12px;
}
.btn-primary {
    border-color: #fff;
    color: #D39C10;
    transition: background-color .2s, border-color .2s;
}
.btn-primary:hover {
    border-color: #D39C10;
    color: #D39C10;
}
.btn-primary:hover span {
    border-color: #D39C10;
    color: #D39C10;
}
.btn-secondary {
    background: linear-gradient(97.91deg, #D39C10 7.66%, #F1CE0B 100%);
    color: #ffffff;
}
.btn-secondary:hover {
    background-color: #3EBA79;
    color: #ffffff;
}
.btn-white {
    font-weight: 800;
    color: #fff;
    border-color: #fff;
}
.btn-white:hover {
    font-weight: 800;
    color: #fff;
    border-color: #fff;
}
.list-logo a {
    position: relative;
    background-color: #636363;
    border: none;
}
.list-logo a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(97.91deg, #D39C10 7.66%, #F1CE0B 100%);
    transition: opacity .9s;
    border-radius: 16px;
}

.list-logo a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #000;
    transition: opacity .9s;
    border-radius: 16px;
}
.list-logo a:hover {
    /* box-shadow: 0px 0px 24px 7px #F1CE0B; */
    border-color: transparent !important;
}
.list-logo a:hover:before {
    opacity: 1;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;

}

.list-logo a img {
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    .desktop-show {
        display: none;
    }
    .mobile-show {
        display: block;
    }
}
h2 {
    margin-top: 0;
}
.post-date {
    font-size: 18px;
    line-height: 29px;
}
.hero {
    height: 500px;
    position: relative;
    width: 100%;
}
.hero-bg__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}
.hero h1 {
    position: absolute;
    top: 115px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    color: #fff;
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -1px;
}
.hero-bg__wrapper:after {
    content: "";
    display: block;
    background: linear-gradient(97.91deg, #D39C10 7.66%, #F1CE0B 100%);
    height: 10px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.hero-bg__wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.featured-wrapper {
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #DFDFDF;
    position: relative;
    transition: border-color .3s;
}
.featured-wrapper:hover {
    border-color: #D39C10;
}
.featured {
    margin-top: -65px;
}
.featured-banner {
    position: relative;
    width: 100%;
    height: 380px;
}
.featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 430px;
	object-fit: contain;
}
.featured-separator {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.featured-separator:before,
.featured-separator:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    display: block;
    width: 40px;
    height: 90px;
    background-color: #ffffff;
    transform: rotate(-45deg);
}
.featured-separator:after {
    left: auto;
    right: 0;
    transform: rotate(45deg);
}
.featured-separator img {
    width: 100%;
    height: 33px;
    object-fit: cover;
    object-position: center;
    margin-top: 64px;
}
.featured-content__wrapper {
    display: flex;
    flex-direction: column;
    padding: 35px;
    row-gap: 10px;
}
.featured-content__wrapper .btn {
    border-color: #D39C10;
}
.featured-content__wrapper h2 {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 0;
}

.posts {
    margin-top: 76px;
    margin-bottom: 76px;
}
.posts-lists {
    display: flex;
    flex-wrap: wrap;
    column-gap: 36px;
    row-gap: 24px;
    justify-content: flex-start;
}
.posts-item {
    position: relative;
    width: 31%;
    border: 2px solid #DFDFDF;
    border-radius: 24px;
    overflow: hidden;
    transition: border-color .3s;
}
.post-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.posts-item:hover {
    border: 2px solid #D39C10;
}
.post-banner__wrapper {
    height: 112px;
    position: relative;
}
.post-banner__wrapper .post-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.post-banner__wrapper .post-logo {
    position: absolute;
    max-width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.post-content__wrapper {
    padding: 16px;
}
.post-content__wrapper h2 {
    font-size: 24px;
    line-height: 26px;
    max-height: 104px;
    overflow: hidden;
    margin-bottom: 10px;
}
.posts-pagination__wrapper {
    padding: 0;
    margin:  89px 0 50px;
    list-style: none;
    display: flex;
    column-gap: 20px;
    justify-content: center;
}
.posts-pagination__wrapper .page-numbers {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #DFDFDF;
    color: #000000;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color .3s, color .3s;
}
.posts-pagination__wrapper .page-numbers.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.posts-pagination__wrapper .page-numbers:hover,
.posts-pagination__wrapper .page-numbers.current {
    background: linear-gradient(97.91deg, #D39C10 7.66%, #F1CE0B 100%);
    color: #fff;
}
.hero-link__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 86px;
}
.social-link__wrapper {
    display: flex;
    column-gap: 12px;
}
.social-link__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #000000;
    border-radius: 50%;
    background-color: #ffffff;
    transition: background-color .3s, border-color .3s;
}
.social-link__item a img {
    filter: brightness(0);
    transition: filter .3s;
}
.social-link__item a:hover {
    background-color: #D39C10;
    border-color: #D39C10;
}
.social-link__item a svg {
    display: block;
}
.social-link__item a:hover img {
    filter: brightness(1);
}
.social-link__item a svg path {
    transition: fill .3s;
}
.social-link__item a:hover svg path {
    fill: #fff;
}
.single .hero {
    height: auto;
    margin-bottom: 49px;
}
.single .hero h1 {
    font-family: Axiforma;
    font-weight: 700;
    color: #000000;
    position: relative;
    transform: none;
    left: unset;
    top: unset;
    font-size: 42px;
    line-height: 54px;
    margin-top: 40px;
    margin-bottom: 18px;
    letter-spacing: 0px;
}
.banner {
    position: relative;
    height: 500px;
}
.banner:after {
    content: "";
    display: block;
    background: linear-gradient(97.91deg, #D39C10 7.66%, #F1CE0B 100%);
    height: 10px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}
.banner .banner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    height: 100%;
    max-height: 180px;
	object-fit: contain;
}
.desc {
    margin-top: 80px;
}
.desc__wrapper {
    text-align: center;
}
.desc-content__wrapper {
    max-width: 968px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 29px;
}
.desc-btn__wrapper {
    display: flex;
    justify-content: center;
    margin-top: 39px;
}
.desc-subtitle__wrapper {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    max-width:  772px;
    margin: 29px auto 0;
}
.desc-subtitle__wrapper p {
    margin-top: 0;
    margin-bottom: 16px;
}
.desc-subtitle__wrapper p:last-child {
    margin-bottom: 0;
}
.setup {
    margin-top: 102px;
}
.setup h2 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 800;
}
.setup__wrapper {
    text-align: center;
}
.setup__list {
    display: flex;
    column-gap: 40px;
    margin-top: 54px;
    justify-content: center;
}
.setup__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border: 2px solid #DFDFDF;
    transition: border-color .3s;
    border-radius: 20px;
    height: 300px;
    box-sizing: border-box;
    row-gap: 11px;
}
.setup__item:hover {
    border-color: #D39C10;
}
.setup__item svg path,
.setup__item svg {
    transition: fill .3s;
}
.setup__item:hover svg {
    fill: #3EBA79;
}
.setup__item:hover svg path {
    fill: #3EBA79;
}
.setup-desc {
    max-width: 240px;
    margin: 0 auto;
}
.setup-desc p {
    margin: 0;
}
.result {
    margin-top: 102px;
    margin-bottom: 33px;
}
.result__wrapper h2 {
    font-weight: 800;
    font-size: 50px;
    line-height: 55px;
    text-align: center;
}
.result__list {
    display: flex;
    margin-top: 63px;
	justify-content: center;
	column-gap: 40px;
}
.result__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 19px;
	justify-content: space-between;
	width: 350px;
}
.result__item span {
    font-size: 30px;
    line-height: 39px;
    color: #000;
    text-align: center;
    font-weight: 700;
	max-width: 320px;
}
.result__item img {
    width: 110px;
}
.result__subtitle {
    max-width: 772px;
    margin: 120px auto 0;
    text-align: center;
}
.result__subtitle p {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin: 0 auto 29px;
}
.result__button {
    display: flex;
    justify-content: center;
}
.testimonials {
    padding-top: 120px;
    padding-bottom: 0;
    position: relative;
}
.testimonials:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 464px;
    background-color: #000000;
    height: auto;
    z-index: 0;
}
.testimonials-bg {
    position: absolute;
    width: 87%;
    height: 120%;
    border-radius: 24px;
    background-color: #fff;
    right: 0;
    margin-top: -47px;
    box-shadow: 0px 0px 45px 0px #0000001A;
}
.swiper-slide {
    padding: 80px 0;
    opacity: 0 !important;
    transition: opacity .3s;
}
.swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}
.testimonials-slide__wrapper {
    max-width: 1189px;
    display: flex;
    position: relative;
    column-gap: 25px;
}
.testimonials-author {
    font-size: 30px;
    line-height: 30px;
    margin: 0;
}
.testimonials-profession {
    font-size: 20px;
    line-height: 32px;
    margin: 0;
}
.testimonials-img__wrapper {
    position: relative;
    padding-right: 20px;
}
.testimonials-img__wrapper img {
    width: 319px;
    height: 376px;
    border-radius: 24px;
    position: relative;
    z-index: 1;
	object-fit: contain;
}
.testimonials-content__wrapper {
    position: relative;
}
.quote {
    display: block;
    width: 43px;
    height: 43px;
    background-image: url("data:image/svg+xml,%3Csvg width='43' height='43' viewBox='0 0 43 43' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.5 0C9.64454 0 0 9.64454 0 21.5C0 33.3555 9.64454 43 21.5 43H43V21.5C43 9.64454 33.3555 0 21.5 0ZM39.4167 39.4167H21.5C11.6208 39.4167 3.58333 31.3792 3.58333 21.5C3.58333 11.6208 11.6208 3.58333 21.5 3.58333C31.3792 3.58333 39.4167 11.6208 39.4167 21.5V39.4167ZM27.4997 14C24.3054 14 21.9997 16.637 21.9997 20.5416C22.0202 26.2148 26.285 30.2258 32.4375 30.9961C33.0083 31.0676 33.2284 30.2769 32.7028 30.0431C30.342 28.9934 29.1497 27.6613 28.9957 26.3428C28.8806 25.3578 29.4161 24.4949 30.0885 24.3333C31.8317 23.9144 32.9997 21.7436 32.9997 19.5C32.9997 16.4624 30.5372 14 27.4997 14ZM9.99973 20.5416C9.99965 16.637 12.3054 14 15.4997 14C18.5372 14 20.9997 16.4624 20.9997 19.5C20.9997 21.7436 19.8317 23.9144 18.0885 24.3333C17.4161 24.4949 16.8806 25.3578 16.9957 26.3428C17.1497 27.6613 18.342 28.9934 20.7028 30.0431C21.2284 30.2769 21.0083 31.0676 20.4375 30.9961C14.285 30.2258 10.0202 26.2148 9.99973 20.5416Z' fill='black'/%3E%3C/svg%3E%0A");
    margin-bottom: 37px;
}
.testimonials-content {
    font-size: 18px;
    line-height: 29px;
    max-width: 754px;
    padding-right: 40px;
}
.testimonials-author__wrapper {
    margin-top: 55px;
}
.testimonials-author {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 5px;
}
.testimonials__wrapper {
    position: relative;
    padding: 0 40px;
    max-width: 1200px;
}
.testimonials .swiper-pagination {
    position: absolute;
    top: 90px;
    width: auto;
    right: 64px;
    left: unset;
}
#testimonials .testimonials__wrapper .swiper-pagination-bullet {
    width: 21px;
    height: 21px;
    background-color: #DFDFDF;
    border: 2px solid #fff;
    opacity: 1;
}
#testimonials .testimonials__wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 21px;
    height: 21px;
    background-color: #D39C10;
    box-shadow: 0px 0px 10px 0px #00000040;
}

.setup__item-img img {
    height: 80px;
    width: auto;
    object-fit: cover;
    filter: brightness(0);
    transition: filter .2s;
}
.setup__item:hover .setup__item-img img {
    filter: brightness(1);
}
#menu-footer-menu {
    row-gap: 28px;
    column-gap: 24px;
    max-width: 820px;
}
section.logo-list-section {
    padding: 240px 0 41px;
}
.logo-list-section h2 {
    font-size: 82px;
    line-height: 100px;
    margin-bottom: 95px;
}

@media (max-width: 1236px) {
    .posts-lists {
        flex-wrap: wrap;
    }
    .posts-item {
        width: calc(50% - 22px);
    }
}
@media (max-width: 1199px) {
    .logo-list-section h2 {
        font-size: 42px;
        line-height: 64px;
    }
    section.logo-list-section {
        padding: 40px 0 41px;
    }
}
@media (max-width: 991px) {
    footer .footer-main .social-links {
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0px;
    }
}
@media (max-width: 768px) {
    .btn-secondary {
        padding: 8px 12px 4px;
        font-size: 14px;
        line-height: 24px;
        border-radius: 8px;
    }
    .single .hero {
        margin-bottom: 32px;
    }
    .single .hero h1 {
        text-align: left;
        padding-left: 19px;
        font-size: 32px;
        line-height: 42px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .banner .banner-bg,
    .banner {
        height: 165px;
    }
    .banner .banner-logo {
        max-width: 170px;
        height: auto;
    }

    .post-date {
        line-height: 26px;
    }
    .single .post-date {
        line-height: 26px;
        padding-left: 19px;
    }
    .hero {
        height: 486px;
    }
    .hero-link__wrapper {
        margin-top: 31px;
        padding-left: 19px;
        padding-right: 5px;
    }
    .hero h1 {
        font-size: 36px;
        line-height: 64px;
        margin: 60px 0 0;
        left: 0;
        transform: translate(0, 0);
        right: 0;
        text-align: center;
    }
    .social-link__wrapper {
        column-gap: 12px;
    }
    .social-link__item a {
        width: 34px;
        height: 34px;
    }
    .featured {
        margin-top: -66px;
    }
    .featured-banner {
        height: 200px;
    }
    .featured-logo {
        max-width: 300px;
    }
    .featured-content__wrapper {
        padding: 20px;
    }
    .featured-content__wrapper h2 {
        font-size: 24px;
        line-height: 29px;
    }

    .posts-item {
        width: 100%;
    }
    .post-banner__wrapper .post-logo {
        max-height: 140px;
    }
    .post-content__wrapper h2 {
        max-height: 130px;
    }
    .setup__list {
        flex-direction: column;
        row-gap: 24px;
    }
    .testimonials-slide__wrapper {
        flex-direction: column;
    }
    .testimonials-img__wrapper {
        width: calc(100% - 64px);
        margin: 0 32px;
        padding-right: 0;
        text-align: center;
    }
    .testimonials-bg {
        height: calc(100% - 242px);
        bottom: 0;
        right: 16px;
        width: auto;
        left: 16px;
    }
    .testimonials-img__wrapper img {
        width: auto;
        height: auto;
        max-height: 380px;
    }
    .desc {
        margin-top: 31px;
    }
    .desc-content__wrapper {
        font-size: 16px;
        line-height: 24px;
        padding: 0 18px;
    }
    .desc-btn__wrapper {
        margin-top: 26px;
    }
    .desc-subtitle__wrapper {
        margin: 30px auto 0;
        padding: 0 18px;
    }
    .setup {
        margin-top: 72px;
    }
    .setup h2 {
        font-size: 36px;
        line-height: 44px;
    }
    .setup__list {
        padding: 0 18px;
        margin-top: 44px;
        row-gap: 22px;
    }
    .setup__item {
        height: auto;
        padding: 18px;
    }
    .setup__item-img svg {
        height: 40px;
    }
    .setup-desc {
        width: auto;
    }
    .setup-desc p {
        font-size: 14px;
        line-height: 21px;
    }
    .result {
        margin-top: 85px;
    }
    .result__wrapper h2 {
        font-size: 36px;
        line-height: 44px;
    }
    .result__list {
        flex-direction: column;
        row-gap: 41px;
        align-items: center;
        margin-top: 37px;
    }

    .result__item {
        max-width: 320px;
    }
    .result__item span {
        font-size: 24px;
        line-height: 32px;
    }
    .result__item img {
        width: 81px;
    }
    .result__subtitle {
        margin: 81px auto 0;
        padding: 0 18px;
    }

    .testimonials {
        padding-top: 47px;
    }
    .testimonials:after {
        height: auto;
        top: 270px;
    }
    .testimonials-content__wrapper {
        padding: 28px 28px 24px;
    }
    .quote {
        margin-bottom: 22px;
    }
    .testimonials .swiper-pagination {
        top: 500px;
        right: 34px;
    }
    .testimonials__wrapper {
        padding: 0;
    }
    .form-title {
        font-weight: 700;
    }
}
@media (max-width: 360px) {
    .testimonials-img__wrapper {
        width: calc(100% - 32px);
        margin: 0 16px;
    }
    .testimonials-img__wrapper img {
        max-height: 360px;
    }
}