@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --primary: #e8280b;
    --light: #F5F5F5;
    --dark: #353535;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    font-family: "Poppins", serif;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height:85px;
}

.navbar-light .navbar-brand img{
    max-height: 85px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        /*object-fit: cover;*/
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: block;
    padding: 0 60px;
    color: #0c193e;
}
.section-title h5{
    /* margin-bottom: -8px; */
    color: #0c193e50;
}

.section-title.text-start h1 {
    padding-left: 0;
}

/* .section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
} */

.section-title__border-box {
    position: relative;
    display: inline-block;
    height: 2px;
    width: 68px;
    background-color: var(--primary);
    margin: 0px auto 15px;
  }
  
  .section-title__border-box:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--light);
  }
  
  .section-title__border-box:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--light);
    border: 1px solid var(--primary);
  }

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}
.footer .copyright img {
    max-width:200px;
}

.footer .copyright a:hover {
    color: var(--primary);
}
.bg-1{
    background-color: #0c193e;
}
.social-ii{
    background-color: var(--primary);
    display: inline-block;
    /* border-radius: 10px 0 0 10px; */
    border-radius:0px;
    padding:4px 20px 4px 50px;
    position: relative;


    .simg{
        position: absolute;
        left: 10px;
        top:50%;
        opacity: 1;
        max-width: 30px;
        transform: translateY(-50%);
    }

    a{
        border-radius: 50%;
        padding: 1px !important;
        font-size: 13px;
    }
    .btn-sm-square{
        height: 25px;
        width: 25px;
    }
}
.ap-bt{
    background-color: transparent;
    border: 1px solid var(--primary);
    padding: 10px 18px !important;
    margin-block: auto;
    color: var(--primary) !important;
    border-radius: 4px;
    animation: cubic 2s infinite;
}

@keyframes cubic {
    0% {
        box-shadow: 0px 0px 1px #e8280b;
    }
    50% {
        box-shadow: 0px 0px 10px #e8280b80;
    }
    100% {
        box-shadow: 0px 0px 1px #e8280b;
    }
}
.shimmer {
    
    color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(to right, #222, #fff 50%, #222);
    background-size: 125px 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: #767676;
  }
  @keyframes shimmer {
    0% {
      background-position: top left;
    }
    100% {
      background-position: top right;
    }
  }
  .ab-img{
    border-radius: 30px;
    /* box-shadow: 0px 0px 6px #00000020; */
  }
  .text-justify{
    text-align: justify;
  }
    .graphic{
        position: absolute;
        left: 15px;
        top: -20px;
        max-width: 300px;
        z-index: 9;
        rotate: -22deg;
    }
    .exee{
        position: absolute;
        bottom: 0px;
        right: 0;
        background: #ffffff;
        padding: 20px;
        border-radius:30px 0;
        box-shadow: 0px 0px 4px #00000020;
        backdrop-filter: blur(3px);
.ic{
    width:40px;
}
.cc{
    padding-left:15px;
    border-left: 1px solid var(--primary);
    position: relative;

}
.cc::before{
    content: '';
    position: absolute;
    top: 50%;
    background-color: var(--primary);
    height: 15px;
    width: 10px;
    left: -10px;
    transform: translateY(-50%);
    clip-path: polygon(100% 0, 0% 50%, 100% 100%);

}

        h2{
            /* color: var(--primary); */
            display: inline-block;
            
        }

    }
    .banner-gradient{
        background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    }

    .border-btn{
        border: 1px solid #fff;
        background: #ffffff00;
        padding:12px 40px;
        color:#fff;
        font-size:15px;
        border-radius:6px;
        box-shadow: 1px 1px 1px #fff;
    }
    .border-btn:hover{
        color:#fff;
        
        box-shadow: 1px 1px 8px #00000040;
    }
    .bg-btn{
        background: var(--primary);
        padding:12px 40px;
        color:#fff;
        font-size:15px;
        border-radius:6px;
        box-shadow: 1px 1px 1px #ffffff;
    }
    .bg-btn:hover{
        color:#fff;
        
        box-shadow: 1px 1px 8px #00000040;
    }
    .color-2{
        color:#0c193e;
    }
    
    .ab-us{

        transition: .5s all;

        .cc{
            padding-left:15px;
            border-left: 1px solid #00000050;
            position: relative;
            transition: .5s all;
            
            h4{
                font-size:18px;
            }
        }
        .cc::before{
            content: '';
            position: absolute;
            top: 50%;
            background-color: #00000050;
            height: 15px;
            width: 10px;
            left: -10px;
            transform: translateY(-50%);
            clip-path: polygon(100% 0, 0% 50%, 100% 100%);
            transition: .5s all;
        
        }
        
    }
    .ab-us:hover{


        .cc{
            
            border-left: 1px solid var(--primary);
            
        }
        .cc::before{
            
            background-color: var(--primary);
        
        }
    }

    .ctl{
        display: flex;
        margin-left: 20px;
        gap:10px;
        .ii{
            padding: 5px;
            border: 1px solid var(--primary);
            border-radius: 50%;
            height: 50px;
            width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            i{
                color: var(--primary);
                
            }
        }

        .ctt{
            p{
                margin-bottom: 5px;
            }
        }

    }

    .numm{
        background: url('../img/counter-one-bg.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom center;

        .numm-col{
            background-color: #e8280bec;
            padding-block:80px;

            .cou-up{
                display: flex;
                align-items: center;

                border-right: 2px solid #fff;
                position: relative;
                padding:30px 20px;

                i{
                    color: #fff;
                    font-size: 40px;
                    padding-right: 25px;
                    border-right: 1px solid #ffffffc8;
                    margin-right: 15px;
                    height: 100%;
                    position: relative;
                    padding-block:20px;
                }
                i::after{
                    content: '';
                    position: absolute;
                    top: 50%;
                    background-color: #ffffffc8;
                    height: 15px;
                    width: 7px;
                    right: 0px;
                    transform: translateY(-50%);
                    clip-path: polygon(100% 0, 0% 50%, 100% 100%);
                    transition: .5s all;
                
                }

                .couph{
                    display: flex;
                    align-items: center;
                    justify-content: left;
                    gap: 8px;

                    h2{
                        color:#fff;
                    }
                }
                h5{
                    color:#fff;
                    margin:0px;
                }
            }
            .cou-up::after{
                content: '';
                position: absolute;
                height: 2px;
                width: 100%;
                background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(255, 255, 255) 100%);
                bottom: 0;
                left: 0;
            }
            .cou-up::before{
                content: '';
                position: absolute;
                height: 2px;
                width: 100%;
                background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(255, 255, 255) 100%);
                top: 0;
                left: 0;
            }
        }
    }

    .courses{
        padding-block:80px;

        .dflew{
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top:50px;
            overflow: hidden;
            transform: skew(5deg);
        }


        .dflew .cardd {
            flex: 1;
            transition: all 1s ease-in-out;
            height: 500px;
            position: relative;
          }
          
          .dflew .cardd .card__head {
            color: rgb(255, 255, 255);
            background: var(--primary);
            padding: 0.5em 1em;
            transform: rotate(-90deg);
            transform-origin: 0% 0%;
            transition: all 0.5s ease-in-out;
            min-width: 100%;
            text-align: center;
            position: absolute;
            bottom: 0;
            left: 0;
            font-size: 1em;
            white-space: nowrap;
          }
          
          .dflew .cardd:hover {
            flex-grow: 10;
            overflow: hidden;
          }
          
          .dflew .cardd:hover img {
            filter: grayscale(0);
          }
          
          .coni{
            display: none;
          }
           .dflew .cardd:hover .card__head .coni{
            display: block;
          }

          .dflew .cardd:hover{ 
            .card__head {
            text-align: center;
            top: 0;
            font-weight: 600;
            color: white;
            background: rgba(0, 0, 0, 0.8);
            font-size: 2em;
            transform: rotate(0deg) skew(-5deg)  translateX(-50%);
            width:115%;
            left: 50%;
          }
          span{
            display: none;
          }
          .coni{
            text-wrap: auto;
          }
        }
          
          .dflew .cardd img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 1s ease-in-out;
            filter: grayscale(100%);
          }
          
          .dflew .cardd:not(:nth-child(6)) {
            margin-right: 0.4em;
          }
          
          .coni{
            text-align: left;
            width:100%;
        max-width: 500px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-wrap: auto;

        h3{
            color:#fff;
        }
        h3::after{
            content: '';
            background-color: var(--primary);
            position: relative;
            display: block;
            margin-block: 8px 20px;
            height: 2px;
            width: 80px;
        }
            

            ul{
                li{
                    font-size: 15px !important;
                font-weight: 400;
                }
            }

            p{
                font-size: 10px !important;
                font-weight: 400;
            }

            .kn-more{
                background: #fff;
                border: 1px solid var(--primary);
                padding: 10px 20px;
                color: var(--primary);
                font-size: 15px;
                border-radius: 6px;
            }
          }
          
    }

    .abroad{
        padding-block: 50px;

        .abroad-col{

            .ab-ro{

                .col{
                    width:20%;
                    text-align: center;

                    .countries{
                        padding: 20px;
                        border: 1px solid #00000040;
                        border-radius: 10px;
                        transition: .6s all;

                        .imm{
                            position: relative;
                            margin-bottom: 20px;
                            transition: .6s all;
                        img{
                            max-width:80px;
                            position: relative;
                            transition: .6s all;
                            border: 2px solid #e8280b00 ;
                            border-radius: 50%;
                        }
                    }
                    
                     .imm:after{
                        content: '<';
                        color:#00000010;
                        font-size:20px;
                        position: absolute;
                        top: 50%;
                        right: 10%;
                        transform: translateY(-50%);
                        font-weight: 600;
                        transition: .6s all;

                     }
                     .imm:before{
                        content: '>';
                        color:#00000010;
                        font-size:20px;
                        position: absolute;
                        top: 50%;
                        left: 10%;
                        transform: translateY(-50%);
                        font-weight: 600;
                        transition: .6s all;

                     }
                        
                        h5{
                            color:#000000aa;
                            text-transform: uppercase;
                            font-size: 16px;
                            border: 1px solid #00000050;
                            display: block;
                            padding: 6px;
                            border-radius: 8px;
                            margin: 0;
                            transition: .6s all;
                        }
                    }
                    .countries:hover{
                        box-shadow: 0px 0px 14px #00000020;
                        border: 1px solid #00000000;

                        h5{
                            color: var(--primary);
                        }
                        .imm:after{
                            color:var(--primary);
                         }
                         .imm:before{
                            color:var(--primary);
                         }
                         img{
                            border: 2px solid #e8280b40 ;
                            padding: 5px;
                            border-radius: 50%;
                         }
                        
                    }
                }
            }
        }
    }

    .bg-hta{
        position: relative;
        background: var(--primary);
        padding-block: 40px 80px;

        .hta-col{

            .section-title{
            .section-title__border-box {
                position: relative;
                display: inline-block;
                height: 2px;
                width: 68px;
                background-color: #fff;
                margin: 0px auto 15px;
            }
            h5{
                color:#fff;
                background-color: #dedede;
            }
            h1{
                color:#fff;
            }
        }

            .rc-img{
                position: absolute;
                top: 50%;
                left: 0;
                max-height: 300px;
                transform: translateY(-50%);
                opacity: 0.2;
                filter: brightness(22);
                z-index: 1;
            }
            .rc-img2{
                position: absolute;
                top: 50%;
                left: 50%;
                max-height: 200px;
                transform: translate(-50%, -50%);
                opacity: 0.4;
                filter: brightness(22);
            }

            .hww{
                position: relative;
                z-index: 2;
                display: flex;
                align-items: center;
                gap: 20px;
                padding-block: 50px;

                .img-b{
                    border-radius: 50%;
                    padding: 20px;
                    background-color: #fff;
                    max-width: 120px;
                    box-shadow: 0px 0px 15px #5f5f5f50;
                    position: relative;
                    transition: 1.2s all;

                    img{
                        width: 100%;
                        position: relative;
                        z-index: 2;
                        transition: 0.5s all;
                    }
                }
                .img-b:before {
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    right: 0;
                    content: "";
                    background-color: var(--primary);
                    border-radius: 50%;
                    transform-origin: right;
                    transition: all 0.6s;
                    opacity: 1;
                    z-index: 1;
                    height: 100%;
                    width: 0%;
                  }
              
                  
              
                  
            }
            .hww:hover .img-b img{
                filter: brightness(25);
            }
            .hww:hover .img-b:before {
                opacity: 1;
                transition: 0.5s linear;
                width:100%;
                right: auto;
                left: 0;
              }
              

            .conn{

                h3{
                    color:#fff;
                    margin: 0px;
                }
                h6{
                    color:#fff;
                }
                h6:after{
                    content: '';
                    display: block;
                    position: relative;
                    background-color:#fff;
                    height: 3px;
                    width:40px;
                    margin-block: 10px 15px;
                }

            }
            .hww:after{
                content: '';
                position: absolute;
                left: 55%;
                top:50%;
                transform: translate(-50%, -50%);
                height: 100%;
                width: 85%;
                border:dashed #ffffff;
                border-width: 0 0 3px 3px;
                border-radius: 100px 0px 0 100px;
            }
            .hww:before{
                content: '';
                position: absolute;
                right: 8px;
                bottom:-18px;
                height: 40px;
                width: 40px;
                background: #fff;
                clip-path: polygon(0% 0, 0% 100%, 100% 50%);
            }
        }
    }

    .testi{
        padding-block:60px;

        .testi-col{

            .testi-card{
                position: relative;
                border-radius: 10px;
                overflow: hidden;

                .logoo{
                    position: absolute;
                    left: 10px;
                    top: 10px;
                    max-width: 120px;
                    box-shadow: 0px 0px 3px #00000030;
                    border-radius: 5px;
                }

                .confi{
                    position: absolute;
                    bottom: 0;
                    padding: 100px 10px 20px 10px;
                    background: rgb(0,0,0);
                    background: linear-gradient(0deg, rgba(0, 0, 0, 0.813) 0%, rgba(255,255,255,0) 100%);
                    width: 100%;
                    transition: .6s all;

                    h5{
                        color: #fff;
                        margin-bottom: 0px;
                        transition: .6s all;
                        position: relative;
                        display: inline-block;
                    }

                    h5::after{
                        background: url('../img/quote.png');
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: contain;
                        content: '';
                        position: absolute;
                        right: -30px;
                        height: 25px;
                        width: 25px;
                        top: -20px;
                    }
                    p{
                        color: #fff;
                        line-height: 1.5;
                        text-align: justify !important;
                        margin: 0;
                        display: none;
                        transition: 1s all;
                    } 
                }
                
            }
            .testi-card:hover{
            .confi{

                h5{
                    margin-bottom: 10px;
                }
                p{
                    display: block;
                }
            }
        }
        }
    }

    .bg-st{
        background: url('../img/st.jpg');
        background-size: cover;
        background-position: bottom center;
        background-repeat: no-repeat;

        .bg-st-col{
        padding-block: 60px;
        background-color: #d1d1d136;
        

        .testimonial{
            display: flex;
            background-color: #fff;
            backdrop-filter: blur(2px);
            align-items: center;
            padding: 10px 20px 10px 0;
            box-shadow: 2px 2px 6px #00000023;
            gap: 20px;
            border-radius: 10px;
            transition: .5s all;
            margin-block: 10px;

            .imn{
                max-width: 40%;
                position: relative;
                transition: .5s all;

                .person{
                    position: absolute;
                    left: 50%;
                    top:50%;
                    transform: translate(-50%, -50%);
                    max-width: 150px;
                    border-radius: 50%;
                    border: 5px solid #da3530;
                    transition: .5s all;
                }
            }
            .conn{

                .hee{
                    border-bottom:2px solid #eeeeee;
                    margin-bottom: 15px;
                    padding-bottom: 5px;
                    transition: .5s all;
                    position: relative;
                    h4{

                        color: var(--primary);
                    }

                }
                .hee::after{
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: -9px;
                    border-top: 7px solid #eee;
                    border-left: 10px solid transparent;
                    border-right: 10px solid transparent;
                    transition: .5s all;
                }

                i{
                    
                position: absolute;
                top: 0px;
                right: 0px;
                font-size: 25px;
                background: #f6f6f6;
                padding: 10px;
                color: #aeaeae;
                transition: .5s all;
                }


                p{
                    text-align: justify;
                    margin: 0;
                }
            }
        }
        .testimonial:hover{

            .imn{

                .person{
                    border: 8px solid #da3530;
                }
            }

            .conn{

                .hee{
                    border-bottom:2px solid var(--primary);
                    

                }
                .hee::after{
                    border-top: 7px solid var(--primary);
                }

                i{
                font-size: 20px;
                background: var(--primary);
                
                color: #ffffff;
                }
            }
        }
    }
}

.form-control{
    height: 45px !important;
}

.uni-carousel{

    .uni{
        background-color: transparent;
        border: 1px solid #c2c2c2;
        padding: 10px;
        border-radius: 10px;
    }
}

.cta {
    background: url('../img/cta2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .cta .cta-col {
    background: #000000bb;
    padding-block: 50px;
  }
  .cta .cta-col h4 {
    color: #fff;
    text-align: justify;
    font-size: 30px;
  }
  .cta .cta-col h5 {
    color: #fff;
    text-align: justify;
    font-size: 20px;
    font-weight: 200;
  }
  .cta .cta-col .dow-bt {
    background: #d40000;
    padding: 8px 12px;
    color: #fff;
    border: 1px solid #ffffff00;
    border-radius: 4px;
    font-size: 18px;
    transition: 0.5s all;
    position: relative;
  }
  .cta .cta-col .dow-bt:before {
    content: '';
    position: absolute;
    height: calc(50% + 5px);
    width: calc(100% + 20px);
    top: -10px;
    left: -10px;
    border: solid #fff;
    border-width: 1px 1px 0px 1px;
  }
  .cta .cta-col .dow-bt:after {
    content: '';
    position: absolute;
    height: calc(50% + 5px);
    width: calc(100% + 20px);
    bottom: -10px;
    left: -10px;
    border: solid #fff;
    border-width: 0px 1px 1px 1px;
  }
  .cta .cta-col .dow-bt:hover {
    background: #fff;
    padding: 8px 12px;
    color: #d40000;
    border: 1px solid #d40000;
  }

  .fm-bg{
    background:url('../img/formbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  .z-1{
    z-index: 1;
  }

  .fm-bg::after{
    content: '';
    position: absolute;
    top: 0;
    z-index: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: rgba(77, 77, 77, 0.658);
    /* background: linear-gradient(90deg, rgb(243, 243, 243) 0%, rgba(255, 255, 255, 0.74) 20%, rgba(255,255,255,0) 100%);*/
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); 
}
.dropdown-item{
    padding-inline:2.5rem;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #fff;
    text-decoration: none;
    background-color: #e8280b;
}

.my-h-1:after{
    content:'';
    background:#fff;
    height:1px;
    width:70px;
    display:block;
    position:relative;
    margin:8px 0;
    
}
.my-h-1-center:after{
    content:'';
    background:#fff;
    height:1px;
    width:70px;
    display:block;
    position:relative;
    margin:8px auto;
    
}
.my-h:after{
    content:'';
    background:var(--primary);
    height:1px;
    width:70px;
    display:block;
    position:relative;
    margin:8px 0;
    
}
.my-h-center:after{
    content:'';
    background:var(--primary);
    height:1px;
    width:70px;
    display:block;
    position:relative;
    margin:8px auto;
    
}
.color-1{
        color:var(--primary);
    }
    
    .team-card{
                position: relative;
                border-radius: 10px;
                overflow: hidden;

                .logoo{
                    position: absolute;
                    left: 10px;
                    top: 10px;
                    max-width: 120px;
                    box-shadow: 0px 0px 3px #00000030;
                    border-radius: 5px;
                }

                .confi{
                    position: absolute;
                    bottom: 0;
                    padding: 100px 10px 20px 10px;
                    background: rgb(0,0,0);
                    background: linear-gradient(0deg, rgba(0, 0, 0, 0.813) 0%, rgba(255,255,255,0) 100%);
                    width: 100%;
                    transition: .6s all;

                    h5{
                        color: #fff;
                        margin-bottom: 10px;
                        transition: .6s all;
                        position: relative;
                        display: inline-block;
                    }

                    /*h5::after{*/
                    /*    background: url('../img/quote.png');*/
                    /*    background-position: center;*/
                    /*    background-repeat: no-repeat;*/
                    /*    background-size: contain;*/
                    /*    content: '';*/
                    /*    position: absolute;*/
                    /*    right: -30px;*/
                    /*    height: 25px;*/
                    /*    width: 25px;*/
                    /*    top: -20px;*/
                    /*}*/
                    p{
                        color: #fff;
                        line-height: 1.5;
                        text-align: justify !important;
                        margin: 0;
                        transition: 1s all;
                    } 
                }
                
            }
            .section{
        padding-block:40px;
    }
            
            
            .mn-he{
                min-height: 400px;
            }
            @media(max-width:992px){
                .abroad  .abroad-col .ab-ro .col{
                    width:50%;
            }
            .bg-st .bg-st-col .testimonial{
                display:block;
                padding:0px;
                
                .conn{
                padding:10px;
            }
            }
            .border-btn{
                    padding: 12px 22px;
            }
            .bg-btn{
                    padding: 12px 22px;
            }
            .mn-he{
                min-height:20px;
            }
            
            }
            