/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why Choose Two
--------------------------------------------------------------*/
.why-choose-two {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 30px 0 20px;
    z-index: 1;
}

.why-choose-two__shape-2 {
    position: absolute;
    left: -13.8%;
    right: 83.7%;
    top: -20.12%;
    bottom: 8.03%;
    opacity: 0.4;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, #6669D8 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.why-choose-two__shape-3 {
    position: absolute;
    left: 66.41%;
    right: -16.51%;
    top: -0.27%;
    bottom: -11.82%;
    opacity: 0.5;
    filter: blur(120px);
    background: radial-gradient(50% 50% at 50% 50%, rgba(250, 86, 116, 0.63) 0%, rgba(7, 12, 20, 0) 100%);
    z-index: -1;
}

.why-choose-two__left {
    position: relative;
    display: block;
    /* margin-top: 100px;
    margin-right: 60px; */
}

.why-choose-two__img {
    position: relative;
    display: block;
    z-index: 1;
}

.why-choose-two__img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: rgb(11, 25, 44);
    background: linear-gradient(0deg, rgba(11, 25, 44, 1) 23%, rgba(11, 25, 44, 0) 100%);
    z-index: 1;
}

.why-choose-two__img img {
    width: 100%;
}

.why-choose-two__right {
    position: relative;
    display: block;
}

.why-choose-two__right .section-title {
    margin-bottom: 22px;
}

.why-choose-two__points {
    position: relative;
    display: block;
    margin-top: 25px;
}

.why-choose-two__points li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-two__points li+li {
    margin-top: 25px;
}

.why-choose-two__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    top: 18px;
    z-index: 1;
}

.why-choose-two__points li .icon:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 10px solid transparent;
    background: linear-gradient(90deg, #8F88FF, #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: .20;
    z-index: -1;
}

.why-choose-two__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: var(--techguru-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.why-choose-two__points li:hover .icon span {
    transform: scale(0.9);
}

.why-choose-two__points li .content {
    position: relative;
    display: block;
    flex: 1;
}

.why-choose-two__points li .content h4 {
    font-size: 24px;
    color: var(--techguru-white);
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Why Choose Three
--------------------------------------------------------------*/

.why-choose-three__bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .20;
    height: 477px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
}





/*--------------------------------------------------------------
# Why Choose Two Carousel (Mobile)
--------------------------------------------------------------*/
.why-choose-two__carousel {
    position: relative;
    display: block;
    margin-top: 25px;
}

.why-choose-two__carousel-item {
    position: relative;
    display: block;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    min-height: 350px;
}

.why-choose-two__carousel-item .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    margin: 0 auto 20px;
    z-index: 1;
}

.why-choose-two__carousel-item .icon:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    animation-fill-mode: both;
    animation-name: ripple;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all 0.4s ease;
    visibility: visible;
    opacity: .20;
    z-index: -1;
}

.why-choose-two__carousel-item .icon span {
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: var(--techguru-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.why-choose-two__carousel-item .content {
    position: relative;
    display: block;
    text-align: center;
}

.why-choose-two__carousel-item .content h3 {
    font-size: 20px;
    color: var(--techguru-white);
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 15px;
}

.why-choose-two__carousel-item .content p {
    font-size: 16px;
    line-height: 26px;
    color: var(--techguru-text);
    margin: 0;
}

/* Navigation Arrows */
.why-choose-two__carousel {
    padding: 0 0px;
}

.why-choose-two__carousel .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.why-choose-two__carousel .owl-nav button.owl-prev,
.why-choose-two__carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

.why-choose-two__carousel .owl-nav button.owl-prev {
    left: 0;
}

.why-choose-two__carousel .owl-nav button.owl-next {
    right: 0;
}

.why-choose-two__carousel .owl-nav button.owl-prev span,
.why-choose-two__carousel .owl-nav button.owl-next span {
    color: var(--techguru-white);
    font-size: 20px;
    line-height: 1;
}

.why-choose-two__carousel .owl-nav button.owl-prev:hover,
.why-choose-two__carousel .owl-nav button.owl-next:hover {
    background: linear-gradient(90deg, #5CB0E9 0%, #3D72FC 100%);
    box-shadow: 0 0 20px rgba(60, 114, 252, 0.5);
}

.why-choose-two__carousel .owl-nav button.owl-prev:disabled,
.why-choose-two__carousel .owl-nav button.owl-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}



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