/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/


@font-face {
    font-family: 'Poppins';
    font-weight: normal;
    src: url(../fonts/Poppins/Poppins-Medium.ttf);
}

@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: 'Poppins';
    font-weight: bold;
    src: url(../fonts/Poppins/Poppins-Bold.ttf);
}

@font-face {
    font-family: 'Nunito Sans';
    font-weight: normal;
    src: url(../fonts/Nunito-Sans-Font/NunitoSans-Regular.ttf);
}

@font-face {
    font-family: 'Nunito Sans';
    font-weight: 500;
    src: url(../fonts/Nunito-Sans-Font/NunitoSans-SemiBold.ttf);
}

@font-face {
    font-family: 'Nunito Sans';
    font-weight: bold;
    src: url(../fonts/Nunito-Sans-Font/NunitoSans-Bold.ttf);
}

:root {
    --color: #061b4a;
    --fuchsia: #e82f51;
    --orange: #ff5a3c;
    --ltn__heading-font: 'Poppins', sans-serif;
    --ltn__body-font: 'Nunito Sans', sans-serif;
}

body {
    font-family: var(--ltn__body-font);
    font-weight: normal;
    color: #103040;
}

.auto-container {
    padding: 0 2em;
}

h1,
h2,
h3,
h4 {
    /*! text-transform: capitalize; */
    font-family: var(--ltn__heading-font);
}

h1,
h2,
h3,
h4 {
    /*! text-transform: capitalize; */
    font-family: var(--ltn__heading-font);
}

.orange {
    color: #ff5a3c;
}

.btn-orange {
    background: #ff5a3c;
    color: #fff;
}

.btn-orange:hover::after {
    width: 100%;
}

.btn-orange:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
}


.btn-grey {
    background: #e5e5e5;
    font-size: 1.2em !important;
    display: block;
    height: 80px !important;
    line-height: 3;
    color: #132b61;
}

.btn-grey:hover::after {
    width: 100%;
}

.btn-grey:after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #132b61;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;

}

.btn-grey:hover a {
    color: #ff5a3c;
}

.helping-column .fa {
    background: #ff5a3c;
    color: #fff;
    padding: 10px;
    border-radius: 100px;
    height: 43px;
    line-height: 1.2;
}



.main a {

    padding: 5px 5px;
    margin: 0 !important;
    font-size: 1em !important;
    line-height: 2.2;
}

h2,
.h2 {
    font-size: 2.3em;
    font-weight: 700;

}

h1,
.h1 {
    font-size: 2.5em;
    line-height: 1.2;
}

h3,
.h3 {
    font-size: 2em;
}

@media (max-width:991px) {
    h1 {
        font-size: 35px;
    }

    h2,
    h3 {
        font-size: 30px;
    }

}

@media (max-width:768px) {
    h1 {
        font-size: 30px;
    }

    h2,
    h3 {
        font-size: 25px;
    }
}

h4,
.h4 {
    font-size: 1.1em;
    font-weight: 550;
    font-family: 'Nunito Sans' !important;
}

p {
    color: var(--ltn__paragraph-color);
    margin-bottom: 1.5em;
    font-size: 1.05em;
    font-weight: 600;
}


.pt-200 {
    padding-top: 200px;
}

.pb-200 {
    padding-bottom: 200px;
}

.intro_section p {
    color: #fff;
}

.pb-120,
.py-120 {
    padding-bottom: 120px;
}

.container {
    /*    max-width: 1200px;*/
    padding-left: 15px;
    padding-right: 15px;
}


/********************Tabs*************************/
.tab-lightbox h2 {
    position: relative;
}


div#myBtnContainer button {
    font-weight: 600;
    font-size: 1.3em;
    transition: all 0.45s ease-in-out;
    margin: 0 10px;
}

div#myBtnContainer button.active {
    color: #ff5a3c;
    border-bottom: 1px solid #ff5a3c;
    transition: all 0.45s ease-in-out;
}

a.glightbox.gallery_product .thumbnail {
    position: relative;
    overflow: hidden;
}

a.glightbox.gallery_product .thumbnail::before {
    background: #0a1240d6;
    border-radius: 5px;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a.glightbox.gallery_product:hover .zoom-icon {
    top: 35%;
    opacity: 1;
    background: #fff;
    color: #ff5a3c;
}

a.glightbox.gallery_product .zoom-icon {
    opacity: 0;
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background-color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: var(--color-primary);
    cursor: pointer;
}

a.glightbox.gallery_product:hover .thumbnail:before {
    opacity: .9;
}

section.tab-lightbox h4 {
    text-align: center;
    margin: 20px 0 10px 0;
    font-size: 1.2em;
    color: #261a1a;
    font-weight: 500;
    font-family: 'Poppins' !important;
    line-height: 1.5;
}

section.tab-lightbox .part a.link-college {
    color: #ff5a3c;
    font-weight: 500;
    font-size: 1em;
    border-bottom: 1px solid;
    width: max-content;
    text-align: center;
    font-family: 'Poppins';
    margin: auto;
    display: block;
    float: none;
    padding-bottom: 0px;
    text-transform: uppercase;
}

section.tab-lightbox .part a.link-college .fa {
    font-size: 15px;
}

section.tab-lightbox .part {
    margin-bottom: 30px;
    padding: 10px;
    background: white;
}

@media (max-width:768px) {
    div#myBtnContainer button {
        font-weight: 600;
        font-size: 14px;
        transition: all 0.45s ease-in-out;
        margin: 0
    }
}

@media (max-width:576px) {
    div#myBtnContainer button {
        font-weight: 600;
        font-size: 12px;
        margin: 0;
        transition: all 0.45s ease-in-out;
    }
}

@media (min-width: 768px) {
    .text-md-center {
        text-align: center !important;
    }
}

.Institutes {
    background: #3f51b51c;
}

.about-two-left {
    overflow: hidden;
    position: relative;
}

.about-two-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.new-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: red;
    padding: 10px;
    color: #ffff;
    font-weight: 600;
}

/*************************footer***************/
ul.footer-logos {
    padding: 0;
    margin: 0;
    display: inline-block;
}

ul.footer-logos li {
    float: left;
    width: 32%;
}

@media (max-width: 576px) {
    ul.footer-logos li {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-widget ul.list-arrow li {
        width: 100% !important;
    }
}



.ltn__blog-meta {
    margin-bottom: 20px;
}

.ltn__blog-meta ul {
    padding: 0;
    margin: 0;
    text-align: center;
}

.ltn__blog-meta li {
    font-weight: 500;
    display: inline-block;
    position: relative;
    font-size: 15px;
    margin-top: 0;
    color: #8c8e90;
    letter-spacing: -0.03em;
}

.ltn__blog-meta li:after {
    content: '|';
    margin: 0 8px;
}

.ltn__blog-meta li:last-child:after {
    content: '';

}

.ltn__blog-meta li:hover {
    color: #ff5a3c;
}


.ltn__blog-meta li:last-child {
    margin-right: 0;
}

.ltn__blog-meta li i {
    color: #ff5a3c;
    margin-right: 5px;
}

.ltn__blog-meta li img {
    margin-bottom: 0;
}

a.glightbox.gallery_product .thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ltn__header-middle-area.ltn__header-sticky.ltn__sticky-bg-white {
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 6px -1px, rgb(0 0 0 / 6%) 0px 2px 4px -1px;
}
