/* Global css */

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    width: 100%;
    height: 100%;
}

body {
    color: var(--font-body);
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    min-width: 360px;
    width: 100%;
}

button,
input[type="submit"],
input[type="search"],
a {
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
    color: blue;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: #3C0008;
}

a:focus {
    outline: none!important;
    outline-offset: inherit!important;
    text-decoration: none!important;
}

button:focus {
    outline: none;
}

a,
img {
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

label {
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    margin-bottom: 0;
}

dl,
ol,
ul {
    list-style-position: inside;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 600;
}

p {
    display: block;
    margin: 0;
    padding: 0 0 15px;
    word-wrap: break-word;
    letter-spacing: .2px;
}

.btn-custom {
    height: 40px;
    border-radius: 50px;
    padding: 0 15px;
    line-height: 39px;
    min-width: 140px;
    color: #fff;
    background: var(--primary);
    font-size: 14px;
    text-align: center;
    text-shadow: none;
    border: 1px solid var(--primary);
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.btn-custom:hover,
.btn-custom:focus {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.btn-primary-bordered {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary-bordered:hover,
.btn-primary-bordered:focus {
    background: var(--primary);
    color: #fff;
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.btn-white:hover,
.btn-white:focus {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.btn-white-bordered {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-white-bordered:hover,
.btn-white-bordered:focus {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.container {
    width: 90%;
    max-width: 1410px;
}

.paddT60 {
    padding-top: 60px;
}

.paddB60 {
    padding-bottom: 60px;
}

.paddTB60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-primary {
    background-color: var(--bg-primary) !important;
}

.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

.bg-secondary-light {
    background-color: var(--bg-secondary-light);
}
.bg-gray{background-color: #f7f7f7;}

/* For Placeholder Color */

input::-webkit-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

input:-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

input::-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

input:-ms-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea::-webkit-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea:-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea::-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: #666 !important;
    opacity: 1;
}


/* header */

header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    padding: 0 50px;
}

.navbar-logo {
    width: 215px;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 35px;
    padding-bottom: 35px;
    position: relative;
    flex-shrink: 0;
}

.navbar-logo a:first-child {
    margin-bottom: 40px;
}

.navbar-logo::after {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 215px solid transparent;
    border-top: 120px solid var(--black);
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
}

.main-navbar .navbar.bg-dark {
    background-color: transparent !important;
    padding-top: 0;
}

.main-navbar .navbar>div {
    align-items: flex-start;
}


/* #navbarSticky {
    position: fixed;
    top: 0;
    width: 100%;
    transition: top 0.3s;
    padding: 0 50px;
} */

.main-navbar .navbartop {
    justify-content: end;
    margin-top: 30px;
}

.main-navbar .navbar .navbar-nav .nav-item .nav-link {
    color: var(--black);
}

.main-navbar .navbar .navbar-nav .nav-item .nav-link {
    color: var(--black);
    text-transform: uppercase;
    border-right: 1px solid var(--black);
    padding: 0 15px;
    line-height: 11px;
    font-weight: 500;
}

.main-navbar .navbar .navbar-nav .nav-item.active .nav-link,
.main-navbar .navbar .navbar-nav .nav-item:hover .nav-link {
    color: var(--primary);
}

.main-navbar .navbar .navbar-nav .nav-item:last-child .nav-link {
    border-right: none;
    padding-right: 0;
}

.slider-section {
    position: relative;
}

.slider-section img {
    width: 100%;
}

.slider-caption {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
}
.slider-caption h1 {
    color: var(--white);
    font-size: 84px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.slider-caption h3 {
    color: var(--white);
    font-size: 54px;
    font-weight: 500;
    font-family: var(--font-heading);
}

.heading_one {
    color: var(--black);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.heading_two {
    color: var(--black);
    font-size: 36px;
    font-weight: 600;
}

.custom-list {
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
}

.custom-list li:last-child {
    margin-bottom: 0px;
}

.custom-list li:before {
    background-image: url(../images/checkmark.png);
    background-repeat: no-repeat;
    background-position: center top;
    width: 24px;
    height: 24px;
    background-size: 24px;
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
}

.square-animation-img {
    position: relative;
}

.square-animation-img::before {
    content: '';
    width: 72px;
    height: 72px;
    position: absolute;
    background: url(../images/square-shape.svg) no-repeat top center;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}

.threeimage-collage-section.square-animation-img::before {
    left: 8%;
    top: 5%;
}

.objective-section.square-animation-img::before,
.our-devision-section.square-animation-img::before {
    right: 8%;
    top: -2%;
}

.faculty-desk-section.square-animation-img::before {
    left: 8%;
    top: -1%;
}

.vision-mission-section {
    position: relative;
}

.vision-mission-section:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    content: "";
    background-color: var(--bg-primary);
}

.vm-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vm-inner img {
    margin-bottom: 20px;
    height: 100px;
}

.vm-inner img {
    height: 90px;
}

.vm-inner h3 {
    margin-bottom: 10px;
}

.faculties-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.faculties-col div {
    position: relative;
    z-index: 1;
}

.faculties-col::before {
    background-color: var(--white);
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 70%;
    border-radius: 10px;
}

.faculties-col:hover::before {
    background-color: var(--primary);
}

.faculties-col:hover .fac-cont {
    color: var(--white);
}

.fac-cont {
    padding-top: 24px;
}

.fac-cont h3 {
    font-size: 18px;
    text-align: center;
}

.fac-img img {
    border-radius: 10px;
    padding: 0 20px;
}

.division-img img {
    aspect-ratio: 5/3;
    object-fit: cover;
}

.division-cont {
    position: relative;
    margin-top: -60px;
}

.division-cont-inner {
    background-color: var(--primary);
    padding: 30px;
    color: var(--white);
}

.division-cont h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.division-cont p {
    margin-bottom: 5px;
}

footer {
    background-color: var(--black);
    position: relative;
}

footer::after {
    background: url(../images/mail-transparent-bg.svg);
    width: 238px;
    height: 238px;
    background-size: 238px;
    content: "";
    position: absolute;
    right: 10%;
    bottom: 20%;
}

.ftr-menu {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ftr-menu li {
    display: inline-block;
}

.ftr-menu li a {
    color: var(--white);
    border-right: 1px solid #fff;
    padding: 0 10px;
}

.ftr-menu li.active a {
    color: yellow;
    border-right: 1px solid #fff;
    padding: 0 10px;
}

.ftr-menu li:last-child a {
    border-right: none;
    padding-right: 0;
}

.footer-top h3 {
    color: var(--white);
    border-bottom: 2px solid var(--white);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.footer-top p {
    color: var(--white);
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: center;
}

.footer-btm {
    background-color: #b96025;
    padding: 8px 0;
}

.footer-btm p {
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--white);
    font-weight: 400;
    font-size: 13px;
}

.footer-btm p a {
    color: yellow;
}


/* floating icons */

.floating-icons {
    position: fixed;
    right: 10px;
    bottom: 10%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-icons a {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #000;
    -webkit-border-radius: 50%;
    margin-bottom: 5px;
}

.floating-icons a:hover {
    background: var(--primary);
}

.floating-icons a i {
    color: #fff;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.hvr-top {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-top:hover,
.hvr-top:focus,
.hvr-top:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.square-animate-img {
    position: relative;
}

@keyframes floating2 {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}


/* innerpage */

ul.teamlist {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0;
}

ul.teamlist::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    content: "";
    height: 36%;
}

ul.teamlist.type2::after {
    background: var(--bg-secondary);
}

ul.teamlist li {
    position: relative;
    z-index: 1;
    text-align: center;
}

ul.teamlist li .team-thumb {
    margin-bottom: 15px;
}

ul.teamlist li .team-thumb img {
    border-radius: 10px;
}

ul.teamlist li .team-cont h4 {
    font-size: 18px;
    font-weight: 500;
}

ul.teamlist li * {
    color: var(--white);
}

ul.teamlist.type2 li * {
    color: var(--black);
}

ul.teamlist.type2 li .team-cont p {
    color: rgba(0, 0, 0, .7);
}

.teamsingle-section {
    padding-bottom: 245px;
}

.teamsingleimage {
    top: 30%;
    position: relative;
    z-index: 1;
}

.teamsingleimage img {
    border-radius: 20px;
}

.teamsingleouter {
    background-color: var(--bg-secondary-light);
    padding: 35px 30px 30px 30px;
    height: 100%;
    position: relative;
}

.teamsingleouter::after {
    position: absolute;
    bottom: 0;
    right: 100%;
    width: 80%;
    background: var(--bg-secondary);
    content: "";
    height: 85%;
    border-top-left-radius: 20%;
}

ul.team-list {
    padding-left: 0;
    padding-top: 5px;
}

.team-list-section h3 {
    font-size: 20px;
}

.initiatives-overview-section p {
    font-weight: 500;
    margin-bottom: 0;
}

.textwithbg-section {
    position: relative;
}

.textwithbg-section.img1 {
    background: url('../images/intiativesimg1.jpg') center top no-repeat;
    background-size: cover;
    width: 100%;
    height: 310px;
}

.textwithbg-section.img2 {
    background: url('../images/intiativesimg2.jpg') center top no-repeat;
    background-size: cover;
    width: 100%;
    height: 310px;
}

.textwithbg-section img {
    width: 100%;
}

.textwithbg-section::before {
    background-color: rgba(0, 0, 0, .7);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.textwithbg-caption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-section h2 {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 10px;
}

.faq-section .row .col-12 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.faq-section .row .col-12:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

ul.gallerylist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    padding-left: 0;
}

ul.gallerylist li img {
    object-fit: cover;
    aspect-ratio: 5/4;
    border: 1px solid #ddd;
    padding: 5px;
}

ul.socialicons {
    display: flex;
    justify-content: center;
    padding-left: 0;
}

ul.socialicons li {
    padding: 0 10px;
}

ul.socialicons li a {
    display: block;
}

.group-discuss-col {
    border-radius: 15px;
    background: var(--bg-primary);
    color: #fff;
    text-align: center;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.group-discuss-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.group-discuss-col p {
    padding-bottom: 0;
    margin-bottom: 20px;
}

.group-discuss-col img {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.testimonials-col {
    background-color: var(--bg-secondary-light);
    padding: 30px;
    text-align: center;
    height: 100%;
}

.internship-section {
    padding-bottom: 140px;
}

.req-process-section p {
    position: relative;
}

p.step1 {
    top: 6%;
}

p.step2 {
    top: 23%;
}

p.step3 {
    top: 26%;
}

p.step4 {
    top: 40%;
}

p.step5 {
    top: 45%;
}

p.step6 {
    top: 58%;
}


/* 
 */
 .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit:fill;
}
.item.galleryData {
    border: 1px solid #ddd;
    background: #fff;
    padding: 5px;
}