* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

ul,
li,
ol {
    list-style: none;
    margin: 0;
}

.py-100 {
    padding: 100px 0 0;
}

header {
    background-color: #FFDFB3;
    position: fixed;
    width: 100%;
    /* padding: 10px 0; */
    z-index: 999;
    transition: all 0.4s;
    /* border-bottom: 1px solid rgba(0, 0, 0, .1); */
}

.menu li {
    padding: 0 10px;
}

.menu li a {
    text-transform: capitalize;
    color: #000000;
    position: relative;
    transition: all 0.5s;

}

.menu li a:not(.bt)::after {
    position: absolute;
    content: "";
    height: 2px;
    left: auto;
    right: 0;
    width: 0;
    background-color: #1a3d66;
    bottom: 0;
    transition: all 0.5s;
}

.menu li a:not(.bt):hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.bt {
    background: #FF8A00;
    border-radius: 50px;
    padding: 5px 25px !important;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.10);
}

.bt:hover {
    background: #FF8A00 !important;
    color: #fff;
}

/* header close */
.sec-1 {
    padding: 100px 0 0;
    background-color: #FFDFB3;
    /* clip-path: polygon(50% 0%, 100% 0, 100% 100%, 59% 83%, 16% 99%, 0% 60%, 0 0); */

}

.sec-1 h1 {
    color: #1a3d66;
    font-weight: 600;
    line-height: 56px;
}

h1 span {
    color: #FF8A00;
}

.left-top p {
    font-size: 20px;
}

.glow-on-hover {
    background-color: #FF8A00;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    position: relative;
    z-index: 10;
    font-weight: 500;
    transition: all 0.4s;

}

.glow-on-hover:hover {
    color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    animation: glow 0.4s linear 0.1s infinite;
}

@keyframes glow {
    50% {
        transform: scaleX(1.05);
    }

    100% {
        transform: scaleX(1.1);
    }
}

.circle-sharp {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #fff;
    color: #00E0FF;
    font-size: 20px;
    transition: all 0.4s;
}

.circle-sharp-main:hover .circle-sharp {
    transform: scale(1.2);
}

.circle-sharp-main p {
    font-size: 17px;
}

/* end .sec-1 */

.h4-all {
    color: #1a3d66;
    line-height: 40px;
    text-transform: capitalize;
}

.h4-all span {
    color: #FF8A00;
}

.all-p {
    color: #696984;
    font-size: 15px;
    line-height: 25px;
}

.box {
    padding: 30px;
    box-shadow: 5px 5px 50px 5px #262D7614;
    border-radius: 10px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1 !important;
}

/* .box::after {
    background-color: rgba(253, 152, 28, .1);
    position: absolute;
    content: "";
    z-index: -1;
    inset: 0;
    clip-path: polygon(0 100%, 174% 16%, 104% 102%, -12% 46%);
} */



 .box:before {
    background-color: rgba(26, 61, 102, .1);
    position: absolute;
    content: "";
    z-index: -1;
    inset: 0;
    clip-path: polygon(0 0, 100% 42%, 100% 0, 0% 44%);

}  

.box h4 {
    color: #1a3d66;
}

.cir {
    height: 70px;
    width: 70px;
    background-color: #22118F;
    transform: translateY(-65px);
}

.cir-2 {
    background-color: #FF8A00;
}

.cir-3 {
    background-color: #29B9E7;
}

.cir-4 {
    background-color: #0c0c0c;
}

.cir-5 {
    background-color: #604b72;
}

.cir-6 {
    background-color: #74a577;
}

.cir img {
    width: 30px;
}

/* end .sec-2 */
.sec-3 {
    padding: 50px 0;
}

.sec-3 p {
    width: 70%;
}

.img-main h4 {
    font-weight: 600;
}

.img-main a {
    border: 1px solid;
    padding: 10px 30px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.4s;
}

.img-main a:hover {
    background-color: #29B9E7;
    border-color: #29B9E7;
}

.uper {
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.40);
    border-radius: 19px;
}

/* end .sec-3 */
.circle-h3 {
    height: 50px;
    width: 50px;
    background-color: #F4B767;
    left: -15px;
    top: -12px;
    z-index: -1;
    animation: Wecode 9s linear infinite 0.9s;
}


@keyframes Wecode {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(520px);
    }

    100% {
        transform: translate(0px);
    }

    150% {
        transform: translatey(120px);
    }
}

/* .main-div:hover .circle-h3 {width: 200px;}{

} */



.all-outline-btn {
    border: 1px solid;
    padding: 10px 35px;
    color: #F48C06;
    transition: all 0.4s;
    border-radius: 50px;
}

.all-outline-btn:hover {
    background-color: #FF8A00;
    border-color: #FF8A00;
    color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
    animation: glow 0.4s linear 0.1s infinite;
}

.circle-sharp-2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

}

.div-squre {
    background-color:#F48C06;
    height: 120px;
    width: 120px;
    border-radius: 20px;
    left: -15px;
    top: -15px;
    z-index: -1;
}

.div-squre-2 {
    background:#22118f;
    height: 180px;
    width: 180px;
    right: -15px;
    bottom: -15px;
    border-radius: 20px;
    z-index: -1;
}

.list-3-group div {
    background: #FBFBFB;
    box-shadow: 0px 10px 15px rgba(13, 15, 28, 0.12);
    height: 60px;
    width: 60px;
}

.man-spn span:first-child {
    width: 50px;
    height: 2px;
    background-color: #525596;
}

.man-spn span:last-child {
    color: #525596;
    letter-spacing: 2px;
    font-size: 14px;
}

.sec-7 p {
    color: #696984;

}

.h-n {
    height: 50px;
    line-height: 50px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 50px;
    animation: none !important;
}

.h-n span {
    height: 50px;
    width: 50px;
    display: inline-block;
    border: 1px solid;
    border-radius: 50px;
    background-color: #fff;
    color: #F48C06;
    right: -7px;
    top: 0;
}

footer {
    background: #1a3d66;
    padding: 20px 0;
}

footer p {
    color: #B2B3CF;
}

.te-14 {
    font-size: 14px;
}

footer ul li a {
    font-size: 13px;
    color: #fff;
}

footer ul li a:hover {
    color: #fff;
}

footer ul li {
    padding: 0 10px;

}

.yo-yo {
    background-color: #fff;
}

/* new section star*/
.bg-coman {
    background-color: rgb(255 138 0 / 5%);
}

.our-services,
.tranding-courses {
    padding: 50px;
}

.box-servisec {
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 10px solid #22118F;
    margin-bottom: 30px;
}

.box-servisec p {
    font-size: 15px;

}



/* end .our-services */

.tranding-courses {
    padding: 50px 0;
}

.tranding-box {
    padding: 30px 20px 20px;
    border-radius: 12px;
    box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
    min-height: 290px;
}

.aff {
    margin-bottom: 50px;

}

.aff::before {
    /* content: "";
    position: absolute;
    height: 200px;
    background-color: #1a3d66;
    width: 90%;
    border-radius: 12px;
    bottom: -15px;
    right: -15px; */
    
}


 /* .aff:hover::before {
    content: "";
    position: absolute;
    height: 200px;
    background-color: #fd981c;
    width: 90%;
    border-radius: 12px;
    bottom: 85px;
    right: -15px; 

} */

.ux-main {
    background-color: #490740;
    height: 70px;
    width: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green {
    background-color: #74a577;
}

.orange {
    background-color: rgb(143, 67, 39);
}

.red {
    background-color: rgb(187, 111, 111);
}

.blue {
    background-color: rgb(85, 85, 237);
}

.yellow {
    background-color: rgb(117, 117, 54);
}

.black {
    background-color: rgb(0, 0, 0);
}

.sky {
    background-color: skyblue;
}

.ux-main img {
    width: 45px;
}

.tranding-box h5 {
    font-size: 19px;
    font-weight: 500;
    color: #1a3d66;
}

.tranding-box p {
    font-size: 15px;
}

/* end .tranding-courses */
.why-choose-us {
    padding: 50px 0;
}

.us {
    padding: 10px;
    box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 10px;
}

.us div {
    height: 50px;
    width: 50px;
    background-color: pink;
    background-color: #1dacf3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.us h5 {
    font-size: 18px;
    color: #22118F;
    font-weight: 600;
    text-transform: capitalize;
}

.us p {
    font-size: 15px;
    font-weight: 500;
}

.pp-t {
    font-weight: 500;
}

/* end sec*/
.batches-option-we-have {
    padding: 50px 0;
}

.have-box {
    padding: 20px;
    box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.have-box .fa-location-dot {
    font-size: 50px;
}

.have-box h4 {
    font-weight: 500;
    color: #1a3d66;
    font-size: 20px;
}

.have-box p {
    font-size: 15px;
    line-height: 25px;
}

/* end sec*/
.map {
    padding: 100px 0;
}

.loc {
    background-color: #F48C06;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.loc i {
    font-size: 24px;
}

/* end sec*/
.program {
    padding: 50px 0;
    background-color: #1a3d66;
}

.program ul li {
    padding: 12px 0;
    text-transform: capitalize;
    align-items: baseline;

}

.img-12 {
    object-fit: contain;
    /* height: 300px; */
}

.w-50 {
    width: 20px;
}

.left-top {
    padding: 50px 0 100px;
}































@media(max-width:991px) {
    .menu li {
        padding: 0;
    }

    .res {
        width: 100% !important;
    }

    .sec-3 p {
        width: 100%;
    }

    .py-100 {
        padding: 50px 0;
    }

    .left-top {
        padding: 30px 0 0;
    }
}


/* sdvasd\ */

.testimonial {
    margin: 50px 20px 50px;
}

.testimonial .testimonial-content {
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    position: relative;
}

.testimonial .testimonial-content:before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    border-top: 15px solid #718076;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.testimonial .testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    border-top: 15px solid #718076;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.testimonial-content .testimonial-icon {
    width: 50px;
    height: 45px;
    background: #0CCA4A;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}

.testimonial-content .testimonial-icon:before {
    content: "";
    border-bottom: 16px solid #05A739;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}

.testimonial .description {
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}

.testimonial .title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.testimonial .post {
    display: block;
    font-size: 14px;
    color: #0CCA4A;
}

.owl-theme .owl-controls {
    margin-top: 20px;
}

.owl-theme .owl-controls .owl-page span {
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background: #0CCA4A;
}

/* .text-type {
    animation: type 9s steps(126);
    overflow: hidden;
    white-space: nowrap;
    font-family: consolas;
    border-right: 4px solid black;
    width: 69%;

} */
/* 
.text-type h4 {
    padding-left: 10px;
}

@keyframes type {
    0% {
        width: 1;
    }

    50% {
        width: 1px;
        border-right: 4px solid rgb(255, 255, 255);
    }

    100% {
        background-color: #fff;
        color: #ffff;
        border: none !important;
    }

} */