.btn-primary{background-image: linear-gradient(to right, #296acd 0%, #2989cd 100%);color: #fff;border: transparent;}
.btn-primary img {filter: brightness(100);}
.btn img{margin-left: 12px;margin-top: -3px;}
.btn-primary:hover{
	background: linear-gradient(to right, #296acd 50%, #2989cd 100%);
	border: 1px solid transparent;
}
.btn-primary:hover img {
	filter: brightness(0);
}
.btn-outline-primary:hover img{
	filter: brightness(0);
}
.btn-outline-primary{
	background-color: #000;
	position: relative;
	background-image: unset;
	color: #ff8008;
	border: none;
}
.btn-black img {
	filter: brightness(100);
}
.btn-black {
	background: #000;
	color: #fff;
}
.btn-black:hover {
	background: #fff;
}
.btn-black:hover img {
	filter: brightness(1);
}
.btn-outline-primary:before{
	content: "";
	position: absolute;
	left: -2px;
	right: -2px;
	top: -2px;
	bottom: -2px;
	background: linear-gradient(to right, #ff8008 0%, #ffc837 100%);
	z-index: -1;
	border-radius: 35px;
}
.btn-outline-primary:hover{
	background: linear-gradient(to right, #ff8008 0%, #ffc837 100%);
	color: #000;
}

.section {
	padding: 4rem 0;
	position: relative;
	background: #000;
	color: #fff;
}


/* .header.header-fixed {
	background: #000;
} */
/* .banner-content span {
	font-size: 20px;
	background: linear-gradient(to right, #296acd 0%, #2989cd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
	margin-bottom: 12px;
} */
.banner-content h1 {
	font-size: 20px;
	font-weight: 600;
}
.banner-content p {
	font-size: 16px;
	line-height: 1.46;
	margin-bottom: 33px;
}
.banner-features {
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: relative;
	background: #000000; /* Old browsers */
	background: -moz-linear-gradient(left, #000000 0%, #0f0f0f 47%, #000000 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #000000 0%,#0f0f0f 47%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #000000 0%,#0f0f0f 47%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 ); /* IE6-9 */  
}
.banner-features__items {
	display: flex;
	position: relative;
	flex: 1;
	justify-content: center;
	align-items: center;
} 
.banner-features__items:not(:last-child):before {
	content: "";
	position: absolute;
	height: 100px;
	width: 1px;
	background: #222;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.banner-features__items .features-icn {
	margin-right: 20px;
}
.banner-features__items .features-title p {
	margin: 0;
}
.banner-slider-nav::before {
	background: linear-gradient(to right, #090909 0%, rgba(255, 255, 255, 0) 100%);
	left: 0;
	top: 0;
}
.section--slide::after {
	background: linear-gradient(to right, #090909 0%, rgba(255, 255, 255, 0) 100%);
	right: -1px;
	top: 0;
	transform: rotateZ(180deg);
}
.banner-wrapper {
	margin-bottom: 100px;
}
.slider--category .slick-list {
	padding-left: 0 !important;
}
.slider--category {
	counter-reset: card-count;
}
.card--category {
	position: relative;
	margin: 10px;
	background: #0a0b0b;
	padding: 30px 33px;
	padding-bottom: 90px;
	border-radius: 0 50px;
	counter-increment: card-count;
}
.card--category:before {
	content: "";
	position: absolute;
	background: linear-gradient(to right, #296acd 50%, #2989cd 100%);
	z-index: -1;
	top: -3px;
	left: -3px;
	bottom: -3px;
	right: -3px;
	border-radius: 0 50px 0 50px;
}
.card--category .card__icn {
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(to right, #296acd 50%, #2989cd 100%);
	border-radius: 0 30px 0 0;
	margin-bottom: 40px;
	transition: all 0.3s;
}
.card--category .card__content h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
}
.card--category .card__content p {
	margin-bottom: 0;
	font-size: 18px;
	line-height: 1.5;
}
.card--category:after {
	content: "0" counter(card-count, count);
	position: absolute;
	font-size: 120px;
	font-weight: 600;
	color: #18181a;
	bottom: -10px;
	right: 0;
	line-height: 1;
}
.slider--category .slick-prev {
	right: 50%;
	left: unset;
	margin-right: -250px;
}
.slider--category .slick-arrow {
	top: -40px;
	border: 1px solid var(--color-gray-300);
	border-radius: 0;
	width: 50px;
	height: 40px;
}
.slider--category .slick-next {
	right: 50%;
	margin-right: -300px;
}
.slider--category .slick-disabled:before {
	opacity: 0.2;
}
.slider--category .slick-arrow:before {
	left: 27px;
	top: 21px;
	border-color: #fff;
	width: 10px;
	height: 10px;
}
.slider--category .slick-arrow.slick-next:before {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	margin-left: -10px;
}
.slider--category .slick-arrow.slick-prev:before {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	margin-left: -6px;
}
.slider--category .slick-arrow:before {
	width: 12px;
	height: 12px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -7px 0 0 0;
	margin-left: -7px;
	content: "";
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
.slider--category .slick-disabled:before {
	opacity: 0.2;
}
.slider--category .slick-arrow:not(.slick-disabled) {
	background: #323235;
}
.slider--category .slick-arrow.slick-disabled {
	background: #101010;
}
/* .card--category:hover .card__icn {
	background-image: linear-gradient(to right, #296acd 0%, #2989cd 100%);
	transition: all 0.3s;
} */
/* .card--category:hover .card__icn img {
    filter: brightness(0);
    transition: all 0.3s;
} */
.card--category:hover .card--category:before{
	content: none;
}
.service .service__type {
	display: flex;
	align-items: center;
	padding: 20px 30px;
	cursor: pointer;background: #282828;
    color: #fff;
	margin-bottom: 1.5rem;
}
.service__type .service__title h4 {
	margin-bottom: 0;
	font-weight: 600;
}
.service__icn {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 25px;
}
.service__icn img {
	height: 60px;
	object-fit: contain;
}
.service .service__type:hover .service__title h4{
	background: linear-gradient(to right, #296acd 0%, #2989cd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.service__title em {
	visibility: hidden;
	opacity: 0;
	transition: all 300ms;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
}
.service .service__type:hover .service__title em {
	visibility: visible;
	opacity: 1;
	transition: all 300ms;
	right: -35px;
	filter: brightness(0) invert(1);
}
.service__type .service__title {
	position: relative;
}
.section--services .row{
	position: relative;
}
.block.block--achievement {
	padding: 20px;
    border: 1px solid #4a4a4a;
    border-radius: 20px;
    margin-bottom: 50px;
    background: #202020;
}
.section--achievement .block__count {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    column-gap: 10px;
	align-items: center;
}

 .section--icopostdev .post-ico:hover h4:after, .service-block span, .service-block:hover {
    background: var(--color-primary);
}
.block--achievement:hover .block__count h2 {
   background: #fff;
    background-clip: text;
}
.block--achievement .block__count h2 {	
	background: linear-gradient(to right, #b07cff, #52b8ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
	margin-bottom: 0;
}
.block--achievement .block__title p {
	margin-bottom: 0;
	font-size: 24px;
}
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* .navbar-toggler {
	color: rgba(255, 255, 255, 0.55);
	border-color: rgba(255, 255, 255, 0.3);
} */
/* Next CSS Start */
.section--heading {
    background: #000;
}
.section--heading h2 {
	font-size: 48px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: #fff;
}
.section--heading p {
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: center;
	color: #fff;
	opacity: 0.8;
}
#carouselExampleIndicators {
	margin-top: 60px;
}
.section--icoservices .horizontalDots {
	width: 100%;
	margin: 0px;
	position: relative;
	left: 0;
	top: 15px;
	display: flex;
	justify-content: start;
	align-items: start;
	border-radius: 4px;
	box-shadow: 0 8px 8px 0 rgb(0 0 0 / 5%);
	flex-direction: column;
}
.section--icoservices .carousel-indicators.horizontalDots li {
	position: relative;
	display: flex;
	border-width: 0;
	align-items: center;
	justify-content: start;
	margin-bottom: 50px;
	padding: 0 10px;
	width: 100%;
	background: transparent;
	color: #fff;
}
.section--icoservices .horizontalDots li.active:before {
	position: absolute;
	left: -35px;
	top: 2px;
	content: "";
	border-bottom: 1px solid #313131;
	transition: all ease-in-out 0.5s;
	width: 35px;
	height: 30px;
	background: url(https://www.code-brew.com/wp-content/themes/Avada-Child-Theme/media/2022/03/icoservice_icon.png?var=1) no-repeat;
	margin: 0 0 0 0;
	background-position: left;
	border: none;
}
.section--icoservices .horizontalDots li h3 {
	position: relative;
	margin-bottom: 0;
	padding: 0 0;
	font-size: 20px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: normal;
	color: #616161;
}
.section--icoservices .horizontalDots li:not(.active) h3 {
	opacity: 1;
}
.section--icoservices .horizontalDots li.active .feature-content h3 {
	background-image: linear-gradient(to right, #296acd 0%, #2989cd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	cursor: pointer;
}
.section--icoservices .outer {
	border-radius: 50px;
	padding: 40px 0 0 30px;
	background-image: url(https://www.code-brew.com/wp-content/themes/Avada-Child-Theme/media/2022/03/icoservice_bg.png);
	background-position: left;

}
.section--icoservices .feature-content {
	display: flex;
	align-items: center;
}
.section--icoservices .carousel-indicators .active {
	opacity: 1;
}
.section--icoservices .swiper-bot__img {
	position: relative;
	top: 210px;
	right: 10px;
	z-index: 1;
}
.section--icoservices .rectangle {
    position: relative;
	width: 100%;
    margin: 0 auto;
    padding: 20px 40px;
    border-radius: 25px;
    background: var(--color-primary);
    text-align: left;
}
.section--icoservices .rectangle p {
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: normal;
	color: #fff;
	opacity: 0.8;
}
.section--icoservices .carousel-inner {
	left: 0;
	top: 0;
	height: auto;
	width: 100%;
}
/* .section--icoservices .swiper-top__img {
    height: 220px;
    position: absolute;
    bottom: 0;
    width: auto;
    right: 15px;
} */
.section--icopostdev .post-ico-list {
	margin-top: 100px;
}
.section--icopostdev .post-ico {
	position: relative;
	border: 2px solid #296acd;
	border-radius: 25px;
	height: 570px;
	padding: 40px 20px;
	overflow: hidden;
	transition: all 0.25s ease-in;
	background: #000;
	z-index: 0;
}
.section--icopostdev .post-ico h4 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.42;
	color: #fff;
}
.section--icopostdev .post-ico p {
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	opacity: 0.9;
	margin-top: 30px;
}
.section--icopostdev .post-ico img {
	position: absolute;
	bottom: 0;
	right: 0;
	object-fit: cover;
	z-index: -1;
}
/* .post-ico-list [class*="col-"]:nth-child(4) .post-ico img {left: 0;} */
.hov_img {
	display: none;
}
.section--icopostdev .post-ico:hover {
	background: linear-gradient(to bottom, #2989cd 20%, #296acd);
	position: relative;
	transform: translateY(-80px);
	border-color: #2989cd;
	cursor: pointer;
}
.section--icopostdev .post-ico:hover .hov_img {
	display: block;
}
.section--icopostdev .post-ico:hover h4 {
	color: #000;
}
.section--icopostdev .post-ico:hover p {
	color: #000;
}
.section--icopostdev .post-ico:hover img {
	z-index: 0;
}
.cta-common {
    background: linear-gradient(to right, #b07cff, #52b8ff);
    color: #fff;
    padding: 4rem 0;
}
.section--cta .get-started h1 {
	font-size: 48px;
	font-weight: 600;
	line-height: normal;
	color: #fff;
	margin-bottom: 50px;
}
.ico--marketing .main {
	position: relative;
	background-image: url(https://www.code-brew.com/wp-content/themes/Avada-Child-Theme/media/2022/03/marketing_bg.png);
	width: 100%;
	height: 980px;
	background-position: bottom center;
	background-repeat: no-repeat;
	border-radius: 30px;
}
.ico--marketing .main h2 {
	width: 440px;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.33;
	color: #fff;
	margin: 50px 0 0 50px;
}
.ico--marketing .main .right {
	position: absolute;
	top: 60px;
	right: 0;
	justify-content: center;
}
.ico--marketing .main .boxes {
	padding: 30px 20px;
	border: 2px solid #080808;
	margin-bottom: 10px;
}
.ico--marketing .main .boxes h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
	margin-bottom: 20px;
}
.ico--marketing .main .boxes p {
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    color: #fff;
    opacity: 0.9;
}
.ico--marketing  .dots_outer {
	width: 29px;
	height: 29px;
	margin-bottom: 10px;
	padding: 5px 0 0 7px;
	background-color: #404040;
	border-radius: 50%;
	opacity: 0.8;
}
.ico--marketing .main .boxes.active {
	border: 2px solid #296acd;
	border-radius: 25px;
}
.ico--marketing .main .boxes.active .dots_inner {
	background: linear-gradient(to right, #296acd 0%, #2989cd 100%);
}
.ico--marketing  .dots_inner {
	width: 15px;
	height: 15px;
	background: #fff;
	display: inline-block;
	border-radius: 50%;
}
.ico--platform .main {
	background: linear-gradient(to right, #b07cff, #52b8ff);
	border-radius: 25px;
	width: 100%;
}
.ico--platform .main .left {
	padding: 0 80px;
}
.ico--platform .main .left h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: normal;
	color: #fff;
	margin-bottom: 15px;
}
.ico--platform .main .left p {
	font-size: 22px;
	line-height: normal;
	color: #fff;
	margin-bottom: 25px;
}
.section.ico--marketing {
    background-image: url(/wp-content/themes/Avada-Child-Theme/media/2025/images/trusted-tested.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}
.ico--whychoose h2 {
	font-size: 48px;
	font-weight: 600;
	line-height: normal;
	color: #fff;
	text-align: left;
	margin-bottom: 20px;
	background: #000;
}
.ico--whychoose p {
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	opacity: 0.8;
	margin-bottom: 20px;
	margin-top: 10px;
}
.choose-list-block:hover{
	background: var(--color-primary);
}
.ico--whychoose .choose-list {
	position: relative;
	left: 200px;
	top: 50px;
	list-style: none;
}
.ico--whychoose:before {
	content: '';
	background: url(https://www.code-brew.com/wp-content/themes/Avada-Child-Theme/media/2022/03/left_hand.png);
	position: absolute;
	width: 100%;
	left: -12%;
	background-position: left;
	height: 550px;
	top: 42%;
	background-repeat: no-repeat;
	background-size: auto;
}
.ico--whychoose:after {
	content: '';
	background: url(https://www.code-brew.com/wp-content/themes/Avada-Child-Theme/media/2022/03/right_hand.png);
	position: absolute;
	width: 100%;
	right: -66%;
	background-position: left;
	height: 550px;
	top: 2%;
	background-repeat: no-repeat;
	background-size: auto;
}
.ico--whychoose .choose-list li {
	width: 600px;
	height: 220px;
	padding: 50px 80px;
	border-radius: 25px;
	background-color: #0f0f0f;
	margin: 50px 0;
}
.ico--whychoose .choose-list li h4 {
	font-size: 24px;
	font-weight: 600;
	line-height: normal;
	color: #fff;
}
.ico--whychoose .choose-list li p {background: none;}
.ico--whychoose .choose-list li span {
	position: absolute;
	left: -50px;
	font-size: 48px;
	font-weight: 600;
	line-height: normal;
	color: #fff;
	margin: 0 0;
	background-image: linear-gradient(to right, #296acd 50%, #2989cd 100%);
	padding: 30px 0 0 30px;
	border-radius: 50%;
	width: 120px;
	height: 120px;
}
.ico--whychoose .choose-list li:nth-child(2) {
	margin-left: 140px;
}
.ico--whychoose .choose-list li:nth-child(2) span {
	left: 90px;
}
.ico--whychoose .choose-list li:nth-child(3) {
	margin-left: 270px;
}
.ico--whychoose .choose-list li:nth-child(3) span {
	left: 220px;
}
.ico--whychoose .choose-list li:nth-child(4) {
	margin-left: 410px;
}
.ico--whychoose .choose-list li:nth-child(4) span {
	left: 360px;
}
.section--lastcta {
	background: linear-gradient(to right, #b07cff, #52b8ff);
	padding: 50px 0;
}
.section--lastcta .last {
    width: 100%;
}
.section--lastcta h2 {
	font-size: 48px;
	font-weight: 600;
	line-height: normal;
	color: #fff;
	margin-bottom: 50px;
}
.footer {
	padding: 20px 0 0;
	background: #000;
}
/* Next CSS End */

/* Media CSS Start */

.choose-list-block {
    border-radius: 5px;
    padding: 30px;
    min-height: 290px;
    border: 1px solid #505050;
    background: #141414;
    position: relative;
    overflow: hidden;
    color: #fff;
	z-index:99;
}
.choose-list-block:hover::before {
    transform: scale(4);
    transition: 0.6s;
   	background: linear-gradient(to right, #b07cff, #52b8ff);
	z-index:-1;
}
.choose-list-block span{position:relative;}

.choose-list-block span {font-style: normal;font-weight: 600;font-size: 48px;line-height: 48px;}
.choose-list-block h4 {font-style: normal;font-weight: 700;font-size: 18px;line-height: 27px;}
.choose-list-block p {font-style: normal;font-weight: 400;font-size: 16px;line-height: 26px;}


@media (max-width:1200px) {
	.section-head {background: #000;}
	.block--achievement .block__count h2 {font-size: 50px;}
	.section--icoservices .horizontalDots li.active .feature-content h3 {font-size: 20px;}
	.section--icoservices .rectangle {width: 80%;}
	.section--icoservices .swiper-top__img {right: 10px;}
	.section--icopostdev .post-ico-list {margin-top: 100px;}
	.section--icopostdev .post-ico img {height: 170px;}
	.section--cta .get-started h1 {font-size: 36px;margin-bottom: 40px;}
	.ico--marketing .main .boxes {padding: 20px 15px;}
	.ico--marketing .main h2 {width: 400px;font-size: 44px;}
	.ico--platform .main .left h2 {font-size: 36px;margin-bottom: 10px;}
	.ico--platform .main .left p {font-size: 20px;}
	.ico--whychoose:before {left: -48%;}
	.ico--whychoose:after {right: -62%;top: 4%;}
	.ico--whychoose .choose-list {left: 80px;}
	.section--lastcta h2 {font-size: 36px;margin-bottom: 40px;}
}
@media (max-width:1199px) {
	.btn-black {background: linear-gradient(to left, #296acd 100%, #2989cd 0%);color: #fff;}
	.btn-black img {filter: none;}
	.section--icoservices .horizontalDots li h3 {font-size: 18px;}
	.section--icoservices .horizontalDots li.active .feature-content h3 {font-size: 18px;}
	.section--icoservices .outer {border-radius: 30px;padding: 50px;}
	.section--icoservices .rectangle {width: 100%;height: 360px;padding: 20px 40px;}
	.section--icoservices .swiper-top__img {height: 200px;}
	.section--icopostdev .post-ico {padding: 20px 10px;height: 320px;margin-bottom: 30px;}
	.section--icopostdev .post-ico h4 {font-size: 17px;}
	.section--icopostdev .post-ico p {font-size: 15px;margin-top: 20px;}
	.section--icopostdev .post-ico img {height: 120px;}
	.post-ico-list [class*="col-"]:nth-child(1) .post-ico img {left: 0;}
	.section--cta .get-started {border-radius: 50px;padding: 50px 0;}
	.section--icopostdev .post-ico:hover {transform: translateY(0px);}
	.section--icopostdev .post-ico-list {margin-top: 40px;}
	.ico--marketing .main h2 {width: 300px;font-size: 30px;}
	.ico--marketing .main .boxes h5 {font-size: 16px;margin-bottom: 10px;}
	.ico--marketing .main .boxes p {font-size: 15px;}
	.ico--platform .main .left h2 {font-size: 26px;}
	.ico--platform .main .left p {font-size: 16px;}
	.ico--whychoose .choose-list {left: 0;}
	.ico--whychoose .choose-list li span {left: -25px;font-size: 32px;margin: 20px 0;padding: 18px 0 0 20px;width: 80px;height: 80px;}
	.ico--whychoose .choose-list li:nth-child(2) span {left: 70px;}
	.ico--whychoose .choose-list li:nth-child(2) {margin-left: 100px;}
	.ico--whychoose .choose-list li:nth-child(3) span {left: 170px;}
	.ico--whychoose .choose-list li:nth-child(3) {margin-left: 200px;}
	.ico--whychoose .choose-list li:nth-child(4) span {left: 270px;}
	.ico--whychoose .choose-list li:nth-child(4) {margin-left: 300px;}
	.section--lastcta h2 {font-size: 30px;}
}
@media (max-width:1024px) {
	.section-head {padding: 0 10px;}
	.section--cta .get-started {border-radius: 30px;padding: 30px 0;}
	.section--cta .get-started h1 {font-size: 30px;margin-bottom: 30px;}
	.ico--whychoose h2 {font-size: 36px;margin-bottom: 10px;}
	.ico--whychoose .choose-list {top: 0;left: 20px;}
	.ico--whychoose:before, .ico--whychoose:after {display: none;}
	.ico--whychoose .choose-list li {width: 580px;}
}
@media (max-width:992px) {
	.section {padding: 2rem 0;}
	.section-head br, .section--heading h2 br {display: none;}
	.section--heading h2 {font-size: 34px;}
	.ico--whychoose .choose-list {left: 30px;}
}
@media (max-width:991px) {
	br {display: none;}
	.banner-features__items {flex: auto;}
	.section-head {padding: 0 20px;text-align: center;}
	.cta-content {text-align: center;padding: 0 20px;}
	.cta-action {text-align: center;}
	.banner-features__items .features-title p br {display: block;}
	.slick-dotted.slick-slider {width: 100%;}
	.card--category .card__content h3 {font-size: 20px;}
	.card--category .card__content p {font-size: 16px;}
	.service__icn {position: relative;display: block;overflow: hidden;}
	.service__icn img {width: 60px;transition: transform 0.2s ease-out;}
	.section--services .row {width: 100%;margin: 0 auto;}
	.service .service__type {justify-content: space-evenly;}
	.service__type:hover .service__icn img:first-child {transform: translateX(100%);}
	.service__type:hover .service__icn img:first-child {transform: translateY(100%);}
	
	.section--cta.cta--ico .cta-img {text-align: center;margin-top: 20px;}
	.section--cta.cta--ico .cta-action {text-align: center;}
	.block.block--achievement {padding: 0 30px 0;margin: 0 auto;}
	.section--heading h2 {font-size: 26px;}
	.section--heading p {font-size: 18px;}
	.section--icoservices .outer {text-align: center;padding: 20px;height: 100%;padding-top: 0;}
	#carouselExampleIndicators {margin-top: 40px;}
	.section--icoservices .horizontalDots {top: 0;}
	.section--icoservices .carousel-indicators.horizontalDots li {justify-content: center;margin-bottom: 30px;}
	.section--icoservices .horizontalDots li.active {padding: 0;}
	.section--icoservices .horizontalDots li.active:before {position: relative;top: 10px;}
	.section--icopostdev {width: 100%;text-align: center;}
	#carouselExampleIndicators .col-md-6 {width: 100%;margin-top: 20px;}
	.section--icoservices .rectangle {height: 100%;padding: 30px;text-align: center;}
	.section--icoservices .swiper-top__img {position: unset;margin: 10px auto;}
	.section--icopostdev .post-ico-list {margin-top: 30px;}
	.section--icopostdev .post-ico {padding: 20px 20px;height: 360px;margin: 15px auto;}
	.section--icopostdev .post-ico:hover {transform: translateY(0px);}
	.section--icopostdev h3 {width: 100%;text-align: center;}
	.section--cta .get-started h1 {font-size: 30px;margin-bottom: 20px;padding: 0 20px;}
	.ico--marketing .main {background: #0c0c0c;height: 100%;padding: 20px 0;}
	.ico--marketing .main .col-md-5, .ico--marketing .main .col-md-7, .ico--marketing .main .col-md-6 {width: 100%;}
	.ico--marketing .main h2 {width: 100%;font-size: 26px;margin: 0;padding: 25px 30px;text-align: center;}
	.ico--marketing .main .right {position: unset;padding: 0 50px;}
	.ico--marketing .main .boxes {border: none;padding: 20px 25px;}
	.ico--marketing .main .boxes h5 {font-size: 18px;}
	.ico--marketing .main .boxes p {font-size: 16px;line-height: 1.5;}
	.ico--platform {width: 100%;text-align: center;}
	.ico--platform .main .left {padding: 120px 20px;height: auto;}
	.ico--platform .main .left h2 {font-size: 18px;}
	.ico--platform .main .left p {font-size: 14px;}
	.ico--platform .main .right {height: 100%;width: 100%;overflow: hidden;}
	.ico--platform .main .right img {width: 100%;height: 400px;border-radius: 0px 0px 25px 25px;}
	.ico--whychoose h2 {font-size: 26px;text-align: center;width: 100%;}
	.ico--whychoose p {font-size: 18px;margin-bottom: 10px;text-align: center;}
	.ico--whychoose .choose-list {position: unset;text-align: center;}
	.ico--whychoose .choose-list li {width: 100%;margin: 50px auto;height: auto;padding: 30px 50px;}
	.ico--whychoose .choose-list li:nth-child(2), .ico--whychoose .choose-list li:nth-child(3), .ico--whychoose .choose-list li:nth-child(4) {margin-left: 0;}
	.ico--whychoose .choose-list li span {position: relative;font-size: 22px;margin: 0 auto;padding: 15px;text-align: center;vertical-align: top;top: -45px;left: 0;}
	.ico--whychoose .choose-list li:nth-child(2) span, .ico--whychoose .choose-list li:nth-child(3) span, .ico--whychoose .choose-list li:nth-child(4) span {left: 0;}
	.section--lastcta h2 {font-size: 28px;padding: 0 10px;}
	.new-heading-style h5, .new-heading-style p, .new-heading-style h4, #myCarouseladdress .item h4, #myCarouseladdress .item h5 {color: #fff;}
}
/* Media CSS End */