/*--------------------------------------------------------------
# Portfolio One
--------------------------------------------------------------*/
.portfolio-one {
    position: relative;
    display: block;
    padding: 30px 0 20px;
    background-color: var(--techguru-black);
    z-index: 1;
}

.portfolio-one__big-text {
    font-size: 467px;
    font-weight: 900;
    line-height: 1em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0) 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 94px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: capitalize;
    z-index: -1;
}

.portfolio-one__shape-1 {
    position: absolute;
    left: 0;
    top: 140px;
    opacity: 0.6;
    z-index: -1;
}

.portfolio-one__shape-1 img {
    width: auto;
}

.portfolio-one__shape-2 {
    position: absolute;
    right: 0;
    top: 20%;
    opacity: 0.6;
    z-index: -1;
}

.portfolio-one__shape-2 img {
    width: auto;
}

.portfolio-one .row {
}

.portfolio-one__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 58px;
}

.portfolio-one__top .section-title {
    margin-bottom: 0px;
}

.portfolio-one__round-text-box {
    position: relative;
    display: block;
    top: 3px;
}

.portfolio-one__round-text-box-outer {
    position: relative;
    display: block;
    width: 170px;
    height: 170px;
}

.portfolio-one__round-text-box-inner {
    position: relative;
    display: block;
    width: 170px;
    height: 170px;
}

.portfolio-one__curved-circle {
    position: absolute;
    top: 4px;
    left: 0px;
    bottom: 0;
    right: 0;
    color: var(--techguru-white);
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize !important;
    height: 170px !important;
}

.portfolio-one__single {
    position: relative;
    display: block;
}

.portfolio-one__img-box {
    position: relative;
    display: block;
}

.portfolio-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 40px;
    z-index: 1;
}

.portfolio-one__img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--techguru-black);
    opacity: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.portfolio-one__single:hover .portfolio-one__img::before {
    opacity: .40;
}

.portfolio-one__tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.portfolio-one__tag span {
    position: relative;
    display: inline-block;
    background-color: var(--techguru-base);
    font-size: 16px;
    font-weight: 700;
    color: #2F4858;
    padding: 9px 20px 8px;
    border-radius: 22px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.portfolio-one__tag span:hover {
    color: #05173D;
}

.portfolio-one__img img {
    width: 100%;
    border-radius: 40px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.portfolio-one__single:hover .portfolio-one__img img {
    transform: scale(1.05) rotate(0deg);
}

.portfolio-one__content {
    position: relative;
    display: flex;
    padding-left: 50px;
    padding-top: 24px;
    align-items: flex-start;
    justify-content: space-between;
}

.portfolio-one__title-box {
    position: relative;
    display: block;
}

.portfolio-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.portfolio-one__title a {
    color: var(--techguru-white);
}

.portfolio-one__title a:hover {
    color: var(--techguru-base);
}

.portfolio-one__arrow {
    position: relative;
    display: block;
}

.portfolio-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    border-radius: 50%;
    font-size: 16px;
    color: var(--techguru-white);
    z-index: 1;
}

.portfolio-one__arrow a span {
    transform: rotate(-45deg);
}

.portfolio-one__arrow a:hover {
    color: var(--techguru-black);
}

.portfolio-one__arrow a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--techguru-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.portfolio-one__arrow a:hover::before {
    transform: scaleX(1);
}

.portfolio-one__year {
    position: absolute;
    top: 51px;
    left: -12px;
    transform: rotate(-90deg);
}

.portfolio-one__year::before {
    content: "";
    width: 25px;
    height: 2px;
    background: linear-gradient(270deg, #3D72FC 0%, #5CB0E9 100%);
    position: absolute;
    left: -35px;
    bottom: 14px;
}

.portfolio-one__year span {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/*--------------------------------------------------------------
# Portfolio Two
--------------------------------------------------------------*/

.portfolio-two__box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.portfolio-two__box li {
    position: relative;
    flex: 0 0 50%;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.portfolio-two__box li.active {
    flex: 0 0 50%;
}

.portfolio-two__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: -15px;
    right: 0;
    margin: 0 !important;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    height: 44px;
    width: 44px;
    line-height: 44px;
    border-radius: 12px;
    background-color: transparent;
    font-size: 20px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-prev {
    position: relative;
    display: inline-block;
    height: 44px;
    width: 44px;
    line-height: 44px;
    border-radius: 12px;
    background-color: transparent;
    font-size: 20px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;

}

.portfolio-two__carousel.owl-theme .owl-nav .owl-prev:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next span,
.portfolio-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next:hover span,
.portfolio-two__carousel.owl-theme .owl-nav .owl-prev:hover span {
    background: linear-gradient(270deg, #ffffff 0%, #ffffff 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-prev span {
    transform: rotateY(180deg);
}

.portfolio-two__carousel.owl-theme .owl-nav .owl-next:hover,
.portfolio-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
}

.portfolio-two__carousel.owl-carousel .owl-dots {
    position: relative;
    text-align: center;
    margin: 60px auto 0 !important;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.portfolio-two__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(270deg, rgba(250, 86, 116, .20), rgba(96, 101, 212, .20));
    margin: 0px 5px;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.portfolio-two__carousel.owl-carousel .owl-dots .owl-dot::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background-color: var(--techguru-base);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.portfolio-two__carousel.owl-carousel .owl-dot.active::after {
    transform: scaleX(1.0);
}

.portfolio-two__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.portfolio-two__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}











@media(min-width: 768px) {


    .portfolio-two__box li {
        flex: 1;

    }

    .portfolio-two__box li.active {
        flex: 1.90;
    }


}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

    .portfolio-two__box li.active {
        flex: 0 0 100%;
    }


}





/*--------------------------------------------------------------
# Portfolio Page
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Portfolios Details
--------------------------------------------------------------*/
.portfolio-details {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 136px;
    z-index: 1;
}

.portfolio-details__top-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 84px;
    color: var(--techguru-white);
    margin-bottom: 32px;
}

.portfolio-details__get-touch-shape {
    position: absolute;
    width: 68px;
    height: 68px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    border-radius: 50%;
}

.portfolio-details__text-1 {
    margin: 13px 0 60px;
}

.portfolio-details__text-5 {
    margin: 12px 0 13px;
}

.portfolio-details__text-6 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--techguru-white);
}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/