/*=========================== SLIDER css ===========================*/
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 375px) {
    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
}

@media (min-width: 768px) { 
    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
}

@media (min-width: 1280px) {
    .carousel-inner {
        position: relative;
        width: 100%;
        height: 475px;
        overflow: hidden;
    }
}

@media (min-width: 1360px) {
    .carousel-inner {
        position: relative;
        width: 100%;
        height: 520px;
        overflow: hidden;
    }
}

@media (min-width: 1440px) {
    .carousel-inner {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}

.carousel-item {
    position: relative;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.carousel-item img{
    height: 100%;
}

.carousel-item::before {
    position: absolute;
    content: '';
    width: 33%;
    height: 100%;
    /* background: -webkit-linear-gradient(rgba(0, 103, 244, 0.3) 0%, rgba(43, 219, 220, 0.3) 100%);
    background: -o-linear-gradient(rgba(0, 103, 244, 0.3) 0%, rgba(43, 219, 220, 0.3) 100%);
    background: linear-gradient(rgba(0, 103, 244, 0.3) 0%, rgba(43, 219, 220, 0.3) 100%); */
    top: 0;
    right: 15%;
    -webkit-transform: skewX(20deg);
    -moz-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    -o-transform: skewX(20deg);
    transform: skewX(20deg); 
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .carousel-item::before {
        width: 40%; 
    } 
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-item::before {
        width: 60%; 
    } 
}

@media (max-width: 767px) {
    .carousel-item::before {
        width: 50%;
        right: 45%; 
    } 
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .carousel-item::before {
        right: 25%; 
    } 
}

.carousel-item .slider-image-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 9; 
}

.carousel-item .slider-image-box .slider-image {
    max-width: 680px;
    width: 100%; 
}

.slider-content {
    position: relative;
    z-index: 9;
    padding-top: 240px;
    padding-bottom: 200px; 
}

@media (max-width: 767px) {
    .slider-content {
        padding-top: 190px;
        padding-bottom: 150px; 
    } 
}

.slider-content .title {
    font-size: 88px;
    line-height: 96px;
    color: #Da4D4D;
    font-weight: 700; 
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-content .title {
        font-size: 58px;
        line-height: 80px; 
    } 
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-content .title {
        font-size: 72px;
        line-height: 90px; 
    } 
}

@media (max-width: 767px) {
    .slider-content .title {
        font-size: 34px;
        line-height: 45px; 
    } 
}

.slider-content .text {
    color: #Da4D4D;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px; 
}

.slider-content .slider-btn {
    padding-top: 16px; 
}
    
.slider-content .slider-btn li {
    display: inline-block;
    margin: 16px 8px 0; 
}

@media (max-width: 767px) {
    .slider-content .slider-btn li {
        margin: 16px 3px 0; 
    } 
}

.slider-content .slider-btn li a.rounded-one {
    background-color: #Da4D4D;
    border-color: #Da4D4D; 
}

.slider-content .slider-btn li a.rounded-one:hover {
    background-color: transparent;
    color: #fff; 
}

.slider-content .slider-btn li a.rounded-two {
    border-color: #fff; 
}

.slider-content .slider-btn li a.rounded-two:hover {
    background-color: #fff;
    color: #0067f4; 
}

.carousel-indicators {
    margin-bottom: 50px; 
}

.carousel-indicators li {
    display: block;
    width: 8px;
    height: 8px;
    background-color: rgb(218 77 77);
    border-radius: 50px;
    border: 0;
    margin: 0px 2px; 
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-indicators li {
        width: 13px;
        height: 13px; 
    } 
}

@media (max-width: 767px) {
    .carousel-indicators {
        margin-bottom: 15px; 
    }

    .carousel-indicators li {
        width: 13px;
        height: 8px; 
    } 
}

.carousel-indicators li.active {
    background-color: #da4d4d;
    width: 16px;
    border-radius: 50px; 
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-indicators li.active {
        width: 23px; 
    } 
}

@media (max-width: 767px) {
    .carousel-indicators li.active {
        width: 23px; 
    } 
}

.carousel .carousel-control-prev, .carousel .carousel-control-next {
    top: 50%;
    font-size: 32px;
    color: #da4d4d;
    bottom: auto;
    left: 60px;
    right: auto;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border: 1px solid rgb(218 77 77);
    border-radius: 5px; 
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .carousel .carousel-control-prev, .carousel .carousel-control-next {
        left: 30px; 
    } 
}

 @media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel .carousel-control-prev, .carousel .carousel-control-next {
        display: none; 
    } 
}

@media (max-width: 767px) {
    .carousel .carousel-control-prev, .carousel .carousel-control-next {
        display: none; 
    } 
}

.carousel .carousel-control-next {
    right: 60px;
    left: auto; 
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .carousel .carousel-control-next {
        right: 30px; 
    } 
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel .carousel-control-next {
        right: 30px;
    } 
}

@media (max-width: 767px) {
    .carousel .carousel-control-next {
        right: 30px; 
    } 
}