* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    padding: 50px 0;
    font-family: "Abel", sans-serif;
    font-size: 35px;
}
@media (max-width: 680px) {
    .new-ones {
        margin-bottom: 20px;
    }
    h2 {
        font-size: 30px;
    }
}

body {
    background: #fff;
    font-family: "Poppins", serif;
    padding-top:95px;
}

#main {
    background: #fff;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.overlay .overlayDoor:before,
.overlay .overlayDoor:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: #071c39;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    transition-delay: 0.8s;
}
.overlay .overlayDoor:before {
    left: 0;
}
.overlay .overlayDoor:after {
    right: 0;
}
.overlay.loaded .overlayDoor:before {
    left: -50%;
}
.overlay.loaded .overlayDoor:after {
    right: -50%;
}
.overlay.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}
.overlay .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.overlayContent img {
    width: 220px;
}

ul {
    padding: 0;
    list-style: none;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
        transition: transform 20000ms linear 0s;
    }

    100% {
        transform: scale(1.4);
        transition: transform 20000ms linear 0s;
    }
}

/* Carousel Wrapper */
.kb-carousel {
    overflow: hidden;
    max-height: 650px;
}

/* Carousel Items */
.kb-carousel .carousel-item {
    transition: transform 0.6s ease-in-out 0s, opacity ease-in-out 0.6s;
}

.kb-carousel .carousel-item.active {
    transition: transform 0.6s ease-in-out 0s, opacity ease-in-out 0.6s;
}

.kb-carousel > .carousel-inner > .carousel-item > img,
.kb-carousel > .carousel-inner > .carousel-item > a > img {
    opacity: 1;
    animation: kenburns 20000ms linear 0s infinite alternate;
}

.kb-carousel .carousel-item-next.carousel-item-start .carousel-caption,
.kb-carousel .carousel-item-prev.carousel-item-end .carousel-caption {
    z-index: 0;
    opacity: 0;
}

/* Carousel Captions */
.kb-caption {
    right: 7%;
    left: 7%;
    bottom: 25%;
    padding: 0;
    width: 80%;
}

.kb-caption-left {
    margin-right: auto;
}

.kb-caption-right {
    margin-left: auto;
}

.kb-caption-center {
    margin: auto;
}

.kb-caption h1,
.kb-caption h3 {
    padding: 0.5rem 0;
    margin-bottom: 0;
}

.kb-caption h1 {
    animation-delay: 1s;
    color: #bf392b;
    background: #fff;
}

.kb-caption h3 {
    animation-delay: 1.5s;
    color: #fff;
    background: rgba(0 0 0 / 0.5);
}

@media (min-width: 768px) {
    .kb-caption {
        bottom: 37%;
        width: 40%;
    }
}

@media (min-width: 1200px) {
    .kb-caption {
        bottom: 45%;
    }
}

/* Controls */
.kb-control-prev,
.kb-control-next {
    width: 3.5rem;
    height: 3.5rem;
    margin: auto 0;
    opacity: 0;
    color: #fff;
    background: rgba(0 0 0 / 0.7);
    border-radius: 50%;
    z-index: 999;
}

.kb-carousel:hover .kb-control-prev,
.kb-carousel:hover .kb-control-next {
    opacity: 1;
}

.kb-control-prev {
    left: 1%;
}

.kb-control-next {
    right: 1%;
}

.kb-control-prev:hover,
.kb-control-prev:focus,
.kb-control-next:hover,
.kb-control-next:focus {
    color: #fff;
    background: rgba(0 0 0 / 1);
}

/* Support for dark mode */
[data-bs-theme="dark"] .carousel .carousel-control-next-icon,
[data-bs-theme="dark"] .carousel .carousel-control-prev-icon {
    filter: none;
}

.new-header {
    background: #fff;
    position: fixed;
    z-index: 999;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    top:0;
    left:0;
    border-bottom: 1px solid #efefef;
}

.footer {
    padding: 50px 0px 0px 0px;
    color: #fff;
    position: relative;
    background: #e7e7e7;
}
#about img {
    width: 350px;
    /* height: 332px; */
}

.footer h4 {
    text-align: left;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ff5543;
    font-weight: 700;
}

.footer p {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0px;
    background: #000;
    padding: 7px;
    font-size: 11px;
}

.footer ul li a {
    color: #000;
    text-decoration: none;
    font-weight: normal;
    font-size: 13px;
}

.right-minus-100px {
    right: 0px;
    position: absolute;
    z-index: -9;
    width: 100px;
}

.right-minus-100px.top {
    height: 240px;
    z-index: 1;
    width: 263px;
}

.footer-50 li {
    text-align: left;
}

.footer-50 {
    width: 48%;
    display: inline-table;
}

#carouselKenBurns .carousel-inner:before {
    content: "Read this: ";
    height: 700px;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.logo-holder {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}
.logo {
    height: 65px;
}
.title h3 {
    font-size: 19px;
    color: #000;
}

.new-header img {
    max-width: 107px;
}

.title h4 {
    color: #000;
    font-size: 12px;
}
.facts {
    position: relative;
    z-index: 9;
}
.vision-box{
    background:#f1f1f1;
    border-radius:7px;
    height: 200px;
}
.mision-box{
    background:#1e3272;
    border-radius:7px;
    color:#ffffff;
    height: 200px;
}
.facts h3{
    font-size:18px;
    font-weight:bold
}
.facts p{
    font-size:13px;
    margin-bottom:0;
    text-align:justify;
}
nav {
    
}
nav .wrapper {
    position: relative;
    
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.wrapper .logo a {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}
.wrapper .nav-links {
    display: inline-flex;
    margin-bottom: 0px;
}
.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: "Poppins", serif;
    line-height: normal;
}
.nav-links li a:hover {
    background: #000;
    color: #fff;
}
.nav-links .mobile-item {
    display: none;
}
.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 318px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px 10px 10px 10px;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}
.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 10px;
    color: #fff;
}

#about .card-inner li img {
    width: 240px;
    text-align: center;
    margin: 0 auto;
    height: 250px;
}

#about {
    background: url(../images/new.png);
}
.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}
.mega-box .content {
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}
.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}
.content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.row .mega-links li {
    padding: 0 20px;
}
.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}
.row .mega-links li a:hover {
    color: #f2f2f2;
}
.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}
.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

nav input {
    display: none;
}

@media screen and (max-width: 970px) {
    .new-inner-outers li {
        padding: 20px;
        border-radius: 10px;
    }

    .why-choose-us {
        margin-top: 10px !important;
    }
    .footer-50 {
        width: 100%;
        display: inline-table;
    }
    #close-btn:checked ~ .btn.menu-btn {
        display: block;
        color: #000;
    }
    .wrapper .btn {
        display: block;
        color: #000;
    }
    .new-header .col-md-3 {
        width: 70%;
    }
    .new-header .col-md-9 {
        width: 30%;
    }
    #about img {
        width: 100%;
        /* height: 332px; */
        margin-bottom: 20px;
    }
    .why-choose-us .finix-text h2 {
        font-weight: 500;
        line-height: 32px;
        font-size: 20px;
    }
    .contact_field {
        padding: 11px !important;
    }
    .wrapper .btn {
        display: block;
    }
    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #242526;
    }
    ::-webkit-scrollbar-thumb {
        background: #3a3b3c;
    }
    #menu-btn:checked ~ .nav-links {
        left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn {
        display: none;
    }
    #close-btn:checked ~ .btn.menu-btn {
        display: block;
    }
    .nav-links li {
        margin: 15px 10px;
    }
    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
        color: #fff;
    }
    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box {
        max-height: 100%;
    }
    .nav-links .desktop-item {
        display: none;
    }
    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover {
        background: #3a3b3c;
    }
    .drop-menu li {
        margin: 0;
    }
    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }
    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }
    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }
    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }
    .row .mega-links li {
        margin: 0;
    }
    .content .row header {
        font-size: 19px;
    }
}

.director_info_box {
    background: #dfdfdf;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.directord_info {
    background: #040d2a;
    border: 1px solid #ffc600;
    padding: 54px 50px 54px 120px;
    position: relative;
    text-align: left;
    font-size: 16px;
}

.directord_info:before {
    content: "";
    position: absolute;
    height: 115px;
    width: 5px;
    background-color: #ffffff;
    left: 75px;
    top: 22px;
    display: block;
    transition: all 0.7s;
}

.inner-outers li p {
    font-size: 12px;
    color: #c74900;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 11px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
    text-align: left;
    color: #000;
}

.section-title h2::after {
    content: "";
    width: 100px;
    height: 1px;
    display: inline-block;
    background: #b64e04;
    margin: 5px 2px;
}

.section-title p {
    color: #000;
    margin: 0;
    font-size: 22px;
    font-weight: 700;

    font-family: var(--heading-font);
}

.directord_info p {
    color: #818181 !important;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
}

.directord_info h6 {
    color: #000000;
    font-weight: bold;
    font-size: 18px;
}

.card-inner {
    display: flex;
    margin-top: 20px;
}

.card-inner ul {
    display: flex;
    width: 100%;
    gap: 20px;
}

.card-inner ul li {
    width: 33.33%;
    text-align: center;
    padding: 20px;
    border-radius: 35px !important;
    height: auto !important;
}

.card-inner ul li h3 {
    color: #000;
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 0px;
}

.section-title ul li h5 {
    font-size: 14px;
}

/* Utilities */
.card::after,
.card img {
    border-radius: 50%;
}

.card {
    padding: 2.5rem 2rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    margin: 1rem;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
    max-width: 400px;
}
.card::before,
.card::after {
    content: "";
    position: absolute;
    z-index: -1;
}
.card::before {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 10px;
    top: -0.7rem;
    left: -0.7rem;
}
.card::after {
    height: 15rem;
    width: 15rem;
    background-color: #fd8f6f;
    top: -8rem;
    right: -8rem;
    box-shadow: 2rem 6rem 0 -3rem #fff;
}

.card img {
    width: 200px;
    /* min-width: 80px; */
    box-shadow: 0 0 0 5px #fff;
    height: 200px;
    border: 3px solid #c74900;
}

.infos {
    margin-top: 20px;
}

.name {
    margin-bottom: 1rem;
}
.name h2 {
    font-size: 1.3rem;
}
.name h4 {
    font-size: 0.8rem;
    color: #333;
    margin-top: 10px;
}

.text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.stats {
    margin-bottom: 1rem;
}
.stats li {
    min-width: 5rem;
}
.stats li h3 {
    font-size: 0.99rem;
}
.stats li h4 {
    font-size: 0.75rem;
}

.links button {
    font-family: "Poppins", sans-serif;
    min-width: 120px;
    padding: 0.5rem;
    border: 1px solid #222;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s linear;
}
.links .follow,
.links .view:hover {
    background-color: #222;
    color: #fff;
}
.links .view,
.links .follow:hover {
    background-color: transparent;
    color: #222;
}

@media screen and (max-width: 750px) {
    .card-inner ul li {
        width: 100%;
        text-align: center;
    }

    .facts .col-md-6 {
        width: 94% !important;
    }

    .card-inner ul {
        display: flex;
        width: 100% !important;
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 450px) {
    .card {
        display: block;
    }
    .infos {
        margin-left: 0;
        margin-top: 1.5rem;
    }
    .links button {
        min-width: 100px;
    }
}

.img {
    margin-bottom: 10px;
}

.name h2 {
    font-size: 20px;
    letter-spacing: 1px;
}

img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}
img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}
@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

#button {
    display: inline-block;
    background-color: #ff5543;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 15px;
    margin: 0 !important;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}
#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}
#button:hover {
    cursor: pointer;
    background-color: #333;
}
#button:active {
    background-color: #555;
}
#button.show {
    opacity: 1;
    visibility: visible;
}

/* Styles for the content section */

.content {
    width: 77%;
    margin: 50px auto;
    font-family: "Merriweather", serif;
    font-size: 17px;
    color: #6c767a;
    line-height: 1.9;
}
@media (min-width: 500px) {
    .content {
        width: 43%;
    }
    #button {
        margin: 30px;
    }
}
.content h1 {
    margin-bottom: -10px;
    color: #03a9f4;
    line-height: 1.5;
}
.content h3 {
    font-style: italic;
    color: #96a2a7;
}

.inner {
    height: 118px;
}

.why-nits .section-title h2::after {
    display: none;
}

.why-nits {
    padding: 30px 0px;
}

.why-nits button {
    background: #e7e7e7;
    color: #000;
    font-family: "Poppins", serif;
}

.section-title li {
    margin-bottom: 10px;
}

.section-title ul li {
    display: flex;
    height: 100%;
    border-radius: 20px;
}
.section-title li {
    margin-bottom: 10px;
    /*   background: #edebeb; */
    padding: 10px;
    padding-bottom: 0;
    /*  display: flex; */
}

.new0nes li {
    display: flex;

    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    width: 220px;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dfdfdf;
}
.accordion-button:not(.collapsed) {
    background-color: #022d62;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
    color: #fff;
    font-family: "Poppins", serif;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.inner-outers li {
    display: block !important;
}

.accordion-button::after {
    /* background: #fff !important; */
    border-radius: 50%;
    padding: 13px;
    filter: hue-rotate(350deg);
}

.why-nits strong {
    font-weight: normal;
}

@media screen and (max-width: 600px) {
    .section-title .col-new img {
        margin: 6px !important;
        width: 46% !important;
    }
    .facts .col-md-6 {
        background: #a76565;
        color: #fff;
        margin: 10px;
        padding: 19px;
        width: 45%;
        background: rgb(2, 0, 36);
        background: linear-gradient(90deg, rgb(102 38 2) 0%, rgb(215 120 120) 35%, rgb(175 104 104) 100%);
        border-radius: 10px;
    }
}

.col-new {
    display: flex;
    flex-wrap: wrap;
}
.section-title img {
    display: flex;
    width: 48%;
    flex-wrap: wrap;

    border-radius: 20px;
}
.col-new {
    display: flex;
}

.section-title .col-new img {
    margin: 6px !important;
    width: 47%;
}
.section-title img {
    display: flex;
    width: 80%;
    flex-wrap: wrap;
    margin-top: 20px;
    /* margin: 5px !important; */
}

.section-title span {
    background: #000;
    width: 30px;
    height: 30px;
    color: #fff;
    text-align: center;
    border-radius: 30px;
}

.why-nits li img {
    width: 90%;
}



.new0nes {
display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
    gap: 15px;
    align-content: center;
    justify-content: center;
    align-items: center;
    }
.new0nes li img {
    margin-top: 0px !important;
    height: 31px;
    max-width:100%;
}

.section-title h3 {
    text-align: center;
    margin-bottom: 30px;
}

.new0nes li {
    background: #fff;
}
.new-inners li {
    display: flex;
    border: 2px solid #000;
    min-height: 116px;
}
.new-inners li span {
    margin-bottom: 0px !important;
}

.new-inners li span {
    margin-bottom: 0px !important;
    margin-right: 15px;
    background: #c54a02;
    width: 62px;
    height: 60px;
    text-align: center;
    padding: 16px 25px 22px 22px;
    color: #fff;
    font-size: 21px;
}

.section-title ol {
    margin-top: 10px;
    padding-left: 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.new-inners li {
    width: 30%;
    min-height: 239px;
    border-radius: 20px;
    background-image: linear-gradient(90deg, #f5eeee 0%, #fffafa 100%);
    color: #060606;
    border: 0px solid #ccc;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.new-inners li img {
    display: flex;

    width: 100%;
    height: 200px;
}

.new {
    width: 350px;
}

.new-ones h4 {
    margin-bottom: 20px;
}

.why-nits span {
    font-weight: bold;
    padding-bottom: 10px !important;
    /* display: block; */
    color: #000;
    background: #fff;
    display: flex;
    width: 100%;
    padding-bottom: 10px !important;
    text-align: left;
    display: inline-table;
}

.section-title img.new-inner {
    width: 17px !important;
    border: none;
    height: 17px;
    margin-right: 10px;
    margin-top: 5px;
    background-size: cover;
    margin-top: 4px !important;
}

.new-ones {
    background: #e9ecef;
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}

.section-title .new-ones p {
    font-weight: normal;
    font-size: 16px;
    margin-top: 20px;
    text-transform: none;
}

.new-header .title::after {
    display: none;
}

.section-title .new-ones img {
    border: none !important;
    width: 100%;
    height: 200px;
}
.new-inner h4 {
    margin-bottom: 20px;
}

.title {
    text-align: center;
    text-transform: capitalize;
    color: #726a95;
    margin: 10px 0;
    position: relative;
}

.title::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    background-image: linear-gradient(to left, transparent 5%, #726a95);
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
}

.team-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 0 20px 0;
}

.member {
    flex: 1 1 360px;
    text-align: center;
    padding: 20px;
    cursor: pointer;
    max-width: 360px;
    transition: all 0.3s;
}

.member:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
}

.member img {
    display: block;
    width: 100%;
    border: 1px solid #022d62;
    margin: 0 auto !important;
}

.member h2 {
    text-transform: uppercase;
    font-size: 16px;
    color: #726a95;
    margin: 15px 0 5px 0;
    padding: 0px;
    line-height: 20px;
    text-align: center;
}
.member h2::after {
    content: unset;
}

.member p {
    font-size: 15px;
    color: #838383;
    line-height: 1.6;
    font-weight: normal;
}

.directord_info h4 {
    color: #fff;
}

.new-inner {
    font-weight: normal !important;
    font-size: 15px !important;
    margin-top: 10px !important;
    display: block;
}

/* .section-title img{width: 100%;} */

.new-inner-outers li {
    background: #fdebeb;
}

.section-title ul li h4 {
    font-weight: bold;
    background: #022d62;
    border-radius: 8px;
    padding: 10px 18px;
    color: #fff;
    font-size: 20px;
}

.new-inner-outers li {
    display: block !important;
}
.new-outers {
    display: flex;
}

.new-outers span {
    width: 200px;
    background: transparent;
    height: auto;
    padding-bottom: 0px !important;
}

.new-inner-outers {
    padding: 0px;
    margin-top: 20px;
}

.new-inner-outers li {
    padding: 20px;
}

.finix-text h6 {
    color: #e73c3e;
    font-weight: 400;
    font-size: 17px;
}
.finix-text h2 {
    font-weight: 400;
    font-size: 35px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.finix-text p {
    color: #606060;
    font-size: 15px;
    line-height: 1.8rem;
}
.why-choose-us {
    margin-top: 30px;
}
.why-choose-us .finix-text h2 {
    font-weight: 500;
}
.why-choose-us .ct-btn {
    display: inline-block;
    width: 85px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    border-radius: 50%;
    font-size: 60px;
    background: #fff;
    position: absolute;
    top: 77%;
    right: 43%;
}
.why-choose-us .ct-btn::before {
    content: "";
    height: 85px;
    width: 85px;
    position: absolute;
    top: 0;
    left: 0;
    background: #e73a3e;
    border-radius: 50%;
    animation: choose 1.6s ease-out infinite;
}
@keyframes choose {
    0%,
    30% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.why-choose-us .ct-btn a {
    color: #e73c3e;
}
.why-choose-us .feature-box {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 20px;
    transition: 0.4s;
    border: 2px solid #ccc;
    border-radius: 10px;
    min-height: 315px;
}
.why-choose-us .feature-box:hover {
    transform: translateY(-10px);
}
.why-choose-us .feature-box:hover .fbc-btn {
    background: #e73c3e;
    color: #fff;
}
.why-choose-us .feature-box::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 70%;
    background: #fdebeb;
    border-radius: 50%;
}
.why-choose-us .fbc-btn {
    display: flex;
    height: 60px;
    width: 60px;
    background: #010d6a;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    position: relative;
    transition: 0.4s;
    font-weight: bold;
    font-size: 28px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.active-feature {
    margin-top: -30px;
}
.why-choose-us .finix-text {
    position: relative;
}

.feature-box-content p {
    font-weight: normal;
    font-size: 16px;
}

#about-2 .card-inner li img {
    height: auto;
    width: 100%;
    margin-top: 0;
}

header .title {
    min-width: 250px;
}
.copy-right {
    text-align: center;
}

.footer-logo {
        max-width: 165px;
    display: block;
}
.recruiters li {
       height: 80px !important;
    width: 7.5%;
    padding: 10px;
    border-radius: 5px !important;
    margin: 0;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.recruiters img {
    height: auto !important;
    border-radius: 0;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    align-content: center;
    width: 90% !important;
    min-height: auto !important;
}
.recruiter-heading {
    text-transform: uppercase;
    text-align: left !important;
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 1.5px;
}
.ws-academic span {
    display: block;
    min-width: 200px;
}
.student-prof h2 {
    padding: 0 0 20px 0;
    text-align: left;
}
.student-prof p {
    text-align: justify;
}
.student-prof img {
    transition: all 0.5s ease-in-out;
    border-radius: 20px;
}
.recruiters img {
    transition: all 0.5s ease-in-out;
}
.student-prof img:hover {
    scale: 1.03;
}
.recruiters li:hover img {
    scale: 1.05;
}
.team .directord_info:before {
    top: 50px;
}
.our-team{
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-bottom:15px;
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .team-content{
    width: 100%;
    background: #3f2b4f;
    color: #fff;
    padding: 0px 0 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.our-team:hover .team-content{
    padding-bottom: 40px;
}
.our-team .team-content:before,
.our-team .team-content:after{
    content: "";
    width: 60%;
    height: 38px;
    background: #3f2b4f;
    position: absolute;
    top: -18px;
    transform: rotate(15deg);
    z-index: -1;
}
.our-team .team-content:before{
    left: -3% ;
}
.our-team .team-content:after{
    right: -3%;
    transform: rotate(-15deg);
}
.our-team .title{
       font-size: 16px;
       font-weight: 600;
       text-transform: capitalize;
       margin: 0 0 7px 0;
       position: relative;
       color: #ff5543;
}
.our-team .title:before,
.our-team .title:after{
    content: "";
    width: 7px;
    height: 93px;
    background: #ff5543;
    position: absolute;
    top: -65px;
    z-index: -2;
    transform: rotate(-74deg);
}
.our-team .title:before{
    left: 32% !important;
}
.our-team .title:after{
    right: 32% !important;
    transform: rotate(74deg);
    left:auto;
}
.our-team .post{
    display: block;
    font-size: 12px;
    text-transform: capitalize;
    margin-bottom: 8px;
}
.our-team .social-links{
    list-style: none;
    padding: 0 0 15px 0;
    margin: 0;
    position: absolute;
    bottom: -40px;
    right: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.our-team:hover .social-links{
    bottom: 0;
}
.our-team .social-links li{
    display: inline-block;
}
.our-team .social-links li a{
    display: block;
    font-size: 16px;
    color: #aad6e1;
    margin-right: 6px;
    transition: all 0.5s ease 0s;
}
.our-team .social-links li:last-child a{
    margin-right: 0;
}
.our-team .social-links li a:hover{
    color: #ff5543;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
    .our-team .team-content:before,
    .our-team .team-content:after{
        height: 50px;
        top: -24px;
    }
    .our-team .title:before,
    .our-team .title:after{
        top: -85px;
        height: 102px;
    }
    .our-team .title:before{
        left: 35%;
    }
    .our-team .title:after{
        right: 35%;
    }
}
@media only screen and (max-width: 767px){
    .our-team .team-content:before,
    .our-team .team-content:after{
        height: 75px;
    }
    .our-team .team-content:before{
        transform: rotate(8deg);
    }
    .our-team .team-content:after{
        transform: rotate(-8deg);
    }
    .our-team .title:before,
    .our-team .title:after{
        width: 10px;
        top: -78px;
        height: 102px;
    }
    .our-team .title:before{
        left: 42.5%;
        transform: rotate(-82deg);
    }
    .our-team .title:after{
        right: 42.5%;
        transform: rotate(82deg);
    }
}
@media only screen and (max-width: 480px){
    .our-team .title:before,
    .our-team .title:after{
        top: -83px;
    }
}
.box-stu{
    margin-bottom:25px;
    border-radius:7px;
}
.box-stu h4{
    font-size:16px;
}
.box-stu p{
    margin-bottom:0;
    font-size:13px;
}
.dr-box-spcl {
   align-items: center;
    background: #f1f1f1;
    border-radius: 15px;
    border: 0;
}
.dr-box-spcl img{
        width: 185px;
    margin-top: 0;
}
.dr-box-spcl:before{
    content:none;
}
.dr-box-spcl-details{
    padding-left:30px;
}
.teamcard{
    max-width:100% !important;
}
.pro-pic {
    min-height: 200px;
}
.card.teamcard::after {
    height: 10rem;
    width: 10rem;
    background-color: #fd8f6f;
    top: -7rem;
    right: -7rem;
    box-shadow: 2rem 6rem 0 -3rem #fff;
}


.teamcard .row{
    align-items: center;
}
.teamcard h6{
    font-size:20px;
    }
.teamcard p{
    font-size:13px;
    }
.email-signature{
    background: #fff;
    padding: 45px 20px 65px 300px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 250px;
    margin: 25px 0;
}
.email-signature p{
    font-size:13px;
    font-weight: normal;
}
.email-signature:before,
.email-signature:after{
    content: "";
    background: #1f3375;
    width: 160px;
    height: 100%;
    border-radius: 0 0 100px;
    position: absolute;
    top: 0;
    left: 0;
}
.email-signature:after{
    width: 100px;
    height: 40px;
    border-radius: 0 0 0 100px;
    left: auto;
    right: 0;
}
.email-signature .signature-icon{
    height: 230px;
    width: 230px;
    border: 5px solid #fff;
    border-radius: 0 30%;
    transform: translateY(-50%);
    overflow: hidden;
    position: absolute;
    left: 40px;
    top: 50%;
}
.email-signature .signature-icon img{
    height: auto;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
}
.email-signature .signature-details{
    color: #0088dc;
    padding: 0 128px 0 0;
}
.email-signature .title{
       font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 9px;
    text-align: left;
    padding: 0;
}
.email-signature .title::after{
    content:none;
}
.email-signature .post{
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    background: none;
    color: #1f3375;
    line-height: normal;
    margin-bottom: 15px;
    display: block;
    color: #ff5543;
}
.email-signature ul{
    color: #111;
    padding: 0px 0 0;
    margin: 0;
    list-style: none;
}
.email-signature ul li{
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 0px;
    padding: 0 !important;!i;!;
}
.email-signature .signature-content li:last-child{ margin: 0; }
.email-signature .signature-content li span{
    color: #fff;
    background: #0088dc;
    font-size: 11px;
    text-align: center;
    line-height: 20px;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    border-radius: 20px;
}


@media screen and (max-width:576px) {
    .email-signature{ padding: 210px 0 40px 0; }
    .email-signature:before{
        width: 100%;
        height: 150px;
        border-radius: 0 0 150px 0;
    }
    .email-signature:after{
        border-radius: 100px 0 0 0;
        top: auto;
        bottom: 0;
    }
    .email-signature .signature-icon{
        transform: translateX(-50%);
        top: 35px;
        left: 50%;
    }
    .email-signature .signature-details,
    .email-signature .signature-content{
        text-align: center;
        padding: 0;
        margin: 65px 0 0px;
    }
   .email-signature .post{
   
   text-align:left;
   }
}
