body {
    font-family: "Roboto", sans-serif;
    background-color:#f1f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    padding-left: 0px;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
}

:root {
    --primary-color: #CB0201;
    --secondary-color: #DA251C;
    --bg-color: #D9E6EF;
    --black-color: #181e2c;
    --bg-button: #CB0201;
    --white-color: #fff;
    --bg-light: #e5e5ff;
    --banner-link: #6164ff;

}

/* top header css  */

.bg-top-header{
    /*background-color:var(--primary-color);*/
    padding:15px 5px;
    background-color:#CB0201;
    position:relative;
}

.bg-top-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    clip-path: polygon(5% 0, 100% 0%, 100% 99%, 0% 100%);
    z-index: 0;
    background: #CB0201;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-phone a{
    color: #fff;
    text-align: center;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.4s ease-in-out;
    font-weight:500;
}

.top-phone a:hover {
    /*color:#8486ff;*/
    color:#fff;
}

.top-phone a i {
    display:flex;
    justify-content:center;
    align-items:center;
    height:35px;
    width:35px;
    border-radius:100%;
    /*color:var(--primary-color);*/
    color:#CB0201;
    background-color:#fff;
    box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;
    transition: all 0.4s ease-in-out;
    border:1px solid transparent;
}

.top-phone a:hover i {
    background-color:transparent;
    border:1px solid var(--white-color);
    color:var(--white-color);
}

.top-social-icon {
    position:relative;
    z-index:2;
}

.top-social-icon ul {
    display: flex;
    align-items: center;
    justify-content:end;
    gap: 15px;
    margin-bottom:0;
}

.top-social-icon ul li {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /*border:1px solid #0056b5;*/
    border: 1px solid var(--primary-color);
    background-color: var(--white-color);
    /*box-shadow: 0px 4px 15px rgba(8, 14, 28, 0.1);*/
    box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;
    transition: all 0.4s;
}

.top-social-icon ul li:hover {
    transform: translateY(-5px);
    transition: all 0.4s ease-in-out;
    border:1px solid #fff;
    background-color: transparent;
}

.top-social-icon ul li a {
    /*color:#0056b5;*/
    color: var(--primary-color);
    font-size: 16px;
    display:inline-block;
    width: 100%;
    text-align: center;
     transition: all 0.4s;
}

.top-social-icon ul li:hover a {
    color:#fff;
}


.bg-header .row {
    align-items: center;
}

.bg-header {
    padding: 5px 0px;
    /*border-radius: 8px;*/
    /*box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;*/
    position: relative;
    width: 100%;
    /*left: 50%;*/
    /*top: 20px;*/
    /*transform: translateX(-50%);*/
    z-index: 99;
    background-color: #f1f0f0;
}

.sticky-fixed {
    top: 0%;
    left: 0%;
    position: fixed;
    background-color: white;
    z-index: 99;
    box-shadow: 0px 0px 12px #80808069;
    transform: translateY(0%);
    /* transition:all 0.5s ease; */
    width: 100%;
    animation: slideInDown .5s 1;
    border-radius: 0;
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        transform: translateY(0);
    }
}

.toggle-btn {
    border: none;
    background: none;
}

.toggle-btn i {
    font-size: 24px;
}

.offcanvas-logo {
    width: 50%;
}

.offcanvas-header-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offcanvas-header-menu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offcanvas-header-menu ul li a {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black-color);
    transition: all 0.5s;
}

.mobilenav-offcanvas .offcanvas-body {
    padding-top: 0;
}

.mobilenav-offcanvas .offcanvas-header .btn-close {
    background: unset;
    position: relative;
    left: -5px;
    top: -10px;
    opacity: 1;
}

.mobilenav-offcanvas .offcanvas-header i {
    font-size: 24px;
    color: #000;
}

.mobile-header {
    display: none;
}

.header-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    gap: 25px;
}

.header-menu ul li a {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black-color);
    transition: all 0.5s;
}

.header-menu ul li a:hover {
    color: var(--secondary-color);
}

.header-menu ul li a.active {
    color: var(--secondary-color);
}

.co-btn {
    width: 100%;
}

.button-hover {
    position: relative;
    z-index: 2;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--bg-button);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    width: auto;
    border-radius: 4px;
    z-index: 3;
    padding: 19px 40px;
    font-weight: 600;
    /* overflow: hidden; */
}

.button-hover:after,
.button-hover:before {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--black-color);
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: 99px;
    transform: scaleY(0);
}

.button-hover:hover:before,
.button-hover:hover:after {
    border-radius: 4px;
    transform: scale(1);
}

.button-hover:hover {
    color: var(--white-color) !important;
}

.scrollTop {
    position: fixed;
    right: 5%;
    border-radius: 50%;
    z-index: 99;
    bottom: 5%;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    background-color: var(--primary-color);
}

.scrollTop a {
    color: White;
    font-size: 24px;
}

.scrollTop a:hover {
    color: white;
}

.logo {
    width: 74%;
}

section {
    padding: 80px 0px;
}

section.remove-padding {
    padding: 0;
}

.inner-img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin: auto;
}

.inner-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.main-about-image {
    position: relative;
    padding-top: 70px;
}

/* .main-about-image .inner-img:after{
    position: absolute;
    content: "";
    left: 0%;
    bottom: 0%;
    width: 48%;
    height: 55%;
    border-radius: 50%;
    background-color: var(--bg-button);
    z-index: -1;
}
.main-about-image .inner-img:before{
    position: absolute;
    content: "";
    right: 5%;
    top: 12%;
    width: 26%;
    height: 30%;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--bg-button);
} */

.first-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--bg-button);
    position: absolute;
    bottom: 0;
    left:10%;
    animation: move-circle 6s infinite alternate-reverse;
}

.second-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--bg-button);
    position: absolute;
    top: 10%;
    right: 24%;
    animation: move-circle 6s infinite alternate;
}

@keyframes move-circle {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(20px)
    }
}

.experence {
    /*border-radius: 30px 30px 30px 30px;*/
    /*padding: 18px 16px 18px 18px;*/
    border-radius:15px;
    padding:10px;
    background-color: var(--bg-button);
    display: inline-block;
    position: absolute;
    width: 28%;
    top: 12%;
    left: 10%;
    text-align: center;
}

.experence span {
    font-size: 36px;
    font-weight: 600;
    color: var(--bg-color);
    display: block;
    line-height: 1;
}

.experence p {
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-color);
    text-transform: capitalize;
    margin-bottom: 0px;
}



.about-section .co-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-section .co-title .bar {
    margin: 0;
    margin-top: 10px;
}

.about-section .co-title h2 {
    font-size: 28px;
}

.about-section .co-title h3 {
    font-size: 28px;
    margin: 0;
    position: relative;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 600;
}

/*.about-section span{
    font-size:16px;
    font-weight:600;
    margin-bottom:1rem;
    display: block;
}*/
.about-section h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-section h2.highlight {
    min-height: 125px;
}

.about-section h2 span {
    color: var(--primary-color);
}

.about-section p {
    color: grey;
    line-height: 1.5;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 1.5rem;
}


.bg-about>.container>.row {
    flex-direction:row-reverse;
}

.banner-main {
    position: relative;
    background-color: var(--bg-color);
    z-index: 2;
    /*padding-top: 100px;*/
}

.banner-main .row {
    align-items: center;
}

.banner-main::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/background-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    opacity:0;
}


.bg-banner-shape {
    position: absolute;
    bottom: 0px;
    left: 0%;
    width: 100%;
}

.banner-content {
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index: 2;
    color:#fff;
    text-align:center;
    width:70%;
    margin:auto;
}

.banner-content h2 {
    font-size: 56px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.banner-content p {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.banner-content span {
    display: inline-block;
    font-weight: 600;
    font-size: 22px;
    line-height: 25px;
    text-transform: capitalize;
    position: relative;
    /* padding-left: 30px; */
    margin-bottom: 15px;
    color:#b19cff;
    color:#1885ff;
    color: var(--primary-color);
}

.banner-content span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    box-shadow: 3px 3px var(--primary-color);
    vertical-align: middle;
    opacity: 0;
}

.banner-box {
    /*padding: 100px 0;*/
     position:relative;
    z-index:9;
}

.banner-box::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color:#000;
    z-index: 1;
    opacity:0.68;
}

.banner-box .row {
    align-items: center;
}

.banner-box .banner-bg {
    width: 100%;
    height: 750px;
    overflow: hidden;
}

.banner-box .banner-bg img {
    height: 100%;
    object-fit: cover;
}

.banner-slide {
    position: relative;
    z-index: 2;
}

.banner-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(to right, rgba(37, 37, 37, 0.7490196078), rgba(37, 37, 37, 0));
    z-index: -1; */
    background-color: #000;
    opacity: 0.4;
    z-index: 0;
    display: none;
}

.banner-img {
    height: 500px;
    width: 500px;
    margin: auto;
    position: relative;
}

.banner-img img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}

.b-arrow {
    position: absolute;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    color: #fff;
    background-color: var(--primary-color);
    font-size: 20px;
    left: 10%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.b-arrow.prev-arrow {
    top: 45%;
    z-index: 2;
    left: 5%;
}

.b-arrow.next-arrow {
    top: 55%;
    z-index: 2;
    left: 5%;
}

.banner-main .b-arrow {
    background-color: #CB0201;
}

.banner-bg-img {
    height:790px;
    width:100%;
    position:relative;
}
.banner-bg-img img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top;
}

.ripple-1,
.ripple-2,
.ripple-3,
.ripple-4,
.ripple-5,
.ripple-6 {
    height: 70px;
    width: 70px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    -webkit-animation: heroripple 8s linear infinite;
    animation: heroripple 8s linear infinite;
    z-index: -1;
}


.ripple-1 {
    animation-delay: 0;
}

.ripple-2 {
    animation-delay: 1s;
}

.ripple-3 {
    animation-delay: 2s;
}

.ripple-4 {
    animation-delay: 3s;
}

.ripple-4 {
    animation-delay: 4s;
}

.ripple-5 {
    animation-delay: 5s;
}

.ripple-6 {
    animation-delay: 1s;
}

@keyframes heroripple {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

.bg-banner-shape1 {
    position: absolute;
    top: 0px;
    left: 0;
    opacity: 0.18;
    z-index: -1;
}

.top-shape {
    position: absolute;
    top: -6%;
    left: -7%;
    z-index: -1;
    animation: movebounce 5s linear infinite;
    opacity: 0.2;
}

@keyframes movebounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.banner-slider {
    margin-bottom: 0;
}



.co-title {
    margin-bottom: 50px;
    text-align: center;
}

.co-title h2 {
    font-size: 50px;
    margin: 0;
    position: relative;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 600;
}

.co-title .bar {
    height: 4px;
    width: 85px;
    background: var(--secondary-color);
    margin: 20px auto 0;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.co-title .bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #ffffff;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG;
}

@keyframes MOVE-BG {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(85px)
    }
}


.bg-counter-section {
    padding: 80px 0;
    background-color: #0e0e1f;
    position: relative;
    color: var(--white-color);
    z-index: 2;
}

.bg-counter-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/Home-bg-linedot-image.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.bg-counter-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/Home-Bg-transparant-image.png);
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.7;
}


.counter-title-section .co-title {
    text-align: left;
    margin-bottom: 20px;
}

.counter-title-section .co-title .bar {
    margin: 0;
    margin-top: 10px;
}

.counter-title-section .co-title h2 {
    font-size: 28px;
}

.counter-title-section h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.counter-title-section h2.highlight {
    min-height: 125px;
}

.counter-title-section h2 span {
    /*color: #977bff;*/
    color:var(--primary-color);
}

.counter-section {
    border-radius: 20px;
    /* background: var(--black-color); */
    background: #2c3344;
    padding: 20px;
    margin-bottom: 20px;
    color: var(--white-color);
    text-align: center;
    box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.3);
    border: 0.1px solid transparent;
    transition: all 0.5s;
}

.counter-section:hover {
    transform: translateY(-5px);
    cursor: pointer;
    border: 0.1px solid #3F51B5;
}

.counter-icon {
    margin: auto;
    margin-bottom: 8px;
    display: block;
    height: 60px;
    width: 60px;
    transition: all 0.5s;
}

.counter-icon img {
    width: 100%;
    height: 100%;
}

.counter-section:hover .counter-icon {
    transform: rotateY(360deg);
}


.number-section span {
    display: inline-block;
    font-size: 30px;
}

.counter-title-section>.row {
    margin-top: 50px;
}

.bg-counter-section>.container>.row {
    align-items: center;
}

.counter-image img {
    border-radius: 10px;
}

.services-main {
    position: relative;
}

.services-inner {
    position: relative;
    /*    overflow: hidden;*/
}

.services-bg {
    height: 380px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.services-bg img {
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.services-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    z-index: 0;
}

.service-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 0;
    color: var(--white-color);
    padding: 50px 50px;
    z-index: 3;
}

.service-title .bar {
    margin: 10px 0 0 10px;
}

.service-title .co-title {
    text-align: left;
}

.service-title .co-btn {
    width: auto;

}

.services-content {
    position: relative;
    z-index: 2;
    margin-top: -15%;
    padding: 40px 40px 0;
}

.services-content>.row>.col-xl-3 {
    display: flex;
}

.services-content .slick-track{
    display:flex;
}
.services-content .slick-slide{
    height:auto;
}
.courses_slider .slick-track{
    display:flex;
}
.courses_slider .slick-slide{
    height:auto;
}
.courses_slider .slick-slide .course-card{
    height:100%
}
.services-content .slick-slide .service-grid{
    height:100%
}

.services-main .services-inner .services-content .slick-slide>div {
    height:100%;
}
.services-main .services-inner .services-content .slick-slide>div .service_box {
    height:100%;
}

.service_box {
    padding: 0 10px 20px;
}

.service-grid {
    position: relative;
    padding: 40px 15px 30px 15px;
}

.service-grid:after {
    content: "";
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
    background-color: #fff;
    width: 100%;
    height: calc(100% - 80px);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
    border-radius: 10px;
}

.service-grid .bg-shape {
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: 0.4s ease-in-out;
    pointer-events: none;
    z-index:0;
}

.service-grid .bg-shape img {
    width: 100%;
}

.service-grid_content {
    /* box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
    background-color: #fff; 
    border-radius: 10px; */
    text-align: center;
    /*    padding: 15px 15px 30px 15px;*/
    transition: 0.4s ease-in-out;
    overflow: hidden;
}

.service-grid_icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
    /*background-color: #dcd5fd; */
    /*border-radius: 50%;*/
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0 auto 16px auto;
    /*    margin-top: -40px;*/
}

.service-img {
    background-color: #dcd5fd;
    background-color:#d4e8ff;
    border-radius: 50%;
}

.service-grid_icon img {
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;
    height: 100%;
    width: 100%;
    padding: 18px;
}

.service-grid_icon:after,
.service-grid_icon:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--primary-color);
    animation: ripple-animation 2s infinite;
    z-index: -2;
    border-radius: 50%;
    transition: all ease 0.4s;
}

.service-grid_icon:after {
    animation-delay: 2s;
}

.service-grid .box-title {
    margin-bottom: 20px;
    font-size: 25px;
}

.service-grid .box-title a {
    color: var(--black-color);
}

.service-grid .box-title a:hover {
    color: #cccccc;
}

.service-grid_text {
    transition: 0.1s ease-in-out;
    margin: 0 auto 22px auto;
    color: #000;
    font-size: 16px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    line-height: 1.8;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-grid:hover .bg-shape {
    bottom: 0;
    opacity: 1;
}

.service-grid:hover .box-title a {
    color: #fff;
}


.service-grid:hover:after {
    background-color: var(--primary-color);
    cursor: pointer;
}

.service-grid:hover .button-hover {
    background-color: var(--white-color);
    color: var(--black-color) !important;
    transition: all 0.5s;
}

.main_service .box-title a {
    color: var(--black-color);
}

.service-grid:hover .button-hover:hover {
    color: var(--white-color) !important;
}

.service-grid:hover .service-grid_icon .service-img {
    background-color: #fff;
}

.service-grid:hover .service-grid_icon img {
    transform: rotateY(180deg);
}

.service-grid:hover .service-grid_icon:before,
.service-grid:hover .service-grid_icon:after {
    background-color: #fff;
}

.service-grid:hover .service-grid_text {
    color: #fff;
}

@keyframes ripple-animation {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.service_slider {
    margin: 0;
}

.service_slider .b-arrow {
    height: 40px;
    width: 40px;
    line-height: 40px;
    top: 60%;
    transform: translateY(-50%);
    z-index: 2;
}

.service_slider .b-arrow.prev-arrow {
    left: -40px;
}

.service_slider .b-arrow.next-arrow {
    right: -40px;
    left: unset;
}

.team-section {
    position: relative;
}

section.team-padding {
    padding-top: 0;
}

.team-main {
    position: relative;
    background-color: var(--bg-color);
    background-image: url(../images/teambg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    z-index:1;
}

.team-main:after{
    position: absolute;
    content: "";
    background-color:#000000c7;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    display:none;
}
.team-main .co-title h2{
    /*color: #fff;*/
}

.team-grid {
    position: relative;
}

.team-grid .team-img {
    position: relative;
    overflow: hidden;
}

.team-grid .team-img img {
    width: 100%;
    transition: 0.4s ease-in-out;
}

.team-grid .team-desig {
    font-size: 14px;
    display: block;
    margin-bottom: -0.5em;
    transition: 0.4s ease-in-out;
    color: #000;
}

.team-grid .team-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
    z-index: 4;
}

.team-grid .team-social a {
    color: #ffffff;
}

.team-grid .team-social a:hover {
    color: var(--primary-color);
}

.team-grid .th-social a {
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 5px;
    border: 0.5px solid var(--primary-color);
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 100%;
}

.team-grid .th-social a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}


.team-grid .box-title a {
    margin-bottom: 3px;
    display: inline-block;
    color: var(--primary-color);
}

.team-grid:hover .team-img img {
    transform: scale(1.08);
}

.team-grid:hover .team-social {
    visibility: visible;
    opacity: 1;
}


.team-grid {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px rgba(8, 14, 28, 0.1);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    transition: 0.4s ease-in-out;
}

.team-grid .team-img {
    border-radius: 10px;
    margin-bottom: 25px;
}

.team-grid .th-social {
    position: absolute;
    bottom: 42px;
    right: 0px;
    max-width: 36px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}

.team-grid .th-social a {
    margin-bottom: 6px;
}

.team-grid .team-social {
    display: block;
    top: unset;
    bottom: 95px;
    right: 48px;
    left: unset;
    visibility: visible;
    opacity: 1;
    width: 35px;
    height: 35px;
    line-height: 35px;
}


.team-grid .team-social:hover .th-social {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1);
}

.team-grid .team-desig {
    margin-bottom: 0;
}

.team-grid:hover {
    background-color: var(--primary-color);
}

.team-grid:hover .box-title a {
    color: #ffffff;
}

.team-grid:hover .box-title a:hover {
    color: #ffffff;
}

.team-grid:hover .team-desig {
    color: #ffffff;
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    30% {
        opacity: 0.4;
    }

    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}


.team-grid .team-social .play-btn {
    cursor: pointer;
}

.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.play-btn:after,
.play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
}

.team-grid .team-social .play-btn:before,
.team-grid .team-social .play-btn:after {
    background-color: var(--primary-color);
}

.play-btn:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.team-grid .team-social .play-btn>i {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
}

.play-btn>i {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 20px;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.team-grid .team-social .play-btn {
    cursor: pointer;
}

.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.team-grid .team-social .play-btn:hover>i {
    transform: rotate(360deg);
}

.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.team-grid:hover .play-btn:before,
.team-grid:hover .play-btn:after {
    background-color: var(--white-color);
}

.team-grid:hover .play-btn>i {
    background-color: var(--white-color);
    color: var(--primary-color);
}



/* cta section css  */
.cta-main {
    position: relative;
    z-index: 10;
}

.cta-main .cta-inner {
    position: relative;
    padding: 0px 70px;
    /* margin-top: -300px; */
}

.cta-inner>.row {
    align-items: center;
}

.cta-main .cta-inner::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 70px;
    right: 0px;
    bottom: 0px;
    border-radius: 16px;
    background: var(--primary-color);
    background: linear-gradient(to bottom, var(--primary-color) 0%, #8247cb 100%);
    /*background: linear-gradient(to bottom, var(--primary-color) 0%, #5612ab 100%);*/
    background: linear-gradient(to bottom, #004fa7 0%, #5612ab 100%);
}

.cta-main .cta-inner::after {
    position: absolute;
    content: '';
    left: 0px;
    top: 70px;
    right: 0px;
    bottom: 0px;
    background-image: url(../images/shape-1-1.png);
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.4;
}

.cta-one_title-outer {
    position: relative;
    padding-top: 80px;
}

.cta-one_title {
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
    color: var(--white-color);
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 800;
}

.cta-one_title span {
    position: relative;
    /* font-style: italic; */
    display: inline-block;
    margin-top: 15px;
    -webkit-text-stroke: 1px var(--primary-color);
    color: white;
    text-shadow: 2px 2px 0 var(--primary-color), -1px -1px 0 var(--primary-color), 1px -1px 0 var(--primary-color),
        -1px 1px 0 var(--primary-color), 1px 1px 0 var(--primary-color);
    transform: skewX(-10deg);
}

/* 
.cta-one_title span{
	position: relative;
	font-style: italic;
	display: inline-block;
    margin-top: 10px;
    -webkit-text-stroke: 1px var(--primary-color);
    color: var(--primary-color);
    text-shadow: 2px 2px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff,
      -1px 1px 0 #fff, 1px 1px 0 #fff;
} */

.cta-one_title span::before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 4px;
    right: 0px;
    z-index: -1;
    height: 10px;
    border-radius: 50px;
    background: var(--primary-color);
    /*background: linear-gradient(to top, #9c50e5 0%, #761fe3 100%);*/
}


.cta-one_image-outer {
    position: relative;
    text-align: right;
    width: 70%;
    margin-left: auto;
}

.cta-one_button {
    position: relative;
}

.cta-one_button .button-hover {
    box-shadow: 0px 5px 35px -8px rgba(0, 0, 0, 0.3);
}

.cta-icon_one {
    position: absolute;
    left: 50%;
    bottom: 17%;
    z-index: 1;
    width: 151px;
    height: 133px;
    transform: translateX(-50%);
}

.cta-icon_two {
    position: absolute;
    left: 58%;
    top: 24%;
    width: 45px;
    height: 47px;
}

.cta-wrapper {
    position: relative;
    margin-bottom: -220px;
    padding-top: 0;
}


/*----------Footer css----------*/
footer {
    padding: 200px 0 0;
    background-color: #000;
    background-color:#00142b;
    /* background-image: url(../images/ftr_bg.png); */
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    position: relative;
}

footer:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;

    background-image: url(../images/footerbg.jpg);
}

.top_footer {
    position: relative;
    z-index: 9;
}

.ftr_logo {
    margin-bottom: 20px;
    width: 80%;
}

.ftr_logo img {
    width: 100%;
}

footer p {
    color: var(--white-color);
    font-size: 16px;
    line-height: 1.7;
}

footer .social_media {
    margin-top: 30px;
}

footer .social_media ul li {
    border: 1px solid var(--white-color);
}

footer .co-title {
    margin-bottom: 20px;
    text-align: left;
}

footer .co-title h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 0;
}

footer .co-title .bar {
    width: 50px;
    background: var(--secondary-color);
    margin: 0px auto 0;
    display: inline-block;
}

footer ul li {
    display: flex;
    gap: 10px;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--white-color);
}

footer li a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(var(--secondary-color), var(--secondary-color)), linear-gradient(var(--secondary-color), var(--secondary-color));
    background-size: 0% 2px, 0 2px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
    display: inline;
}

footer .quick_link li:hover a {
    background-size: 0% 2px, 100% 2px;
    background-position: 100% 100%, 0 100%;
}

footer li:hover a {
    color: var(--white-color);
}

footer li i {
    color: var(--white-color);
    font-size: 17px;
    line-height: 1.7 !important;
}

.bottom_footer {
    text-align: center;
    padding: 30px;
    /*border-top: 1px solid var(--primary-color);*/
    border-top:1px solid #002a59;
    /*background-color: #040507;*/
    background-color:#001731;
    margin-top: 30px;
    position: relative;
    z-index: 9;
}

.bottom_footer p {
    margin-bottom: 0;
}




/*-----breadcrumb css-----*/
.bg_breadcrumb {
    padding: 140px 0 80px;
    background-color: var(--bg-color);
    background-image: url(../images/background-img.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.bg_breadcrumb:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/breadcrumb_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.07;
    z-index: -1;
}

.main-innner-banner {
    position: relative;
    z-index: 2;
}

.bg_breadcrumb .co-title {
    margin: 0 0 16px 0;
    text-align: left;
}

.bg_breadcrumb .co-title h2 {
    margin: 0;
    /*    color: var(--white-color);*/
}

.bg_breadcrumb .co-title .bar {
    display: inline-block;
    margin: 0;
}

.bg_breadcrumb a {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    font-weight: 700;
}

.bg_breadcrumb i {
    color: var(--primary-color);
    margin: 0 10px;
}

.bg_breadcrumb a.active {
    color: var(--secondary-color);
}

.bg_breadcrumb a:hover {
    color: var(--secondary-color);
}


/*-----about css-----*/
.about_content span {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
    position: relative;
    padding-left: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about_content span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    box-shadow: 3px 3px var(--primary-color);
    border: 1px solid var(--primary-color);
    vertical-align: middle;
}

.about_content h2 {
    font-size: 50px;
    margin: 0 0 20px 0;
    position: relative;
    line-height: 1.3;
    text-transform: capitalize;
    font-weight: 600;
}

.about_content .co-title {
    text-align: left;
    margin-bottom: 20px;
}

.about_content .co-title .bar {
    margin: 0;
    margin-top: 10px;
}

.about_content .co-title h2 {
    font-size: 28px;
    margin: 0;
}

.about_content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about_content ul li {
    display: flex;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about_content ul li p {
    margin-bottom: 0;
}

.about_content ul li i {
    font-size: 14px;
    line-height: 1.9;
    color: var(--primary-color);
}

.abt_img {
    position: relative;
}

.abt_img div {}

.abot_img1 {
    width: 80%;
    position: relative;
    padding: 40px 0 0 60px;
    margin-left: auto;
}

.abot_img1 img {
    border-radius: 25px;
}

.abot_img1:after {
    content: "";
    width: 70%;
    height: 90%;
    background-color: var(--primary-color);
    border-radius: 25px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.abot_img2 {
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: 120px;
    left: 30px;
    transform: translateY(-50%);
    border: 10px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    animation: up-down 3s linear infinite;
}

.abot_img2:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes up-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0);
    }
}

.co-title p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 990px;
    margin: 20px auto 0;
}

.bg_journey {
    background-image: url(../images/mapdot_bg.png);
    background-repeat: repeat;
    background-position: left bottom;
    background-size: contain;
}

.our_journey h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 15px;
}

.step_num span {
    position: absolute;
    top: 3px;
    right: -7px;
    transform: translate(-50%, -50%);
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    padding: 5px;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    z-index: 9;
    border:1px solid #fff;
}

.step_num {
    position: relative;
    width: 80px;
    height: 80px;
    padding: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 30px;
    border: 4px solid var(--white-color);
}

.step_num:before {
    content: "";
    width: 85px;
    height: 85px;
    background-image: url(../images/ellipse_dashed-1.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.our_journey>div:nth-child(2n) .step_num:before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.step_num:after {
    content: "";
    width: 5px;
    height: 35px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.our_journey>div:nth-child(2n) .step_num:after {
    bottom: -40px;
}

.our_journey {
    position: relative;
}

.journey_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* padding: 20px; */
    height: 100%;
    position: relative;
}

.journey_step:before {
    content: "";
    width: 100%;
    height: calc(100% - 110px);
    background: var(--bg-light);
    background:#d7e9fd;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    box-shadow: 5px 5px 0 0 #00000026;
    transform: translateX(-50%);
    z-index: 1;
}

.journey_content {
    padding: 20px;
    position: relative;
    z-index: 9;
}

.our_journey:after {
    content: "";
    width: 100%;
    height: 1px;
    border-top: 2px dashed var(--primary-color);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.our_journey::before {
    content: "";
    position: absolute;
    top: 39px;
    left: 0;
    width: 15px;
    height: 4px;
    background: #684df4;
    background:#CB0201;
    animation: left-to-right 20s linear infinite;
}

@keyframes left-to-right {
    0% {
        left: 0;
    }

    50% {
        left: 99%;
    }

    100% {
        left: 0;
    }
}

.bg_mission_vision {
    overflow: hidden;
    background-image: url(../images/bg_img.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 650px;
    background-color: var(--bg-light);
    background-color:#d7e9fd;
    padding: 0;
    position: relative;
}

.mission_vision_box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    margin-left: -100px;
    position: relative;
    z-index: 1;
}

.mission_vision_box:first-child {
    padding-top: 0;
}

.mission_vision_box:last-child {
    padding-bottom: 0;
}

.mission_vision_box h3 {
    font-size: 24px;
    line-height: 1.3;
}

.mission_vision_box p {
    margin-bottom: 0;
}

.mission_vision_box .box_img img {
    width: 100px;
    height: 100px;
    padding: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 7px solid var(--bg-light);
    border: 7px solid #d7e9fd;
}

.mission_vision_img {
    margin-left: -350px;
}

.mission_vision_box:nth-child(2):after {
    content: "";
    width: calc(100% - 120px);
    height: 100%;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    position: absolute;
    bottom: 0;
    right: 0;
}

.mission_vision_content {
    padding: 50px 0 50px 30px;
    position: relative;
    z-index: 9;
}

.bg_vector {
    position: absolute;
    bottom: 0;
    right: 0;
}

.bg_vector img {
    opacity: 0.2;
}

.bg_vector_dot {
    position: absolute;
    width: 180px;
    top: 50px;
    right: -30px;
    transform: translateX(0);
    animation: left_right 4s linear infinite;
}

@keyframes left_right {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0);
    }
}




/*------ Contact Us CSS ------*/
.main_contactus {
    padding-bottom: 0;
}

.main_contactus .co-title {
    text-align: left;
    margin-bottom: 35px;
}

.main_contactus .co-title p {
    margin-top: 25px;
}

.main_contactus .co-title h2 {
    line-height: 1.2;
}

.main_contactus .bar {
    margin: 10px 0 0 10px;
}

.bg_contact {
    background: var(--bg-color);
    padding: 50px;
    border-radius: 10px;
    /*background-image: url(../images/background-img.png);*/
    /*background-image: url(../images/teambg2.png);*/
    background-repeat: no-repeat;
    background-size: cover;
}

.contact_info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact_icon {
    padding: 20px;
    background-color: var(--primary-color);
    border-radius: 6px;
}

.contact_icon i {
    font-size: 24px;
    color: var(--white-color);
    width: 24px;
    text-align: center;
}

.contact_contents h4 {
    font-size: 22px;
    line-height: 1.2;
}

.contact_contents p {
    margin: 0;
}

.contact_contents a {
    font-size: 18px;
    color: var(--primary-color);
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
    width: 100%;
    line-height: 28px;
    padding: 10px 20px;
    height: 60px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 25px;
}

.contact-form form textarea {
    height: 180px;
}

.contact-form form input:focus-visible,
.contact-form form select:focus-visible,
.contact-form form textarea:focus-visible {
    border: none;
    outline: none;
}

.default-form.contact-form {
    background-color: var(--white-color);
    padding: 50px 30px;
    box-shadow: 0px 4px 15px rgba(8, 14, 28, 0.1);
    border-radius: 10px;
}

.location_map {
    padding: 0;
}

.location_map iframe {
    border-radius: 10px;
    overflow: hidden;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
    width: 100%;
}

.location_map:hover iframe {
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.social_media {
    margin-top: 40px;
}

.social_media ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social_media ul li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background-color: transparent;
    box-shadow: 0px 4px 15px rgba(8, 14, 28, 0.1);
    transition: all 0.4s ease-in-out;
}

.social_media ul li:hover {
    transform: translateY(-5px);
    transition: all 0.4s ease-in-out;
}

.social_media ul li a {
    color: var(--primary-color);
    font-size: 18px;
}

button.co-btn {
    display: inline-block;
    width: auto;
    border: none;
    background: transparent;
    height: auto;
    line-height: normal;
}



/*------ Service Page CSS ------*/
.main_service .co-title h2 {
    text-align: left;
}

.main_service .co-title .bar {
    margin-left: 0;
}

.main_service .co-title {
    margin-bottom: 45px;
}

.main_service .services-content {
    margin-top: 0;
    padding: 0;
}

.main_service .service-grid {
    margin-bottom: 30px;
    padding: 30px 15px;
    box-shadow: 0px 0px 15px rgb(8 14 28 / 9%);
    border-radius: 10px;
}
.main_service .service-grid:after {
    height: 100%;
}

.main_service .service-grid_icon:after,
.main_service .service-grid_icon:before {
    display: none;
}

.main_service .service-grid_icon {
    margin-left: 0;
    margin-top: 0;
}

.main_service .service-grid_content {
    text-align: left;
    padding: 0;
}

.main_service .service-grid:hover .button-hover {
    color: var(--white-color);
}



/*------ Service Detail CSS ------*/
.service_detail img {
    border-radius: 0 30px 0 30px;
    height: 450px;
    object-fit: cover;
}

.service_detail h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.service_detail_container .details_list li {
    padding: 3px 0;
    font-size: 16px;
    line-height: 26px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service_detail_container .details_list li i {
    font-size: 16px;
    width: 16px;
    color: var(--primary-color);
}

.service_benefit_detail {
    padding: 20px;
    box-shadow: 0px 6px 30px rgba(192, 192, 192, 0.25);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
    background: var(--white-color);
}

.benefit_detail_image {
    background: var(--white-color);
    box-shadow: 0px 4px 20px rgba(159, 159, 159, 0.15);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
}

.benefit_detail_image img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 70px;
    width: 70px;
}

.benefit_detail_contents {
    flex: 1;
}

.benefit_detail_contents p {
    margin: 0;
}

.service_benefits {
    margin-top: 25px;
}
.service_benefits .col-md-6{
    display:flex;
}
.service_process .col-md-6{
    display:flex;
}
.sidebar_srvices .co-title {
    text-align: left;
    margin-bottom: 30px;
}

.sidebar_srvices .co-title .bar {
    margin-left: 0;
    margin-top: 0;
}

.sidebar_srvices {
    padding: 30px 30px;
    border: 1px solid #f7f7f7;
    box-shadow: 0px 6px 30px rgba(192, 192, 192, 0.25);
    background-color: var(--white-color);
    border-radius: 10px;
    margin-bottom: 40px;
}

.sidebar_srvices ul li {
    padding: 15px 15px;
    background: var(--bg-color);
    margin-bottom: 5px;
    color: var(--black-color);
}

.sidebar_srvices ul li a,
.sidebar_srvices ul li i {
    color: var(--black-color);
}

.sidebar_srvices ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.sidebar_srvices.default-form.contact-form {
    padding: 30px 30px;
}

.sidebar_srvices.contact-form form input,
.sidebar_srvices.contact-form form select,
.sidebar_srvices.contact-form form textarea {
    margin-bottom: 15px;
    height: 50px;
}

.sidebar_srvices.contact-form form textarea {
    height: 140px;
}

.service_process_detail {
    padding: 20px;
    box-shadow: 0px 6px 30px rgba(192, 192, 192, 0.25);
    margin-bottom: 25px;
    margin-top: 30px;
    border-radius: 0px 30px;
    background: var(--white-color);
    transition: all 0.4s ease-in-out;
}

.service_process_detail:hover {
    background-color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.service_process_detail:hover .process_detail_icon {
    background-color: var(--white-color);
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.process_detail_icon {
    top: -45px;
    bottom: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    margin-bottom: -25px;
    border-radius: 50%;
    position: relative;
    background-color: var(--primary-color);
    border: 1px solid #0d6efd21;
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
}

.service_process_detail:hover .process_detail_contents {
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
}

.service_detail .ripple-shape {
    position: absolute;
    bottom: 90px;
    left: 55px;
    display:none;
}

.service_sidebar {
    padding-left: 20px;
}

.process_detail_icon.play-btn:after,
.process_detail_icon.play-btn:before {
    background-color: var(--primary-color);
}


.services-content nav {
    margin: 0 auto;
    padding-top: 25px;
}

.pagination.pagination-circle .page-item.active .page-link {
    border-radius: 50%;
}

.pagination .page-item .page-link:hover {
    transition: all .3s linear;
    border-radius: .125rem;
    background-color: #eee;
}

.pagination.pg-blue .page-item.active .page-link:hover {
    background-color: #BD5410;
}

.pagination .page-item.active .page-link {
    transition: all .2s linear;
    border-radius: .125rem;
    background-color: var(--primary-color);
    color: #fff;
}

.pagination .page-item .page-link {
    transition: all .3s linear;
    outline: 0;
    border: 0;
    background-color: transparent;
    font-size: 16px;
    color: #999;
    font-weight: bold;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
}

.pagination.pagination-circle .page-item .page-link:hover {
    border-radius: 50%;
}

.pagination.pagination-circle .page-item .page-link {
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 50%;
}

.pagination .page-item.active .page-link {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.page-link {
    border: none !important;
}

#loom-companion-mv3 {
    display: none;
}


/* ............................team page css ............................. */

.team-inner-main {
    background-color: transparent;
    background-image: none;
    padding-bottom: 0;
    position: relative;
}

.team-inner-main .team-grid {
    margin-bottom: 40px;
}

.team-section nav {
    padding-top: 25px;
}

.team-inner-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/Home-bg-linedot-image.png);
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.5;
}




/*------ Training page css ------*/
.training_overview .main-about-image {
    padding-top: 0px;
}

.course-badge-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.course-card {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px rgba(8, 14, 28, 0.1);
    border-radius: 10px;
    text-align: left;
    padding: 0px;
    overflow: hidden;
    color: var(--black-color);
    transition: 0.4s ease-in-out;
}

.course-card-details {
    padding: 0 15px 15px;
}

.course-card img {
    height: 250px;
    object-fit: cover;
}

.course-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 1.4;
}

.course-card .author {
    margin-bottom: 0;
}

.course-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 10px 20px;
    background: var(--bg-button);
    color: var(--white-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.course-badge-details i {
    margin-right: 7px;
    color: var(--primary-color);
    font-size: 14px;
}

.courses_slider .b-arrow {
    height: 40px;
    width: 40px;
    line-height: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.courses_slider .b-arrow.prev-arrow {
    left: -40px;
}

.courses_slider .b-arrow.next-arrow {
    right: -40px;
    left: unset;
}

.courses_slider .slick-slide {
    padding: 0 10px 0px 10px;
}

.bg_mission_vision.main_courses {
    padding: 80px 0;
    margin-bottom: 80px;
}

.course-card .para {
    --line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--line-clamp, 1);
}

.courses_slider.slick-slider {
    margin-bottom: 0;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-box {
    appearance: none;
    cursor: pointer;
}

.custom-select-wrapper .custom-arrow {
    position: absolute;
    right: 10px;
    top: 35%;
    transform: translateY(-50%);
    font-size: 16px;
}

.training_overview .second-circle {
    right:18%;
}




/* home page responsive */
@media only screen and (min-width:1400px) and (max-width:1500px) {
    .co-btn .button-hover {
        padding: 20px 30px;
    }

    .bg-header {
        /*width: 90%;*/
    }

    .sticky-fixed {
        width: 100%;
    }

    .banner-content {
        padding-left: 30px;
    }

    .b-arrow.prev-arrow {
        left: -45px;
    }

    .b-arrow.next-arrow {
        left: -45px;
    }

    .banner-box {
        /*padding: 80px 0;*/
    }
    
    .banner-slider .b-arrow.prev-arrow {
        left:4%;
    }
    .banner-slider .b-arrow.next-arrow {
        left: 4%;
    }
    .banner-bg-img {
        height: 600px;
    }

}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .bg-header {
        /*width: 90%;*/
    }

    .sticky-fixed {
        width: 100%;
    }

    .header-menu ul {
        gap: 20px;
    }

    .banner-box {
        /*padding: 40px 0;*/
    }

    .banner-content h2 {
        font-size: 42px;
    }

    .b-arrow.prev-arrow {
        left: -30px;
    }

    .b-arrow.next-arrow {
        left: -30px;
    }

    .banner-content {
        padding-left: 40px;
    }

    .co-btn .button-hover {
        padding: 20px 28px;
    }

    .service-grid {
        padding: 30px 15px 30px 15px;
    }

    .service-grid .box-title {
        font-size: 20px;
    }

    .bg-counter-section {
        padding: 60px 0;
    }

    .team-main {
        padding: 60px 0;
    }

    .about-section h2 {
        font-size: 40px;
    }

    .counter-title-section h2 {
        font-size: 40px;
    }

    .co-title h2 {
        font-size: 40px;
    }

    .counter-title-section>.row {
        margin-top: 30px;
    }

    .services-content {
        margin-top: -20%;
    }

    .experence span {
        font-size: 44px;
    }

    .cta-one_title {
        font-size: 36px;
    }

    .cta-one_title span {
        margin-top: 10px;
    }

    .cta-one_title-outer {
        padding-top: 86px;
        padding-bottom: 16px;
    }

    .cta-inner>.row {
        align-items: end;
    }

    .services-bg {
        height: 350px;
    }

    .cta-one_image-outer img {
        height: 340px;
        object-fit: cover;
    }

    @keyframes ripple-animation {
        0% {
            transform: scale(0.5);
            opacity: 1;
        }

        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }

    .bg-header .co-btn .button-hover {
        padding: 15px 24px;
    }

      .banner-slider .b-arrow.prev-arrow {
        left:4%;
    }
    .banner-slider .b-arrow.next-arrow {
        left: 4%;
    }
    .banner-bg-img {
        height: 600px;
    }

}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .bg-header {
        /*width: 98%;*/
    }

    .sticky-fixed {
        width: 100%;
    }

    .header-menu ul {
        gap: 20px;
    }

    .header-menu ul li a {
        font-size: 16px;
    }

    .co-btn .button-hover {
        padding: 16px 20px;
        font-size: 15px;
    }

    .about-section h2 {
        font-size: 36px;
    }

    .about-section p {
        margin-bottom: 14px;
    }

    .counter-title-section h2 {
        font-size: 36px;
    }

    .co-title h2 {
        font-size: 36px;
    }

    .counter-section {
        padding: 16px;
    }

    .counter-section h4 {
        font-size: 20px;
    }

    .counter-title-section>.row {
        margin-top: 24px;
    }

    .number-section span {
        font-size: 24px;
    }

    .service-title {
        padding: 40px 40px 0px 40px;

    }

    .service-title .co-title {
        margin-bottom: 0;
    }

    .services-content {
        margin-top: -22%;
        padding: 10px 40px 0;
    }

    .service-grid .box-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .service-grid_text {
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .service-grid_content {
        padding: 15px 5px 24px 5px;
    }

    section {
        padding: 60px 0;
    }

    .bg-counter-section {
        padding: 60px 0;
    }

    .team-main {
        padding: 60px 0;
    }

    .banner-box {
        /*padding: 60px 0;*/
    }

    .inner-img {
        width: 400px;
        height: 400px;
    }

    .cta-one_title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .cta-one_title-outer {
        padding-top: 86px;
        padding-bottom: 16px;
    }

    .cta-inner>.row {
        align-items: end;
    }

    .cta-wrapper {
        margin-bottom: -190px;
    }

    .banner-content h2 {
        font-size: 38px;
    }

    .banner-img {
        width: 100%;
        height: 100%;
    }

    .b-arrow.prev-arrow {
        top: unset;
        bottom: 10%;
        left: 0px;
    }

    .b-arrow.next-arrow {
        top: unset;
        bottom: 10%;
        left: 70px;

    }

    .first-circle {
        width: 180px;
        height: 180px;
        left: -5%;
    }

    .services-bg {
        height: 300px;
    }

    .service_slider .b-arrow.prev-arrow {
        top: 60%;
    }

    .service_slider .b-arrow.next-arrow {
        top: 60%;
    }

    .experence span {
        font-size: 30px;
    }
    .experence  {
        width:32%;
    }

    .about-section h2.highlight {
        min-height: 100px;
    }
    .counter-title-section h2.highlight{
        min-height: 100px;
    }

    .cta-one_image-outer img {
        height: 280px;
        object-fit: cover;
    }

    footer .social_media {
        margin-top: 20px;
    }

    @keyframes ripple-animation {
        0% {
            transform: scale(0.5);
            opacity: 1;
        }

        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }
    
    .banner-slider .b-arrow.prev-arrow {
        left:20px;
        bottom:unset;
        top:45%;
    }
    .banner-slider .b-arrow.next-arrow {
        left: 20px;
        bottom:unset;
        top:60%;
    }
    .banner-bg-img {
        height: 550px;
    }

}

@media only screen and (min-width:768px) and (max-width:991px) {
    .bg-header {
        /*width: 98%;*/
        /*top: 10px;*/
    }

    .sticky-fixed {
        width: 100%;
        top: 0;
    }

    .header-menu ul {
        gap: 9px;
        justify-content: flex-start;
    }

    .header-menu ul li a {
        font-size: 14px;
    }
    .logo {
        width: 80%;
    }
    .co-title h2 {
        font-size: 30px;
    }

    .co-btn .button-hover {
        padding: 12px 16px;
        font-size: 14px;
    }

    .bg-header .row .col-md-7 {
        padding: 0;
    }

    .bg-header .row .col-md-2 {
        padding: 0;
    }

    .banner-box {
        /*padding: 30px 0 60px 0;*/
    }

    .banner-content h2 {
        font-size: 36px;
    }

    .about-section h2 {
        font-size: 28px;
    }

    .about-section p {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .about-section h2.highlight {
        min-height: 70px;
    }
    .counter-title-section h2.highlight{
        min-height: 70px;
    }

    .about-section .co-title {
        margin-bottom: 16px;
    }

    .counter-title-section h2 {
        font-size: 28px;
    }

    section {
        padding: 60px 0;
    }

    .bg-counter-section {
        padding: 60px 0;
    }

    .number-section span {
        font-size: 24px;
    }

    .counter-section h4 {
        font-size: 18px;
    }

    .counter-title-section>.row {
        margin-top: 24px;
    }

    .b-arrow.prev-arrow {
        top: unset;
        bottom: 0%;
        left: 0px;
    }

    .b-arrow.next-arrow {
        top: unset;
        bottom: 0%;
        left: 70px;

    }

    .banner-img {

        width: 100%;
        height: auto;
    }

    .inner-img {
        width: 350px;
        height: 350px;
    }

    .first-circle {
        width: 150px;
        height: 150px;
        left: 5%;
        bottom: -10%;
    }

    .second-circle {
        width: 100px;
        height: 100px;
        right: 10%;
    }

    .experence {
        width: 40%;
        /*border-radius: 16px;*/
        left: 5%;
        top: 12%;
    }

    .experence span {
        font-size: 24px;
    }
     .experence p {
        font-size: 14px;
    }

    .ftr_logo {
        width: 60%;
    }

    .b-arrow {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner-content p {
        font-size: 16px;
    }

    .counter-section {
        padding: 10px;
    }

    .service-title {
        padding: 30px;
    }

    .services-bg {
        height: 200px;
    }

    .service-grid .box-title {
        font-size: 22px;
        margin-bottom: 16px;

    }

    .service-grid {
        padding: 30px 15px 30px 15px;
    }

    .services-content {
        padding: 30px 30px 0;
        margin-top: -21%;
    }

    .service_slider .b-arrow.prev-arrow {
        top: 60%;
    }

    .service_slider .b-arrow.next-arrow {
        top: 60%;
    }

    .team-main {
        padding: 60px 0;
    }

    .cta-one_title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .cta-one_image-outer img {
        height: 260px;
        object-fit: cover;
    }

    .cta-wrapper {
        margin-bottom: -160px;
    }

    footer {
        padding: 150px 0 0;
    }

    .bg-counter-section .d-md-block .co-title {
        margin-bottom: 20px;
    }

    .bg-counter-section .d-md-block h2 {
        text-align: center;
    }

    .bg-counter-section>.container>.row {
        align-items: center;
        margin-top: 24px;

    }

    .counter-image {
        margin-top: 24px;
    }

    .co-title .bar {
        margin: 14px auto 0;
    }

    footer .co-title .bar {
        margin: 14px auto 0;
    }

    .social_media {
        margin-top: 24px !important;
    }

    footer .co-title {
        margin-bottom: 16px;
    }

    footer .row {
        row-gap: 24px;
    }

    @keyframes ripple-animation {
        0% {
            transform: scale(0.5);
            opacity: 1;
        }

        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }
    .bg_breadcrumb{
        padding:80px 0 50px;
    }

      .banner-slider .b-arrow.prev-arrow {
        left:20px;
        bottom:unset;
        top:45%;
    }
    .banner-slider .b-arrow.next-arrow {
        left: 20px;
        bottom:unset;
        top:55%;
    }
    .banner-bg-img {
        height: 550px;
    }
    
    .bg-header  .co-btn .button-hover {
        padding: 12px 12px;
        font-size: 13px;
        /*float: right;*/
    }
    .bg-header  .co-btn {
        display:flex;
        justify-content:end;
    }
    .top-phone {
        gap:12px;
    }
    .top-phone a {
        font-size:15px;
    }
    .top-social-icon ul {
        gap:12px;
    }
}

@media only screen and (max-width: 767px) {
    .bg-header {
        /*width: 95%;*/
        /*top: 10px;*/

    }

    .sticky-fixed {
        width: 100%;
        top: 0;
    }

    .desk-header {
        display: none;
    }

    .banner-box {
        /*padding: 30px 0 50px 0;*/
    }

    .mobile-header {
        display: block;
    }

    .banner-content h2 {
        font-size: 32px;
    }

    .banner-box .row {
        gap: 20px;
    }

    .banner-slider .b-arrow.prev-arrow {
        top: unset;
        bottom: 4%;
        left: 43%;
        transform: translateX(-50%);
    }

    .banner-slider .b-arrow.next-arrow {
        top: unset;
        bottom: 4%;
        left: 57%;
        transform: translateX(-50%);

    }

    .inner-img {
        width: 400px;
        height: 400px;
    }

    .first-circle {
        width: 170px;
        height: 170px;
    }

    .experence {
        width: 36%;
        border-radius: 16px;
        left: 3%;
    }

    .main-about-image {
        padding-top: 40px;
    }

    .experence span {
        font-size: 24px;

    }

    .second-circle {
        width: 100px;
        height: 100px;
        top: 18%;
        right:10%;
    }
    .training_overview .second-circle {
        right: 10%;
    }

    .bg-about .row {
        gap: 25px;
    }

    .about-section h2 {
        font-size: 30px;
    }

    .about-section h2.highlight {
        min-height: 70px;
    }
    .counter-title-section h2.highlight{
        min-height: 70px;
    }
    .about-section p {
        margin-bottom: 16px;
    }

    .bg-counter-section {
        padding: 50px 0;
    }

    .counter-title-section h2 {
        font-size: 30px;
    }

    .counter-title-section>.row {
        margin-top: 24px;
        row-gap: 24px;
    }

    .counter-title-section .co-title h2 {
        font-size: 24px;
    }

    .bg-counter-section>.container>.row {
        row-gap: 30px;
    }

    .counter-title-section h2 {
        margin-bottom: 0;
    }

    .counter-section {
        margin-bottom: 0;
    }

    .number-section span {
        font-size: 24px;
    }

    .service-title {
        padding: 24px;
    }

    .co-title h2 {
        font-size: 30px;
    }

    .service-title co-title {
        margin-bottom: 0px;
    }

    .button-hover {
        padding: 16px 20px;
    }

    .services-bg {
        height: 250px;
    }

    .services-content {
        padding: 24px 24px 24px;
    }

    .service-grid .box-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .service-grid_text {
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .service_box {
        padding: 0 12px 0px;
        margin-bottom: 18px;
    }
    section.services-padding {
        padding: 50px 0 30px;
    }
    .service-grid {
        padding: 24px 12px 24px 12px;
    }

    .services-content {
        margin-top: -30%;
        padding: 0px 24px 0px;
    }

    .service_slider .b-arrow {
        bottom: -10%;
    }

    .service-title .co-title {
        margin-bottom: 0;
    }

    .service_slider .b-arrow.prev-arrow {
        top: 65%;

        transform: translateY(-50%);

    }

    .service_slider .b-arrow.next-arrow {
        top: 65%;

        transform: translateY(-50%);

    }

    .cta-wrapper {
        margin-bottom: 0;
        padding-top: 50px;
    }

    .cta-one_title-outer {
        padding-top: 0;
    }

    .cta-main .cta-inner {
        padding: 0 30px;
    }

    footer {
        padding: 60px 0 0
    }

    .ftr_logo {
        width: 50%;
    }

    .cta-main .cta-inner::before {
        top: 0;
    }

    .cta-one_title {
        padding-top: 24px;
        font-size: 36px;
    }

    .service_slider .b-arrow {
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .team-main {
        padding: 50px 0;
    }

    .banner-img {
        height: 400px;
        width: 400px;
    }

    footer .row {
        row-gap: 16px;
    }

    footer .co-title {
        margin-bottom: 4px;
    }

    footer .co-title .bar {
        margin: 0px auto 8px;
    }

    footer .social_media {
        margin-top: 16px;
    }

    section {
        padding: 50px 0;
    }

    @keyframes ripple-animation {
        0% {
            transform: scale(0.5);
            opacity: 1;
        }

        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }
    .bg_breadcrumb{
        padding:80px 0 50px;
    }
    
    .banner-bg-img {
        height: 450px;
    }
    .banner-slider .b-arrow {
        height:40px;
        width:40px;
        line-height:40px;
        font-size:16px;
    }
    .banner-content {
        width:95%;
        margin:auto;
        padding-bottom:15px;
    }
    .mobilenav-offcanvas .top-phone {
        align-items: start;
        flex-direction: column;
        margin-bottom: 20px;
    }
    .mobilenav-offcanvas .top-phone a {
        color:#000;
    }
    .mobilenav-offcanvas .top-social-icon ul {
        justify-content: start;
        margin-bottom: 20px;
    }
    .mobilenav-offcanvas .top-phone a:hover i {
        color:var(--primary-color);
    }
    .mobilenav-offcanvas  .co-btn {
        justify-content:start;
        display:flex;
    }
    .top-phone a {
        gap:10px;
    }
}

@media only screen and (max-width: 575px) {

    .banner-img {
        height: 350px;
        width: 350px;
    }

    .banner-box .row {
        gap: 16px;
    }

    .experence p {
        font-size: 14px;
    }

    .experence {
        width: 40%;
        padding: 10px;
    }

    .first-circle {
        width: 150px;
        height: 150px;
    }

    .second-circle {
        width: 80px;
        height: 80px;
        top: 10%;
        right: 20%;
    }

    .inner-img {
        width: 300px;
        height: 300px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .about-section h2.highlight {
        min-height: 64px;
    }
    .counter-title-section h2.highlight{
        min-height: 64px;
    }
    .counter-title-section h2 {
        font-size: 24px;
    }

    .cta-one_title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    footer {
        padding: 40px 0 0;
    }

    .team-main {
        padding: 40px 0;
    }

    .team-main .co-title {
        margin-bottom: 24px;
    }

    .service_slider .b-arrow.prev-arrow {
        display: none !important;
    }

    .service_slider .b-arrow.next-arrow {
        display: none !important;
    }

    .bg-counter-section {
        padding: 40px 0;
    }

    .counter-title-section .co-title h2 {
        font-size: 22px;
    }

    .bottom_footer {
        padding: 24px;
    }

    .services-content {
        margin-top: -38%;
    }

    .co-title h2 {
        font-size: 24px !important;
    }

    .service-title {
        padding: 16px;
    }

    .service-title .co-title {
        margin-bottom: 0;
    }

    section {
        padding: 40px 0;
    }

    .bottom_footer {
        margin-top: 20px;
    }

    .logo {
        width: 90%;
    }

    .banner-box {
        /*padding: 0px 0 40px 0;*/
    }

    .banner-slider .b-arrow {
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service-title .co-btn .button-hover {
        padding: 12px 16px;
        font-size: 14px;
    }

    .co-btn .button-hover {
        font-size: 14px;
        padding: 12px 16px;
    }

    .about-section p {
        font-size: 16px;
    }
    .bg_breadcrumb{
        padding:50px 0 50px;
    }
    .bg_breadcrumb .co-title{
        margin:0 0 10px 0;
        text-align:center;
    }
    .bg_breadcrumb .co-title h2{
        font-size:22px !important;
    }
    .bg_breadcrumb .co-title .bar{
        width:70px;
       
    }
    .bg_breadcrumb i{
        margin:0 4px;
    }
    .breadcrumb-link{
        text-align:center;
    }


    section.services-padding {
        padding: 50px 0 40px;
    }
    .cta-one_title span::before {
        display: none;
    }
    .about-section .co-title h3 {
        font-size: 24px;
    }
    .co-title .bar {
        width: 70px;
    }
    
    .service-grid .bg-shape {
        height:70%;
    }
    .service-grid .bg-shape img{
        height:100%;
    }
    .services-main .services-inner .services-content {
        padding: 0px 10px 0px;
    }
    
}

@media only screen and (max-width: 374px) {
    .banner-content h2 {
        font-size: 24px;
    }

    .banner-content span {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .banner-content p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .banner-img {
        width: 300px;
        height: 300px;
    }

    .experence p {
        font-size: 12px;
    }

    .first-circle {
        bottom: -5%;
    }

    section {
        padding: 30px 0;
    }

    .bg-counter-section {
        padding: 30px 0;
    }

    .service-title .co-btn .button-hover {
        font-size: 12px;
    }

    .service-title .co-title h2 {
        font-size: 20px !important;
    }

    .services-content {
        margin-top: -65%;
    }

    .services-bg {
        height: 220px;
    }

    .team-main {
        padding: 30px 0;
    }

    .bottom_footer {
        padding: 12px;
    }

    footer p {
        font-size: 14px;
    }

    .bottom_footer {
        margin-top: 10px;
    }

    .cta-main .cta-inner {
        padding: 0 16px;
    }

    .banner-main {
        /*padding-top: 90px;*/
    }

}

@media only screen and (max-width: 320px) {
    .service-grid_icon {
        height: 72px;
        width: 72px;
        line-height: 72px;
        margin: 16px auto 16px auto;
    }
}



/*--------------- Team Page Responsive CSS ---------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .play-btn>i {
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .team-grid .th-social a {
        height: 36px;
        width: 36px;
        line-height: 36px;
    }

    .team-grid {
        padding: 15px;
    }

    .th-team.team-grid .box-title {
        font-size: 24px;
    }

    .team-inner-main .team-grid {
        margin-bottom: 30px;
    }

    .team-section nav {
        padding-top: 10px;
    }

    .team-grid .team-social {
        bottom: 85px;
        right: 40px;
    }
     .team-inner-main{
        padding-bottom:0;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-section nav {
        padding-top: 10px;
    }
     .team-inner-main{
        padding-bottom:0;
    }
   
}

@media only screen and (max-width: 767px) {
    .team-inner-main .team-grid {
        margin-bottom: 0px;
    }

    .team-section .row {
        gap: 30px;
    }
    .team-inner-main {
        padding-bottom:0;
    }
}

@media only screen and (max-width: 400px) {
    .team-grid {
        padding: 15px;
    }
}


/*--------------- About Page Responsive CSS ---------------*/

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .about_content h2 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .journey_content {
        padding: 16px;
    }

    .journey_content p {
        margin-bottom: 0;
    }

    .about_content h2 {
        font-size: 36px;
    }

    .abot_img2 {
        width: 200px;
        height: 200px;
    }

    .mission_vision_content {
        padding: 30px 0 50px 30px;
    }
    .mission_vision{
        padding: 30px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_content h2 {
        font-size: 28px;
    }

    .about_content .co-title {
        margin-bottom: 16px;
    }

    .about_content h2 {
        margin-bottom: 16px;
    }

    .about_content .co-title .bar {
        margin-top: 4px;
    }

    .about_company .row {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .our_journey .row {
        row-gap: 30px;
    }

    .our_journey:after {
        display: none;
    }

    .our_journey::before {
        display: none;
    }

    .mobile-about_content {
        padding-top: 24px;
    }

    .abot_img1 {
        width: 70%;
    }

    .abot_img2 {
        bottom: 180px;
    }

    .abot_img1 {
        width: 50%;
        padding: 40px 60px 0 0;
        margin-left: auto;
        margin-right: auto;
    }

    .abot_img2 {
        bottom: 6%;
        right: 10%;
        left: unset;
        width: 220px;
        height: 220px;
    }

    .abot_img1:after {
        left: unset;
        top: 0;
        right: 0;
    }
    

}

@media only screen and (max-width: 767px) {
    .our_journey:after {
        display: none;
    }

    .our_journey::before {
        display: none;
    }

    .our_journey .row {
        row-gap: 24px;
    }

    .about_content h2 {
        font-size: 30px;
    }

    .about_content .co-title h2 {
        font-size: 24px;
    }

    .about_company .row {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .mission_vision_img {
        margin-left: 0;
        padding-top: 50px;
    }

    .mission_vision_content {
        padding: 0 0 50px 0;
    }

    .mission_vision .row {
        row-gap: 24px;
    }

    .mission_vision_box {
        gap: 16px;
    }

    .mission_vision_box {
        margin-left: 0;
    }
    .abot_img1 {
       width: 60%;
        padding: 40px 40px 0 0;
        margin-left: auto;
        margin-right: auto;
    }
   

    .abot_img2 {
        bottom: 6%;
        right: 0;
        left: unset;
        width: 200px;
        height: 200px;
    }

    .abot_img1:after {
        left: unset;
        top: 0;
        right: 0;
    }
    .bg_vector_dot{
        display: none;
    }



}

@media only screen and (max-width: 575px) {
    .bg_journey .co-title {
        margin-bottom: 24px;
    }

    .mission_vision_content {
        padding: 0 0 40px 0;
    }

    .mission_vision_img {
        padding-top: 40px;