.mySwiper.swiper {
      width: 100%;
      height: 100%;
    }

 .mySwiper .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
	 height: 400px;
	 background: red;
    }

.mySwiper .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

.behindBackground{
    position: absolute;
    content: "";
    width: 100%;
    height: 1000px;
    border-radius: 30%;
    z-index: -1;
    filter: blur(20px);
	max-width: 2000px;
	margin-inline: auto;
}
.behindBackground-top{
	right: 0;
    top:18%;
	background: linear-gradient(-45deg, rgba(255, 61, 61, 0.06), rgba(61, 103, 255, 0.045));
}

.behindBackground-bottom{
   left: 0;
   bottom:18%;
   background: linear-gradient(-45deg, rgba(255, 61, 61, 0.06), rgba(61, 103, 255, 0.045));
}

/*********************
START: HEADLINE
*********************/
.headline {
    background-color: var(--text-color2);
    position: relative;
    position: relative;
}

.headline::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/icons/Effect-background-1.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.headline-content {
    padding-block: 11rem;
    position: relative;
}

.headline .headline-content::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
}

.headline .headline-content::before {
    background-color: var(--text-color);
}

.headline--image {
/*     margin-block-start: 1.75rem; */
	margin-block-start: 5rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.headline--image>img {
    width: 60%;
    margin: auto;
    display: block;
}

.headline--image>img.landingBannerMobile {
    display: none;
}

.headline--text {
    width: 50%;
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    right: 0;
    z-index: 2;
}

.headline--text>h1 {
    line-height: var(--line-height120);
/* 	line-height:96px; */
    color: var(--primary-color);
/*     font-size: var(--txt100); */
	font-size: var(--txt80);
}

.headline--btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-inline-start: 1rem;
    margin-block-start: 1rem;
}

.headline--btns>.btn:first-child {
    margin-inline-end: 2rem;
}

/*********************
END: HEADLINE
*********************/


/*********************
START: TECHNOLOGIES
*********************/
.technologies {
    border-bottom: 1px solid var(--bordered);
    background-color: var(--text-color);
	position: relative;
}

.technologies--content .swiper {
    width: 100%;
    height: 100%;
}

/* .swiper-wrapper {
    display: flex;
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
} */

.technologies--content .swiper-wrapper {
/*     justify-content: space-between; */
    color: var(--text-color2);
/*     flex-wrap: wrap; */
    display: flex;
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.technologies--content .swiper-slide {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1rem;
/* 	border: 1px solid red; */
}

.technologies--content .swiper-slide>img {
    padding-inline-end: 1rem;
    width: 100%;
    aspect-ratio: 5/1;
}

.technologies--content .swiper-slide>img.django{
	 aspect-ratio: 6/1 !important;
}

.technologies--content .swiper-slide>span {
    font-size: var(--txt16);
    color: var(--text-color2);
	white-space: nowrap;
	display: none;
}

/*********************
END: TECHNOLOGIES
*********************/

/*********************
START: SHOWCASE
*********************/

.showCase{
	padding-block: 15rem;
    display: flex;
    justify-content: space-between;
	border-bottom: 1px solid var(--bordered);
	position: relative;
    /* overflow-x: hidden; */
}

.showCase:after{
	position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    bottom: 0;
    left: 40%;
	transform: translatex(-50%);
    background-color: var(--bordered);
	transition: all 2s;
	opacity: 1;
}

.showCase.active:after{
	opacity:0;
}

.showCase .title {
	position: absolute;
    width: 35%;
    margin-inline-start: 14px;
	top: 50%;
	left: 14px;
	transform: translatey(-50%);
	transition: all 2s;
}

.showCase.active .title {
	top: 12%;
}

.showCase .title>span {
    display: block;
    width: max-content;
}

.showCase .showCase--slider .swiper {
    width: 100%;
}

.showCase--slider {
    width: 100%;
    transition: all 2s;
    position: relative;
    right: -40%;
}

.showCase.active .showCase--slider {
    right: 0;
}

.showCase--slider .swiper-slide {
    padding: 1.5rem;
    border-radius: var(--border-radius16);
    background-color: rgba(255, 255, 255, 0.7);
	aspect-ratio: auto 4/0.96;
	height: auto !important;
}

.showCase .swiper-slide>div {
    position: relative;
    overflow: hidden;
}

.showCase .swiper-slide>div>img.indicatorImage {
    object-fit: cover;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.5s;
	height: auto;
    width: 100%;
	border-radius: var(--border-radius8);
/* 	aspect-ratio: auto 4/2.41; */
	aspect-ratio: 4/4;
}

.showCase .swiper-slide>div:hover img.indicatorImage {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.showCase .swiper-slide>div a.btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s;
    width: max-content;
}

.showCase .swiper-slide:hover > div a.btn {
    opacity: 1;
    visibility: visible;
}

.showCase .swiper-slide> a.titleImage {
    margin-block: 2rem;
	display: block;
}

/* .showCase .swiper-slide> a.titleImage > img{
	width: 100%;
	height: auto;
	aspect-ratio: 7/1;
	object-fit: contain;
} */

.showCase .swiper-slide> a.titleImage > h3{
	color: var(--text-color2);
	font-size: var(--txt25);
}

.showCase .swiper-slide>p {
    font-size: var(--txt16);
    line-height: var(--line-height150);
    color: var(--third-color);
}

.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal{
	opacity: 0 !important;
}
/* showCase animation */
/*********************
END: SHOWCASE
*********************/

/*********************
START: SERVICES
*********************/
.services {
    position: relative;
}

.services::before {
    background-color: var(--text-color2);
}

.services::after {
    position: absolute;
    content: "";
/*     width: calc(100% - 120px); */
	width: 100%;
    height: 3px;
    bottom: 0;
    right: 0;
    border-bottom-width: 1px;
    border-bottom-color: var(--bordered);
    border-bottom-style: solid;
}

.services--content {
    display: flex;
    justify-content: space-between;
    padding-block: 295px;
    position: relative;
    padding-inline-start: 100px;
}

.services--content .title {
    margin-inline-start: 14px;
    font-size: var(--txt50);
    margin-block-end: 2rem;
    color: var(--text-color2);
    text-transform: uppercase;
}

.services--content::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 295px);
    bottom: 0;
    left: 100px;
    background-color: var(--bordered);
}

.services--content::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: var(--bordered);
}

.services--content>h5,
.services--content>ul {
    width: 47%;
}

.services--content>h3 {
    text-align: center;
}

.services--content>ul li {
    width: 90%;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius8);
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.services--content>ul li:not(:last-child) {
    margin-block-end: 1.5rem;
}

.services--content>ul li:hover {
    background-color: var(--text-color2);
/*     -webkit-box-shadow: 0px 12px 32px -7px rgba(39, 44, 63, 0.7);
    -moz-box-shadow: 0px 12px 32px -7px rgba(39, 44, 63, 0.7);
    box-shadow: 0px 12px 32px -7px rgba(39, 44, 63, 0.7); */
}

.services--content>ul>li>h4 {
    width: 50%;
    font-weight: 800;
    color: var(--text-color2);
    margin-block-end: 1.5rem;
    text-transform: uppercase;
    font-size: var(--txt30);
    line-height: var(--line-height120);
}

.services--content>ul>li:hover>h4 {
    color: var(--primary-color);
}

.services--content>ul>li>p {
    color: var(--text-color2);
    font-size: var(--txt16);
    line-height: var(--line-height150);
}

.services--content>ul>li:hover>p {
    color: var(--text-color);
}

/*********************
START: SERVICES
*********************/

/*********************
START: CLIENTS
*********************/
.clients {
    position: relative;
    border-bottom: 1px solid var(--bordered);
}

.clients::before {
    background-color: var(--text-color2);
}

.clients .title {
    padding-block-start: 250px;
    margin-inline-start: 114px;
}

.clients .title>h3 {
    padding-block-end: 130px;
}

.clients .title::after {
    top: 250px;
}

.clients--content {
    position: relative;
}

.clients--content::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: var(--bordered);
}

.clients--content::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    bottom: 0;
    left: 100px;
    background-color: var(--bordered);
}

.clients--content .borderAnimationY::before {
    background-color: var(--text-color2);
}

.clients--slider {
    display: flex;
    flex-direction: column;
    z-index: 1;
    width: 100%;
    padding-block-end: var(--gap2);
}

/* clients--slider */
.clients--slider .swiper {
    width: 100%;
    height: 100%;
}

.clients--slider .swiper-wrapper {
    display: flex;
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.clients--slider .swiper-slide {
    padding:2rem 1.5rem;
    background: var(--text-color);
    color: var(--text-color2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius16);
    margin-inline-end: 1rem;
	min-height: 260px;
	height: auto;
}

.clients--slider .swiper-slide .clients--slider__person {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-block-start: 2rem;
}

.clients--slider .swiper-slide .clients--slider__person span{
	font-size: var(--txt14)
}

.clients--slider .swiper-slide .clients--slider__person>div:first-child {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.clients--slider .swiper-slide .clients--slider__person>div:first-child>img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-inline-start: 0.5rem;
}

.clients--slider .swiper-slide .clients--slider__person > div:last-child > img{
	width: 24px;
}

.clients--slider .swiper-slide>p {
    text-align: left;
	font-size:var(--txt16);
	line-height: var(--line-height150);
}

.clients--slider .swiper:nth-child(odd) .swiper-slide .clients--slider__person span{
	text-align: left;
}

.clients--slider .swiper:nth-child(odd) .swiper-slide>p{
	direction: ltr;
}

.clients--slider .swiper:nth-child(even) {
    margin-block: 1.5rem;
}

.clients--slider .swiper:nth-child(even) .swiper-slide .clients--slider__person,
.clients--slider .swiper:nth-child(even) .swiper-slide .clients--slider__person>div:first-child {
    flex-direction: row;
}

.clients--slider .swiper:nth-child(even) .swiper-slide .clients--slider__person>div:first-child>img {
    margin-inline-end: 0.5rem;
}

/*********************
START: CLIENTS
*********************/


/*********************
START: ARTICLES
*********************/
.articles--content {
    position: relative;
}

.articles--content::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 170px;
    top: 0;
    left: 0;
    background-color: var(--bordered);
}

.articles--content .title {
    margin-inline-start: 14px;
    padding-block-start: 170px;
    padding-block-end: 80px;
}

.articles--content .title::after {
    top: 170px;
}

.articles--slider .swiper {
      width: 100%;
      height: 100%;
    }

.articles--slider .swiper-wrapper .swiper-slide {
	min-height: 450px;
    padding:2rem 1.5rem;
    border-radius: var(--border-radius16);
    position: relative;
}

.articles--slider .swiper-wrapper .swiper-slide>h3 {
    font-size: var(--txt30);
    line-height: var(--line-height150);
}

.articles--slider .swiper-wrapper .swiper-slide>p {
    font-size: var(--txt16);
    line-height: var(--line-height150);
    margin-block: 1.5rem;
}

.articles--slider .swiper-wrapper .swiper-slide>div {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.articles--slider .swiper-wrapper .swiper-slide>div>a {
    display: block;
    position: relative;
    width: max-content;
    padding-inline-end: 3rem;
    font-size: var(--txt16);
}

.articles--slider .swiper-wrapper .swiper-slide:nth-child(n) {
    background-color: var(--blue-color);
    color: var(--text-color);
}

.articles--slider .swiper-wrapper .swiper-slide:nth-child(2n) {
    background-color: var(--orange-color);
    color: var(--text-color2);
}

.articles--slider .swiper-wrapper .swiper-slide:nth-child(3n) {
    background-color: var(--radical-color);
    color: var(--text-color);
}

.articles--slider a.btn {
    margin-inline: auto;
    margin-block-start: 75px;
    margin-block-end: 200px;
    width: 30%;
	transition: all 0.5s;
}

.articles--slider a.btn:hover{
	background-color: #f0f0f0;
}

.articles--slider .swiper-wrapper .swiper-slide a.more-blog-post:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 65%;
	left: 71%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
}

.articles--slider .swiper-wrapper .swiper-slide:nth-child(odd) a.more-blog-post:before{
	background-image: url(../img/icons/chevron-white-right.svg);
}

.articles--slider .swiper-wrapper .swiper-slide:nth-child(even) a.more-blog-post:before{
	background-image: url(../img/icons/chevron-black-right.svg);
} 
/*********************
END: ARTICLES
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 2560px) {
	.technologies--content .swiper-slide>img {
    aspect-ratio: 7/1;
	}
	
	.technologies--content .swiper-slide>img.django{
		aspect-ratio: 8/1 !important;
	}
    .headline--image>img {
        width: 60%;
    }

    .technologies--content .swiper-slide>span,
    .showCase--content .title>span,
    .showCase .swiper-slide>p,
    .services--content>ul>li>p,
    .clients--slider .swiper-slide>p,
    .clients--slider__person>div:first-child>span, 
    .articles--content .swiper-slide>p, 
    .articles--content .swiper-slide>div>a{
        font-size: var(--txt30);
    }

    .clients--slider .swiper-slide .clients--slider__person>div:first-child>img {
        width: 100px;
        height: 100px;
    }

    .clients--slider .swiper-slide .clients--slider__person>div:last-child>img {
        width: 50px;
        height: 50px;
    }
	
	.clients--slider .swiper-slide .clients--slider__person span,
	.articles--slider .swiper-wrapper .swiper-slide>div>a,
	.articles--slider .swiper-wrapper .swiper-slide>p{
		font-size: var(--txt25);
	}
	
	.articles--slider .swiper-wrapper .swiper-slide a:before {
		top: 75%;
		left: 80%;
	}
}

@media screen and (min-width: 1920px) and (max-width: 2559px) {
    .technologies--content .swiper-slide>span,
    .showCase--content .title>span,
    .showCase .swiper-slide>p,
    .services--content>ul>li>p,
    .clients--slider .swiper-slide>p,
    .clients--slider__person>div:first-child>span, 
    .articles--content .swiper-slide>p,
    .articles--content .swiper-slide>div>a {
        font-size: var(--txt25);
    }

    .clients--slider .swiper-slide .clients--slider__person>div:first-child>img {
        width: 80px;
        height: 80px;
    }

    .clients--slider .swiper-slide .clients--slider__person>div:last-child>img {
        width: 40px;
        height: 40px;
    }
	
	.clients--slider .swiper-slide .clients--slider__person span,
	.articles--slider .swiper-wrapper .swiper-slide>div>a,
	.articles--slider .swiper-wrapper .swiper-slide>p{
		font-size: var(--txt20);
	}
	
	.articles--slider .swiper-wrapper .swiper-slide a:before {
		top: 70%;
		left: 75%;
	}
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
	.headline--image {
    	margin-block-start: 9rem;
	}
	
	.headline--text {
		top: 40%;
	}
	
    .technologies--content .swiper-slide>span,
    .showCase--content .title>span,
    .showCase .swiper-slide>p,
    .services--content>ul>li>p,
    .clients--slider .swiper-slide>p,
    .clients--slider__person>div:first-child>span, 
    .articles--content .swiper-slide>p, 
    .articles--content .swiper-slide>div>a{
        font-size: var(--txt20);
    }

    .clients--slider .swiper-slide .clients--slider__person>div:first-child>img {
        width: 60px;
        height: 60px;
    }

    .clients--slider .swiper-slide .clients--slider__person>div:last-child>img {
        width: 30px;
        height: 30px;
    }
	
		
	.clients--slider .swiper-slide .clients--slider__person span,
	.articles--slider .swiper-wrapper .swiper-slide>div>a,
	.articles--slider .swiper-wrapper .swiper-slide>p{
		font-size: var(--txt18);
	}
}

@media screen and (max-width: 1320px) {
    .technologies--content .swiper-wrapper {
        justify-content: unset;
        flex-wrap: unset
    }
}

@media screen and (max-width: 1200px) {
/* 	.headline--text{
		width: 60%;
	}
	 */
    .services--content {
        padding-inline-start: 0;
    }

    .services--content::before,
    .clients--content::before {
        content: unset;
    }

    .services--content>ul li {
        width: 100%;
    }

    .services--content>h5 {
        width: 30%;
    }

    .services--content>ul {
        width: 60%;
    }

    .clients .title {
        margin-inline-start: 14px;
    }
}

@media screen and (max-width: 992px) {
    .headline--btns {
        flex-direction: column-reverse;
        width: 80%;
        margin-inline: auto;
    }
	
	.headline--text {
		top: 30%;
	}
	
	.headline--btns {
		margin-block-start: 3rem;
	}

    .headline--btns>.btn {
        width: 100%;
        margin-block-start: 2rem;
    }

    .headline--btns>.btn:first-child {
        margin-inline: 0;
        margin-block-start: 1rem;
    }

    .headline--text>h1 {
        font-size: 55px;
    }

    .articles--slider .swiper-wrapper {
        justify-content: unset;
    }
}

@media screen and (max-width: 768px) {	
	.headline--image{
		width: 95%;
	}
	
	.headline--image>img {
		width: 80%;
		margin-inline-start: 2.5%;
		margin-inline-end: auto;
	}
	
	 .headline--btns {
        width: 100%;
		margin-block-start: 1rem;
    }
	
    .headline--text {
/*         width: 70%; */
		width: min-content;
    }

/*     .headline--btns {
        margin-block-start: var(--gap);
    }
 */
    .headline--btns>.btn {
        width: 95%;
    }
	
	.technologies--content .swiper-slide>img{
		 aspect-ratio: 6/1;
	}

    .services--content {
        flex-direction: column;
    }

    .services--content>h5 {
        width: 100%;
    }
	
	.services--content>ul{
		width: 95%;
		margin-inline: auto;
	}

    .services--content>ul li>h4,
    .services--content>ul li>h4>span {
        font-size: var(--txt25);
    }
}

@media screen and (max-width: 576px) {
	.headline-content {
		padding-block: 9rem;
	}
	
    .headline--text {
        width: 95%;
        top: 45%;
    }

    .headline--text>h1 {
        font-size: 40px;
    }

    .headline--btns {
        width: 100%;
		margin-block-start: 6rem;
    }

    .headline--image>img {
        margin-inline-end: auto;
        margin-inline-start: 0;
    }

    .headline--image>img.landingBannerMobile {
        display: block;
    }

    .headline--image>img.landingBannerDesktop {
        display: none;
    }

    .headline--image {
        margin-block-start: 0;
        left: 20px;
    }
	
	.technologies--content .swiper-slide>img{
		 aspect-ratio: 6/1;
	}
	
	.showCase--slider{
		right: 0;
		padding-left: 14px;
	}
	
	.showCase .title {
		top: 15%;
	}
	
	.showCase:after{
		content: unset;
	}

    .services--content>ul li>h4,
    .services--content>ul li>h4>span {
        font-size: var(--txt20);
    }

    .articles--content a.btn{
        width: 100%;
    }
	
	.clients--slider .swiper:nth-child(even) .swiper-slide .clients--slider__person, 
	.clients--slider .swiper:nth-child(odd) .swiper-slide .clients--slider__person{
		flex-direction: column;
	}
	
	.clients--slider .swiper:nth-child(odd) .swiper-slide .clients--slider__person{
		align-items: flex-end;
	}
	
	.clients--slider .swiper:nth-child(even) .swiper-slide .clients--slider__person{
		align-items: flex-start;
	}
	
	.clients--slider .swiper .swiper-slide .clients--slider__person > div:first-child{
		margin-bottom: 12px;
	}
}

@media screen and (max-width: 425px) {
    .headline--text>h1 {
        font-size: 35px;
    }
}

@media screen and (max-width: 375px) {
    .headline--text>h1 {
        font-size: 30px;
    }
}
/*********************
END: MEDIA
*********************/