/*===========================
    01. SCS CSS 
===========================*/
.scs-span {
    font-size: medium;
    color: #939597;

}
.scs-section {
    position: relative;
    z-index: 3;
  
}

.scs-section.cta-bg {
    -webkit-clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%);
    clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%);
    z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .scs-section.cta-bg {
        -webkit-clip-path: polygon(0 3%, 100% 12%, 100% 88%, 0 97%);
        clip-path: polygon(0 3%, 100% 12%, 100% 88%, 0 97%);
    }
}

@media (max-width: 767px) {
    .scs-section.cta-bg {
        -webkit-clip-path: polygon(0 3%, 100% 12%, 100% 88%, 0 97%);
        clip-path: polygon(0 3%, 100% 12%, 100% 88%, 0 97%);
    }
}

.scs-section.cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, right top, left top, from(rgba(111, 88, 232, 0.18)), to(#3763eb));
    background: linear-gradient(to left, rgba(111, 88, 232, 0.18) 0%, #3763eb 100%);
}

.scs-section .scs-item-wrapper .scs-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #F4EEFB;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 30px;
    padding: 20px 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .scs-section .scs-item-wrapper .scs-item:hover {
        -webkit-box-shadow: 0px 0px 30px rgba(215, 224, 252, 0.45);
        box-shadow: 0px 0px 30px rgba(215, 224, 252, 0.45);
    }

        .scs-section .scs-item-wrapper .scs-item:hover .scs-icon {
            -webkit-box-shadow: 0px 0px 30px rgba(46, 87, 217, 0.45);
            box-shadow: 0px 0px 30px rgba(46, 87, 217, 0.45);
        }

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .scs-section .scs-item-wrapper .scs-item {
        padding: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .scs-section .scs-item-wrapper .scs-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .scs-section .scs-item-wrapper .scs-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.scs-section .scs-item-wrapper .scs-item .scs-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(#3763eb), to(#6f58e8));
    background: linear-gradient(#3763eb 0%, #6f58e8 100%);
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.scs-section .scs-item-wrapper .scs-item .scs-content {
    margin-left: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .scs-section .scs-item-wrapper .scs-item .scs-content {
        margin-left: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .scs-section .scs-item-wrapper .scs-item .scs-content {
        margin-left: 0px;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .scs-section .scs-item-wrapper .scs-item .scs-content {
        margin-left: 0px;
        margin-top: 20px;
    }
}

.scs-section .scs-item-wrapper .scs-item .scs-content h4 {
    font-size: 20px;
    color: #3763EB;
    margin-bottom: 10px;
}

.comment-form-wrapper,
.scs-form-wrapper {
    padding: 50px 40px;
    background: #fff;
    border: 1px solid #F4EEFB;
    margin-left: 0px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .comment-form-wrapper:hover,
    .scs-form-wrapper:hover {
        -webkit-box-shadow: 0px 0px 30px rgba(215, 224, 252, 0.45);
        box-shadow: 0px 0px 30px rgba(215, 224, 252, 0.45);
    }

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .comment-form-wrapper,
    .scs-form-wrapper {
        margin-left: 30px;
    }
}

.comment-form-wrapper .comment-form input,
.comment-form-wrapper .comment-form textarea,
.comment-form-wrapper .scs-form input,
.comment-form-wrapper .scs-form textarea,
.scs-form-wrapper .comment-form input,
.scs-form-wrapper .comment-form textarea,
.scs-form-wrapper .scs-form input,
.scs-form-wrapper .scs-form textarea {
    padding: 18px 25px;
    border-radius: 30px;
    border: 1px solid #F4EEFB;
    margin-bottom: 25px;
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
    .comment-form-wrapper .comment-form input,
    .comment-form-wrapper .comment-form textarea,
    .comment-form-wrapper .scs-form input,
    .comment-form-wrapper .scs-form textarea,
    .scs-form-wrapper .comment-form input,
    .scs-form-wrapper .comment-form textarea,
    .scs-form-wrapper .scs-form input,
    .scs-form-wrapper .scs-form textarea {
        padding: 12px 25px;
    }
}

.comment-form-wrapper .comment-form input:focus,
.comment-form-wrapper .comment-form textarea:focus,
.comment-form-wrapper .scs-form input:focus,
.comment-form-wrapper .scs-form textarea:focus,
.scs-form-wrapper .comment-form input:focus,
.scs-form-wrapper .comment-form textarea:focus,
.scs-form-wrapper .scs-form input:focus,
.scs-form-wrapper .scs-form textarea:focus {
    border-color: #3763EB;
}

.comment-form-wrapper .comment-form textarea,
.comment-form-wrapper .scs-form textarea,
.scs-form-wrapper .comment-form textarea,
.scs-form-wrapper .scs-form textarea {
    border-radius: 18px;
}

.comment-form-wrapper .comment-form .theme-btn,
.comment-form-wrapper .scs-form .theme-btn,
.scs-form-wrapper .comment-form .theme-btn,
.scs-form-wrapper .scs-form .theme-btn {
    font-weight: 500;
    padding: 18px 90px;
}

.page-banner-section {
    margin-top: 107px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-banner-section {
        margin-top: 94px;
    }
}

.page-banner-section .banner-content h2 {
    margin-bottom: 20px;
}

.page-banner-section .banner-content .page-breadcrumb nav ol {
    background: none;
    padding: 0;
}

    .page-banner-section .banner-content .page-breadcrumb nav ol li {
        color: rgba(255, 255, 255, 0.7);
        font-size: 20px;
        font-weight: 500;
    }

        .page-banner-section .banner-content .page-breadcrumb nav ol li::before {
            color: #fff;
        }

        .page-banner-section .banner-content .page-breadcrumb nav ol li a {
            color: #fff;
        }

.carousel-section-wrapper {
    position: relative;
    z-index: 3;
}

    .carousel-section-wrapper .carousel-section {
        position: relative;
        z-index: 3;
    }

        .carousel-section-wrapper .carousel-section.clip-bg {
            -webkit-clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 89%);
            clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 89%);
        }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .carousel-section-wrapper .carousel-section.clip-bg {
        -webkit-clip-path: polygon(0% 8%, 100% 2%, 100% 98%, 0 92%);
        clip-path: polygon(0% 8%, 100% 2%, 100% 98%, 0 92%);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-section-wrapper .carousel-section.clip-bg {
        -webkit-clip-path: polygon(0% 8%, 100% 2%, 100% 98%, 0 92%);
        clip-path: polygon(0% 8%, 100% 2%, 100% 98%, 0 92%);
    }
}

@media (max-width: 767px) {
    .carousel-section-wrapper .carousel-section.clip-bg {
        -webkit-clip-path: polygon(0% 8%, 100% 2%, 100% 98%, 0 92%);
        clip-path: polygon(0% 8%, 100% 2%, 100% 98%, 0 92%);
    }
}

.carousel-section-wrapper .carousel-section.clip-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(rgba(111, 88, 232, 0.8)), to(#3763eb));
    background: linear-gradient(to right, rgba(111, 88, 232, 0.8) 0%, #3763eb 100%);
}

.carousel-section-wrapper .carousel-section.carousel-item .carousel-content .section-title h2 {
    margin-bottom: 25px;
}

.carousel-section-wrapper .carousel-section.carousel-item .carousel-content .section-title p {
    margin-bottom: 40px;
}

.carousel-section-wrapper .carousel-section.carousel-item .carousel-content .border-btn {
    border-color: #fff;
    color: #fff;
}

    .carousel-section-wrapper .carousel-section.carousel-item .carousel-content .border-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }

.carousel-section-wrapper .carousel-control {
    background: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #F4EEFB;
    color: #fff;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
}

    .carousel-section-wrapper .carousel-control:hover {
        background: #fff;
        color: #3763EB;
    }

    .carousel-section-wrapper .carousel-control.carousel-control-next {
        left: auto;
        right: 30px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-section-wrapper .carousel-control {
        top: auto;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        bottom: 80px;
        margin: auto;
    }

        .carousel-section-wrapper .carousel-control.carousel-control-prev {
            left: 42%;
        }

        .carousel-section-wrapper .carousel-control.carousel-control-next {
            left: 10%;
        }
}

@media (max-width: 767px) {
    .carousel-section-wrapper .carousel-control {
        top: auto;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        bottom: 80px;
        margin: auto;
    }

        .carousel-section-wrapper .carousel-control.carousel-control-prev {
            left: 37%;
        }

        .carousel-section-wrapper .carousel-control.carousel-control-next {
            left: 23%;
        }
}

.carousel-section-wrapper .carousel-control span {
    background: none;
}

.map-section {
    margin-top: -130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .map-section {
        margin-top: 130px;
    }
}

@media (max-width: 767px) {
    .map-section {
        margin-top: 130px;
    }
}

.accordion-style .single-accordion {
    border: 1px solid #F4EEFB;
    border-radius: 5px;
}

    .accordion-style .single-accordion .accordion-btn button {
        background: #fff;
        border: none;
        padding: 12px 30px;
        font-weight: 500;
        border-radius: 5px;
        position: relative;
    }

        .accordion-style .single-accordion .accordion-btn button::after {
            content: "\ea5e";
            font: normal normal normal 1em/1 "LineIcons";
            position: absolute;
            right: 30px;
            top: 15px;
            -webkit-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
        }

        .accordion-style .single-accordion .accordion-btn button.collapsed::after {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

    .accordion-style .single-accordion .accordion-content {
        padding: 20px 30px;
    }

.accordion-style.theme-accordion .single-accordion .accordion-btn button {
    background: -webkit-gradient(linear, right top, left top, from(#604cf5), to(#f7eeb5));
    background: linear-gradient(to left, #604cf5 0%, #f7eeb5 100%);
    color: #2E3640;
}

    .accordion-style.theme-accordion .single-accordion .accordion-btn button::after {
        color: #2E3640;
    }
