:root {
    --primary: rgba(254, 153, 37, 1);
    --secondary: rgba(32, 52, 75, 1);
    --text: rgba(0, 0, 0, 1);
    --white: #fff;
    --black: #000;
}

@font-face {
    font-family: "CeraPro";
    src: url("../fonts/Cera-pro/CeraPro-Thin.ttf") format("ttf"),
        url("../fonts/Cera-pro/CeraPro-Thin.woff") format("ttf"),
        url("../fonts/Cera-pro/CeraPro-Thin.eot") format("eot");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CeraPro";
    src: url("../fonts/Cera-pro/CeraPro-Light.ttf") format("ttf"),
        url("../fonts/Cera-pro/CeraPro-Light.woff") format("ttf"),
        url("../fonts/Cera-pro/CeraPro-Light.eot") format("eot");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CeraPro";
    src: url("../fonts/Cera-pro/CeraPro-Regular.ttf") format("ttf"),
        url("../fonts/Cera-pro/CeraPro-Regular.woff") format("woff"),
        url("../fonts/Cera-pro/CeraPro-Regular.eot") format("eot");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CeraPro";
    src: url("../fonts/Cera-pro/CeraPro-Medium.ttf") format("ttf"),
        url("../fonts/Cera-pro/CeraPro-Medium.woff") format("woff"),
        url("../fonts/Cera-pro/CeraPro-Medium.eot") format("eot");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CeraPro";
    src:
        url("../fonts/Cera-pro/CeraPro-Bold.ttf") format("ttf"),
        url("../fonts/Cera-pro/CeraPro-Bold.woff") format("woff"),
        url("../fonts/Cera-pro/CeraPro-Bold.eot") format("eot");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CeraPro";
    src: url("../fonts/Cera-pro/CeraPro-Black.ttf") format("ttf"),
        url("../fonts/Cera-pro/CeraPro-Black.woff") format("woff"),
        url("../fonts/Cera-pro/CeraPro-Black.eot") format("eot");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
	overflow-x: hidden;
}

body {
    font-family: "CeraPro", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text);
    background: rgba(255, 255, 255, 1);
    /* position: relative; */
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn {
    font-family: "CeraPro", sans-serif;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    border: unset;
    padding: 16px 32px;
    width: fit-content;
    transition: all 0.3s;
}

.btn-primary{
    color: var(--white);
    background: var(--primary);
}
.btn-primary:active{
    color: var(--white) !important;
    background: var(--primary) !important;
}

.btn-primary:hover {
    background: rgb(207, 125, 32);
}


.section-title {
    font-family: "CeraPro", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

.container {
    max-width: 100%;
}

.testimonial-global-section {
    padding: 130px 0;
    background-color: var(--secondary);
}

.testimonial-global-section .text-col {
    color: var(--white);
}

.testimonial-global-section .section-title {
    margin-bottom: 16px;
    color: var(--white);
}

.testimonial-global-section .testimonials-slick {
    margin-top: 56px;
    overflow-x: hidden;
}

.testimonial-global-section .testimonials-slick .slick-list {
    margin: 0 -16px;
}

.testimonial-global-section .testimonials-slick .slick-slide {
    padding: 0 16px;
}

.testimonial-global-section .testimonials-slide {
    padding: 32px;
    background-color: rgba(245, 244, 241, 1);
    border-radius: 26px;
}

.testimonial-global-section .testimonials-slide-top-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.testimonial-global-section .testimonials-slide-top-row .d-flex {
    gap: 16px;
    align-items: center;
}

.testimonial-global-section .testimonials-item-name {
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    color: var(--text);
}

.testimonial-global-section .testimonials-item-position {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    font-style: italic;
    color: rgba(129, 129, 129, 1);
}

.testimonial-global-section .testimonials-item-desc {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    font-style: normal;
}
.testimonial-global-section .slick-arrow{
	all: unset;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: rgba(243, 243, 243, 1);
	cursor: pointer;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.testimonial-global-section .slick-prev{
	left: 24px;
	background-image: url('../img/blog-prev-icon.svg');
}
.testimonial-global-section .slick-next{
	right: 24px;
	background-image: url('../img/blog-next-icon.svg');
}

.plans-global-section {
    padding: 100px 0 160px;
}

.plans-global-section .section-title {
    margin-bottom: 12px;
}

.plans-global-section .plans-items-container {
    display: flex;
    gap: 24px;
    margin-top: 56px;
}

.plans-global-section .plans-item {
    width: calc(50% - 12px);
    padding: 32px;
    border-radius: 20px;
}

.plans-global-section .plans-item-top-row {
    display: flex;
    gap: 48px;
}

.plans-global-section .plans-item-top-row .left-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plans-global-section .left-col,
.plans-global-section .right-col {
    width: 50%;
}

.plans-global-section .plans-item:nth-child(1) {
    color: var(--white);
    background-color: var(--secondary);
}

.plans-global-section .plans-item:nth-child(2) {
    border: 1px solid rgba(87, 116, 205, 1);
}

.plans-global-section .plans-item-list li {
    display: flex;
    gap: 9px;
    align-items: start;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 300;
}

.plans-global-section .plans-item-list li::before {
    content: '';
    min-width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    display: inline-block;
}

.plans-global-section .plans-item-list ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plans-global-section .plans-item:nth-child(1) .plans-item-list li::before {
    background-image: url('../img/check-icon-orange.svg');
}

.plans-global-section .plans-item:nth-child(2) .plans-item-list li::before {
    background-image: url('../img/check-icon-black.svg');
}

.plans-global-section .plans-item .btn {
    width: 100%;
    margin-top: 32px;
}

.plans-global-section .plans-item-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
}

.plans-global-section .plans-item-subtitle {
    font-size: 16px;
}

.plans-global-section .plans-item-price {
    font-size: 48px;
    font-weight: 700;
}

.plans-global-section .plans-item:nth-child(1) .plans-item-price {
    color: var(--primary);
}

.plans-global-section .plans-item:nth-child(2) .plans-item-price {
    color: var(--text);
}

.plans-global-section .plans-item-price-dis {
    color: rgba(120, 120, 120, 1);
    text-decoration: line-through;
    font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.plans-global-section .plans-item-badge {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 10px;
	display: inline-block;
}

.numbers-global-section {
    padding: 16px;
    background-color: rgba(238, 244, 255, 0.85);
}

.numbers-global-section .container {
    display: flex;
    justify-content: space-between;
}

.numbers-global-section .numbers-item {
    width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.numbers-global-section .numbers-item-num {
    font-size: 64px;
    line-height: 1;
    color: rgba(32, 52, 75, 1);
    font-weight: 700;
}

.numbers-global-section .numbers-item-desc {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 500;
}

.blog-global-section {
    padding: 80px 0 100px;
}

.blog-global-section .section-desc {
    margin: 12px 0 18px;
}

.blog-global-section .blog-container {
    display: flex;
    margin-top: 96px;
    gap: 40px;
}

.blog-global-section .blog-card {
    width: calc(25% - 40px / 3);
    padding: 44px 32px;
    border-radius: 44px;
    background-color: rgba(245, 244, 241, 1);
    height: 412px;
    transition: all 0.3s;
}

.blog-global-section .blog-card:hover {
    background-color: var(--secondary);
}

.blog-global-section .blog-card-date {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: rgba(33, 37, 41, 0.5);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.blog-global-section .blog-card:hover .blog-card-date {
    color: var(--primary);
}

.blog-global-section .blog-card-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    min-height: 2lh;
    transition: color 0.3s;
}

.blog-global-section .blog-card:hover .blog-card-title {
    color: var(--white);
}

.blog-global-section .blog-card-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-global-section .blog-card:hover .blog-card-desc {
    color: var(--white);
}

.blog-global-section .blog-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-global-section .blog-card-content .btn {
    margin-top: auto;
}

.downlaod-global-section {
    margin-bottom: 130px;
}

.downlaod-global-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

/* .downlaod-global-section .section-title {
    margin-bottom: 32px;
} */

.downlaod-global-section .btn {
	margin: 16px 0 48px;
}

.downlaod-global-section .btns-col {
    display: flex;
    gap: 10px;
}


@media (min-width: 768px) {
    .blog-global-section .blog-card:hover {
        transform: translateY(-40px);
    }

}

@media (min-width: 1400px) {
    .container {
        max-width: 1384px;
    }
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {
    .section-title {
        font-size: 40px;
    }

    .btn {
        padding: 16px 32px;
    }

    .blog-global-section .slick-list {
        margin: 0 -16px;
    }

    .blog-global-section .slick-slide {
        padding: 0 16px;
    }

    .numbers-global-section .numbers-item-num {
        font-size: 48px;
    }

    .numbers-global-section .numbers-item-desc {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .plans-global-section {
        padding: 100px 0 100px;
    }

    .plans-global-section .plans-items-container {
        flex-direction: column;
        align-items: center;
    }

    .plans-global-section .plans-item {
        width: 90%;
    }

    .plans-global-section .plans-item-title {
        font-size: 32px;
    }

    .plans-global-section .plans-item-price {
        font-size: 40px;
    }

    .plans-global-section .plans-item-price-dis {
        font-size: 30px;
    }

    .numbers-global-section .numbers-item-num {
        font-size: 36px;
    }

    .numbers-global-section .numbers-item-desc {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .numbers-global-section {
        padding: 24px 16px;
    }

    .numbers-global-section .container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .numbers-global-section .numbers-item {
        width: 80%;
    }

    .numbers-global-section .numbers-item-num {
        font-size: 32px;
    }

    .numbers-global-section .numbers-item-desc {
        font-size: 22px;
    }

    .blog-global-section .blog-container {
        margin-top: 48px;
    }

    .blog-global-section .blog-card {
        height: auto;
    }
	
	.blog-global-section .blog-card-desc{
		margin-bottom: 24px;
	}

    .blog-global-section .blog-card-title {
        min-height: unset;
    }

    .downlaod-global-section .container {
        flex-direction: column;
        gap: 32px;
    }
	.testimonial-global-section .testimonials-slick .slick-list {
	  	margin: 0 -8px;
	}
	.testimonial-global-section .testimonials-slick .slick-slide{
		padding: 0 8px;
	}
	.testimonial-global-section .testimonials-slide{
		padding: 28px 24px;
	}
	.plans-global-section .plans-items-container{
		margin-top: 32px;
	}
	.downlaod-global-section .btn {
		margin: 12px 0 32px;
	}
}

@media (max-width: 576px) {
	body{
		font-size: 16px;
	}
	
    .section-title {
        font-size: 28px;
    }
	
	.btn{
		font-size: 16px;
	}

    .plans-global-section .plans-item {
        width: 100%;
        padding: 24px;
    }

    .plans-global-section .plans-item-top-row {
        gap: 24px;
		flex-direction: column;
    }

    .testimonial-global-section {
        padding: 80px 0;
    }

/*     .downlaod-global-section .section-title {
        margin-bottom: 24px;
    } */
	
	.testimonial-global-section .testimonials-slide-top-row{
		flex-wrap: wrap;
  		gap: 10px;
	}
	.plans-global-section .left-col,
	.plans-global-section .right-col{
		width: 100%;
	}
	.plans-global-section .plans-item-top-row .left-col{
		gap: 8px;
	}
	.plans-global-section .plans-item .btn{
		margin-top: 20px;
	}
	.plans-global-section .plans-item-title{
		font-size: 28px;
	}
	.plans-global-section .plans-item-price{
		font-size: 32px;
	}
	.downlaod-global-section{
		margin-bottom: 80px;
	}
	.testimonial-global-section .testimonials-item-desc{
		font-size: 16px;
	}
	.testimonial-global-section .slick-arrow{
		width: 42px;
  		height: 42px;
	}
	.testimonial-global-section .slick-prev{
		left: 10px;
	}
	.testimonial-global-section .slick-next{
		right: 10px;
	}
}