
@import url('https://fonts.cdnfonts.com/css/proxima-nova-2');
:root {
    --header-height: 3rem;
    /*===== Colores =====*/
    --white-color: #E6E7E9;
    /*===== Fuente y tipografia =====*/
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    /*===== z index =====*/
    --z-fixed: 100;
}



@media screen and (min-width: 768px) {
    :root {
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
    }
}

/*===== BASE =====*/
*, ::before, ::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


.body-main {
    font-family: 'Proxima Nova', sans-serif;
    background: #E5E5E5;
}

.body-main3 {
    font-family: 'Proxima Nova', sans-serif;
    background: white;
}


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

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.bd-grid {
    max-width: 1024px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    /* margin-left: 1.5rem;
    margin-right: 1.5rem; */
}

/*===== HEADER =====*/
.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 1.5rem;
    /* background-color: white; */
    z-index: var(--z-fixed);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__logo {
    color: var(--white-color);
}
.header__toggle {
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
}

/*===== NAV =====*/
@media screen and (max-width: 1024px) {
    .nav__lang i{
        display: none;
    }
    .nav__social{
        padding-bottom: 20px;
    }
    .nav{
        position: fixed;
        top: 0;
        left: -100%;
        background: white;
        color: var(--white-color);
        width: 100%;
        height: 100vh;
        padding: 1.5rem 0;
        z-index: 99;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }
}
.nav__content {
    height: 100%;
    -ms-grid-rows: -webkit-max-content 2rem 1fr 2rem -webkit-max-content;
    -ms-grid-rows: max-content 2rem 1fr 2rem max-content;
    grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
    grid-template-rows: max-content 0fr max-content;
    row-gap: 2rem;
}
.nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.3rem;
    padding: 0.25rem;
    background-color: black;
    border-radius: 50%;
    cursor: pointer;

}
.nav__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 0.25rem;
    margin-bottom: 0.8rem;
    width: 114px;
    height: 82px;
    background-color: var(--first-color);
    border-radius: 50%;
    overflow: hidden;
}
.nav__img img {
    width: 91px;
}
.nav__name {
    display: block;
    color: var(--white-color);
}
.nav__profesion {
    font-size: var(--small-font-size);
}
.nav__menu {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    padding-top: 1px;
    display: flex;
    font-family: 'Proxima Nova', sans-serif;
    margin-right: 66px;

}
.nav__item {
    margin: 1.5rem 0;
}
.nav__link {
    color: black;
}
.nav__social {
    padding-top: 6px;
}
.nav__list {
    padding-left: 39px;

}
.nav__social-icon {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-right: 1rem;
}
.nav__social-icon:hover {
    color: var(--first-color);
}

/*Aparecer menu*/
.show {
    left: 0;
}

/*Active menu*/
.active {
    color: #149aa3;
}

/*===== MEDIA QUERIES =====*/
@media screen and (min-width: 1024px) {
    body {
        margin: 0;
    }
    .nav-sm{
        display: none;
    }
    .nav__lang i{
        display: none;
    }
    .nav__social{
        padding-bottom: 20px;
    }
    .header {
        height: calc(var(--header-height) + 1rem);
    }
    .header__logo, .header__toggle {
        display: none;
    }

    .nav
    {
        width: 100%;
    }
    .nav__content {
        -ms-grid-columns: -webkit-max-content 1rem -webkit-max-content 1rem -webkit-max-content;
        -ms-grid-columns: max-content 1rem max-content 1rem max-content;
        grid-template-columns: repeat(3, -webkit-max-content);
        grid-template-columns: repeat(3, max-content);
        -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
        -webkit-column-gap: 1rem;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .nav__content > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .nav__content > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .nav__content > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .nav__close, .nav__profesion {
        display: none;
    }
    .nav__perfil {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .nav__img {
        width: 77px;
        height: 58px;
        margin-right: 0.5rem;
        margin-bottom: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .nav__img img {
        width: 90px;
    }
    .nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        transition: all 0.5ms;
    }


    .nav__item {
        margin: 0 0.25rem;
    }
    .nav__link {
        font-size: 15px;
        margin: 0.5rem 0.8rem;
        border-radius: 0.25rem;
        color: #9A9A9A;
    }

    .nav__link:hover{
        color: black;
        text-decoration: none;
    }


    .active {
        font-size: 15px;
        line-height: 22px;
        color: #1B2D35;

    }
}

.h-lang {
    margin-left: 15px;
    position: relative;
    top: 10px;
    padding: 2px 8px;
    border-radius: 4px;
}
.h-lang .h-lang-link {
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    color: black;
    line-height: 22px;
    letter-spacing: 1px;
}
.h-lang .h-lang-link > i {
    font-size: 19px;
    position: relative;
    top: 1px;
    left: 6px;
    pointer-events: none;
}
.h-lang .h-lang-list {
    position: absolute;
    background-color: #149aa3;
    margin-top: 5px;
    border-radius: 3px;
    /* border: 1px solid #f2f2f2; */
    -webkit-box-shadow: 0 10px 12px rgb(0 0 0 / 10%);
    box-shadow: 0 10px 12px rgb(0 0 0 / 10%);
    overflow: hidden;
    list-style-type: none;
    margin-left: -12px;
    z-index: 9999;
    padding: 6px;
    right: -9px;
}
.h-lang .h-lang-list li a {
    font-size: 12px;
    color: white;
    width: 100%;
    display: block;
    text-decoration: none;
    padding: 7px 13.5px;
    white-space: nowrap;
}
.h-lang .h-lang-list li a:hover {
    background: none;
    border-radius: 4px;
    transition: 0.3s all;
}
.h-lang .h-lang-list li:last-child {
    border-top: 1px solid #eee;
    margin-top: 3px;
}
.h-lang .h-lang-list li:last-child a {
    margin-top: 2px;
}

.banner{
    position: relative;
    padding: 0px 0px 40px 0px;
    font-family: 'Proxima Nova', sans-serif;
    z-index: 10;
}

.bg-intro {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.bg-intro img {
    border-radius: 0 0 20px 20px;
}

.banner-img {
    background-size: contain;
    height: 592px;
    background-repeat: no-repeat;
    position: relative;
    left: 63px;

}

.arrow img {
    position: absolute;
    right: -60px;
    bottom: -10px;
}

.banner-inner{
    padding-top: 250px;
}

.banner-title h1  {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 86px;
    color: #1B2D35;
}

.banner-title p {
    font-weight: 800;
    font-size: 64px;
    line-height: 69px;
    color: #149aa3;
    letter-spacing: 1px;
}

.banner-title {
    margin-bottom: 55px;
}
.banner-text{
    margin-bottom: 51px;
}

.banner-text p{
    font-weight: 600;
    font-size: 16px;
    line-height:33px;
    text-transform: capitalize;
    color: #9A9A9A;
    letter-spacing: 0.4px;
}

.banner-link a{
    color: white;
    padding: 20px 47px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    background: #149AA3;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.15);
    border-radius: 10px;
}

.individual p {
    font-weight: 500;
    font-size: 20px;
    line-height: 34px;
    color: #1B2D35;
    padding: 11px 10px;
    margin: 0px!important;
}

.individual {
    background: #FFFFFF;
    backdrop-filter: blur(42px);
    border-radius: 10px;
    width: fit-content;
    position: absolute;
    top: 212px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.qual {
    background: #FFFFFF;
    backdrop-filter: blur(42px);
    border-radius: 10px;
    width: fit-content;
    position: absolute;
    bottom: -15px;
    right: -39px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qual p {
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    color: #1B2D35;
    padding: 12px 15px;
    margin: 0px!important;
}

.count-wrapper {
    display: flex;
    justify-content: center;
}

.count-wrapper img {
    margin-right: 24px;
}

.category {
    display: block;
}
.num {
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    color: #149AA3;
}

.category {
    text-align: left;
    color: #9A9A9A;

}
.count-row{
    position: relative;
    background: #FFFFFF;
    border: 1px solid #DFDFDF;
    box-sizing: border-box;
    box-shadow: 0px 19px 20px rgba(20, 154, 163, 0.08);
    border-radius: 10px;
    padding: 18px 15px  18px  15px;
    margin-top: 90px;
}


.section-inner {
    background: linear-gradient(180deg, #EDFFFC 0%, rgba(237, 255, 252, 0) 100%);
    border-radius: 30px;
}

.sections {
    margin: 0px 252px;

}

.section-inner {
    padding: 40px 100px;
}

.arrow-section {
    position: absolute;
    left: 33%;
    bottom: -22%;
}

.part-inner {
    margin-top: 35px;
    display: flex;
    align-content: center;

}


.section-part:first-child{
    margin-top: 35px;
}

.section-part {
    padding: 2px 15px;
    margin-bottom: 20px;
    transition: all 0.5s;
}

.section-part:hover {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.3);
    border-radius: 10px;
}

.section-part.active {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.3);
    border-radius: 10px;
}

.section-inner h2{
    display: inline-block;
    margin-top: 30px;

}

.part-text {
    margin-left: 15px;
    margin-top: 3px;
}

.section-left {
    background: #5BB9BF;
    border-radius: 20px 0px 0px 20px;
    height: 365px;
}
.left-img {
    z-index: 1;
}

.left-img img {
    opacity: 0.3;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
}

.left-text {
    position: relative;
    top: 84px;
    padding-left: 46px;
    z-index: 9;
    padding-right: 150px;
}

.section-left{
    overflow: hidden;
    position: relative;
    left: 26%;
    top: 10%;
}

.left-text p {
    line-height: 30px;
    color: white;
    font-size: 18px;
}

.sliders {
    font-family: 'Proxima Nova', sans-serif;
}

.swiper-container.one {
    height: 580px;
    padding: 0 0 80px 0;
}

.sliders .title span {
    color: #149AA3;
}

.sliders .title{
    text-align: center;
    margin: 60px 0px;

}

.sliders .title h1{
    font-weight: bold;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index:99;
    background-size: cover;
    background-position: center;
}

.swiper-slide .overlay {
    width: 100%;
    height: 500px;
    background-color: #1B2D35;
    position: absolute;
    top: 0;
    left: 0;
    z-index:999;
    opacity: 0.4;
}

.text h3{
    font-weight: 500;
    font-size: 24px;
    line-height: 170%;
    text-align: center;
    color: #FFFFFF;
}

.text p {
    font-weight: 500;
    font-size: 24px;
    line-height: 170%;
    text-align: center;
    color: #d7fbfd;
}

.text {
    font-family: 'Proxima Nova', sans-serif;
    position: absolute;
    bottom: 0;
    z-index: 9999;
    margin: 0 auto;
    width: 100%;
}

.sliders {
    padding: 30px 0px;
}

.services {
    background: rgba(20, 154, 163, 0.7);
    padding: 200px 0px;
}

.service{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    border-radius: 10px;
    padding: 26px 18px 18px 72px;
    transition: all 0.3s;
    height: 100%;
}


.services-title p {
    font-weight: 600;
    font-size: 40px;
    line-height: 180%;
    color: #FFFFFF;
    text-align: center;
}

.service-title p {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    /*line-height: 180%;*/
    color: #FFFFFF;
}

.service-text p {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #F0F0F0;
}

.service::before{
    content: "";
    position: absolute;
    height: 30px;
    width: 30px;
    border: 1px solid white;
    border-radius: 50%;
    top: 35px;
    left: 35px;
}

.nav-link .service-tab::before{
    content: "";
    position: absolute;
    height: 21px;
    width: 21px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 16px;
    left: 15px;
}


.nav-link.active .service-tab::before{
    content: "";
    position: absolute;
    height: 21px;
    width: 21px;
    border: 2px solid #5BB9BF;
    border-radius: 50%;
    top: 16px;
    left: 15px;
}

/* .nav-link .service-tab::before{
  content: "";
  position: absolute;
  height: 21px;
  width: 21px;
  border: 1px solid white;
  border-radius: 50%;
  top: 16px;
  left: 35px;
} */

.nav-link .service-tab .tab-text-s {
    font-size: 13px;
    color: white;
}

.service-tab .service-title {
    padding-left: 37px;
}

.service-tab .service-title p{
    font-size: 16px;
    color: white;
}

.tab-text-s{
    font-size: 13px;
    color: white;
    margin-left: 30px;
}

.services .nav-link{
    box-sizing: border-box;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.service:hover {
    background: white;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.3);

}

.service:hover p{
    color: #149aa3;
    text-decoration: none;
}

.service:hover::before {
    border: 1px solid #149AA3;
}

.services-icon {
    position: absolute;
    left: 315px;
}

.services a:hover {
    text-decoration: none;
}

.services-link {
    color: white;
    text-align: center;
    width: fit-content;
    display: block;
    margin: 0 auto;
    padding-top: 50px;
}

.services-link:hover {
    color: white;
}

.courses-title p {
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 20px;
    color: #149AA3;
}

.courses-text p {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    margin-bottom: 50px;
    color: #9A9A9A;
}

.courses-link {
    background: #149AA3;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.15);
    border-radius: 10px;
    width: fit-content;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    color: #FFFFFF;
    margin: 50px auto;
    display: block;
}

.courses {
    padding: 100px 0px 50px 0;
}

.right-course {
    background-size: cover;
    /*height: 605px;*/
}

.course-img {
    position: relative;
    right: 22px;
    padding-bottom: 20px;
}

.course-imat{
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.08);
    border-radius: 10px;
    padding: 15px 25px;
}

.course-title p {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #1B2D35;
}

.course-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #9A9A9A;
}

.course-link{
    text-align: right;
    display: block;
}

.right-course a:hover{
    text-decoration: none;
}

.course-imat {
    margin-bottom: 18px;
}

.arrow-course {
    position: absolute;
    left: 187px;
}

.news-img{
    background-size: cover;
    height: 200px;
    background-position: top center;
    border-radius: 10px 10px 0px 0px;
    background-repeat: no-repeat;
}

.bottom-news{
    padding: 15px 20px;
}

.news-title p {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 170%;
    color: #1B2D35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-text p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #1b2d35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link{
    display: flex;
    justify-content: space-between;
}

.date p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #149AA3;
    margin: 0;
}

.news-contain{
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.08);
    border-radius: 14px 14px 10px 10px;
}

.news a:hover {
    text-decoration: none;
}

.news-header p {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 46px;
    color: #149AA3;
    text-align: center;
    padding-bottom: 30px;
}



.see a{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: #1B2D35;
    width: fit-content;

}

.see {
    text-align: end;
    padding-top: 19px;
}

.see a:hover {
    color: #149aa3;
}

.two .swiper-icon {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 40px 0px;
    position: absolute;
    z-index: -1;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 186px;
}

.swiper-container.two {
    height: 600px;
    padding: 0 0 129px 0;
}


/* .swiper-container.two {
  height: 600px;
} */

.two .swiper-slide {
    background: #FFFFFF;
    padding: 20px;

}

.two.swiper-slide-active{
    margin: 0px 40px!important;
}


.test-text {
    text-align: left;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    color: #1B2D35;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*.testimonial .test-text:after{*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: 130px;*/
/*  background: #149aa3;*/
/*  height: 2px;*/
/*  width: 43px;*/
/*  left: 45%;*/
/*  border-radius: 3px;*/
/*  margin-top: 30px;*/
/*}*/

.testimonial .slider-image {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    border-radius: 10px;
    width: 264px;
    text-align: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial .slider-image img{
    object-fit: cover;
    height: 356px;
    width: 100%;
}

.two .swiper-slide{
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.08);
    border-radius: 10px;
}

.testimonial .container {
    background-size: cover;
    padding: 40px 0px;
}

.testimonial .swiper-wrapper {
    margin-top: 80px;
}


.testi-header p{
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 170%;
    color: #149AA3;
    text-align: center;
}

.test-author p{
    position: relative;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 150%;
    color: #FFF;
    padding: 15px 0;
    margin-bottom: 0;
}

.test-author{
    width: 100%;
    z-index: 5;
}

.test-author:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 24px 0;
    background: rgba(27, 45, 53, 0.2);
    backdrop-filter: blur(40px);
    border-radius: 10px;

}

.author-position {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 13px;
}

.author-position p{
    font-size: 14px;
    font-weight: 500;
    color: #149AA3;
    margin-left: 10px;
}

.author-position img {
    width: 24px;
    opacity: .6;
}

.swiper-pagination-bullet {
    background: #a99c9c;
    border-radius: 2.5px;
    height: 5px;
    width: 25px;
}

.swiper-pagination-bullet-active {
    background: #149AA3;
    border-radius: 2.5px;
    height: 5px;
    width: 34px;
}

.swiper-pagination{
    bottom: 40px;
}

/*.apply-edu {*/
/*  background: #FFFFFF;*/
/*  backdrop-filter: blur(42px);*/
/*  border-radius: 10px;*/
/*  background: linear-gradient(152.97deg, rgba(255, 245, 245, 0.2) 0%, rgba(255, 255, 255, 0) 100%);*/
/*  padding: 45px 20px ;*/
/*  height: 300px;*/
/*  }*/

.ellipse-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(4px);
}

.ellipse-2 {
    position: absolute;
    bottom:0;
    right: 0;
    z-index: -1;
    filter: blur(4px);
}

.edu-title p {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 57px;
    color: #FFF;
    text-align: center;
}

.edu-text p{
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 40px;
    color: #FFF;
    text-align: center;
}

.apply-edu a {
    padding: 11px 24px;
    color: white;
    background: #149AA3;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    width: fit-content;
    display: block;
    margin: 46px auto 0 auto;
}

.apply-edu a:hover{
    text-decoration: none;
    color: white
}

.edu-title{
    margin-bottom: 33px;
}

.apply-edu a i {
    padding-left: 20px;
}

.tabs-link{
    position: relative;
    padding: 11px 24px;
    color: #149AA3;
    background: transparent;
    border-radius: 10px;
    text-align: center;
    width: fit-content;
    display: block;
    margin: 46px auto;
    border: 1px solid #149AA3;
}

.tabs-link i {
    padding-left: 20px;
}

.tabs-link:hover{
    text-decoration: none;
    color: #5BB9BF;
}

footer{
    background: #149AA3;
    padding: 50px 0px;
    position: relative;
}

.footer-text{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    padding: 20px 0px;

}

.contact a {
    text-decoration: none;
    color: white;
    margin: 20px 0px 0px 0px;
    display: block;
}

.contact a:hover {
    text-decoration: none;
    color: white;
}

.contact a img {
    padding-right: 15px;
}

.contact-part {
    margin: 45px 0px;
}

.social-parts a{
    margin-right: 28px;
}

.social-parts a:hover{
    text-decoration: none;
}

.text-side {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #FFFFFF;
    padding-top: 13px;
}

.side-link {
    padding-top: 30px;
}

.side-link li a {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: white;
}

.side-link li a:hover{
    text-decoration: none;
}
.side-link li {
    padding-top: 10px;
}

.footer-icon {
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}


.about-us{
    background-color: rgba(20, 154, 163, 0.05);
    margin-top: 120px;
    /* position: absolute; */
    /* width: 100%; */
    height: 239px;
    /* left: 0px; */
    /* margin-top: 120px; */
    font-family: 'Proxima Nova', sans-serif;
}
.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.right{
    padding-top: 40px;
}
.right span{
    color: #9A9A9A;
}
.bf{
    font-size: 16px;
    color: #1B2D35 !important;
    position: relative;
    padding-right: 20px;
}
.bf::after{
    content:'' ;
    position: absolute;
    top: 8px;
    left: 86%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #C4C4C4;

}
.right p{
    color: #1b2d35;
}
.us{
    padding-top: 24px;
    font-size: 40px;
    color: #149AA3 !important;
    font-style: normal;
    font-weight: bold;
    margin-bottom: 8px !important;
}
.c-black{
    color: black !important;
}
.left{
    padding-top: 35px;
}
.main{
    padding-top: 80px;
}
.img-r img{
    padding-top: 32px;
}
.tables{
    padding-top: 32px;
    font-family: 'Proxima Nova', sans-serif;
}
.tables .table {
    width: 80%;
}
.table h3{
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    color: #149AA3;
}
.table span{
    font-size: 24px;
    color: #C4C4C4;
}
.table p{
    font-weight: normal;
    font-size: 16px;
    line-height: 180%;
    padding-top: 32px;
}
.styles{
    padding-top: 50px;
}
.town{
    font-family: 'Proxima Nova', sans-serif;
    margin-top: 104px;
    background-color: rgba(20, 154, 163, 0.05);
    position: relative;
    height: 266px;
}
.union{
    position: absolute;
    bottom: 0;
    left: 0;
}
.unions{
    position: absolute;
    bottom: 0;
    right: 0;
}
.town .body{
    padding-top: 64px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.town .body p{
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #1B2D35;
}
.town .body button{
    margin-top: 48px;
    width: 255px;
    height: 56px;
    background-color:#149AA3 ;
    border-radius: 10px;
    /* font-weight: 500; */
    font-size: 20px;
    line-height: 34px;
    color: #EDEDED;
}
.ar-right{
    padding-left: 10px;
}
.univerTables{
    font-family: 'Proxima Nova', sans-serif;
}
.univerTable{
    padding-top: 64px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}
.univerTable .left{
    /*padding-top: 0 !important;*/
    width: 50%;
    padding: 15px;
}
.univerTable img{
    width: 100%;
}
.univerTable .lefts{
    width: 50%;
    padding-top: 0 !important;
    text-align: end;
}
.univerTable .left h3{
    font-weight: 500;
    font-size: 32px;
    line-height: 45px;
    color: #1B2D35;
}
.univerTable .left span{
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;

    color: #149AA3;
}
.univerTable .left p{
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    margin-top: 16px;
    margin-bottom: 10px !important;
    color: #9A9A9A;
}
.univerTable .left  a{
    display: inline-flex;
    background-color:#149AA3 ;
    border-radius: 10px;
    font-size: 16px;
    line-height: 23px;
    color: #FFFFFF;
    padding: 14px 16px;
    margin-top: 15px;
}

.univerTable .lefts  a{
    height: 47px;
    background-color:#149AA3 ;
    border-radius: 10px;
    font-size: 16px;
    line-height: 23px;
    color: #FFFFFF;
    padding: 14px 16px;
}

.univerTable .right {
    /*padding-top: 0 !important;*/
    width: 50%;
    padding: 15px;
}

.tabs-section{
    background: linear-gradient(180deg, #91c9bf 0%, rgba(237, 255, 252, 0) 100%);
    padding: 20px 0px;
}

.tabs-section .card-body{
    background-color: rgb(91 185 191 / 50%);
    border-radius: 20px;
    padding: 25px;
}

.card{
    background-color: transparent!important;
    background-clip: var(--normal-font-size)!important;
    border: none!important;
    border-radius: var(--normal-font-size)!important;
}

.nav-tabs{
    border-bottom: none!important;
}

.card-header{
    border-bottom:none!important;
    background-color: transparent!important;
    margin: 20px 0px!important;
    z-index: 10;
}

.tabs-section.nav-tabs .nav-link.active {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.3);
    border-radius: 10px;
}

.tabs-section.nav-tabs .nav-link.active  .tab-icon{
    background: rgba(20, 154, 163, 0.1);
    border-radius: 50%;
    padding: 15px 11px;
}

.services .nav-link.active{
    background: #5BB9BF;
    color: white;
}


.nav-tabs .nav-link{
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: #1B2D35;
    border: none;
}

.nav-tabs .nav-item {
    margin-right: 30px;
}

.services .nav-tabs .nav-item{
    display: inline-block;
    /* width: 22%; */
    margin-bottom: 30px;
}

/* .sections-slider .nav-link span{
    padding-left: 80px;

} */

.tabs-section2 .nav-tabs .nav-link.active {
    justify-content: unset;
}

.nav-tabs .nav-link:hover {
    border: none;
}

.nav-tabs .nav-link:focus {
    outline: none;
}

.tab-text p{
    text-align: left;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 180%;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.tab-text img{
    width: 100%;
    height: auto;
}

.tab-inners{
    padding: 20px;
}

.tab-text:first-child{
    margin-bottom: 60px;
}

.about-us .left{
    opacity: 0.2;
}


.tab-union {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    opacity: 0.3;
}

.services{
    background:#5BB9BF;
}



/* .services .nav-link.active{
  background: white;
  border: 1px solid white!important;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s;

} */


.nav-link.active .service-title p {
    color: #1B2D35 !important;
}

.services .nav-link.active p{
    color: #9A9A9A;
}

.services .nav-link:hover p{
    color: #5BB9BF;
}

.tab-uni {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    color: #FFFFFF;
    padding: 10px 15px;
    background-color: #149AA3;
    text-align: left;
    border-radius: 5px;
    margin-top: 20px;
}

.tab-service-link{
    display: flex;
}

.tab-uni:hover{
    color: white;
    text-decoration: none;
}


.services .tab-inners{
    padding: 0 !important;
}

.tab-img-s{
    position: absolute;
    top: -110px;
    left: -70px;
}

.courses .slider-image {
    display: flex;
    justify-content: flex-end;

}

.courses .test-text p {
    text-align: left;
}

.feedbacks-info-right {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 326px;
    margin-left: 280px;
    margin-top: 32px;
}

.courses .slide-1{
    background: #DDFFE6!important;
}

.courses .test-header {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 170%;
    color: #1B2D35;
}

.courses .test-text p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 160%;
    color: #9A9A9A;

}

.slide-1 .about-course {
    background: rgba(27, 45, 53, 0.05);
    border-radius: 28.5px;
    padding: 10px 15px;
    margin: 0;
    display: block;
    font-size: 14px;
    width: fit-content;
    text-decoration: none;
    color: black;
    transition: all 1ms;
}

.slide-1 .about-course:hover {
    background: #0DB63A;
    border-radius: 28.5px;
    color: white;
}

.slide-2 .about-course {
    background: #149AA3;;
    border-radius: 28.5px;
    padding: 10px 15px;
    margin: 0
    display: block;
    font-size: 14px;
    width: fit-content;
    text-decoration: none;
    color: white;
    transition: all 1ms;
}

.slide-2 .about-course:hover {
    background:#149AA3;
    border-radius: 28.5px;
    color: white;
}

.courses .slide-2 {
    background: #CEFCFF;
}

.courses .slide-3{
    background: #DEEBFF;
}

.slide-3 .about-course {
    background: rgba(27, 45, 53, 0.05);
    border-radius: 28.5px;
    padding: 10px 15px;
    margin: 0
    display: block;
    font-size: 14px;
    width: fit-content;
    text-decoration: none;
    color: black;
    transition: all 5ms;
}

.slide-3 .about-course:hover {
    background: #326BC0;
    border-radius: 28.5px;
    color: white;
}

.courses .slide-4{
    background: #E6DBFF;
}

.slide-4 .about-course {
    background: rgba(27, 45, 53, 0.05);
    border-radius: 28.5px;
    padding: 10px 15px;
    margin: 0
    display: block;
    font-size: 14px;
    width: fit-content;
    text-decoration: none;
    color: black;
    transition: all 5ms;
}

.slide-4 .about-course:hover {
    background: #6F4BC2;
    border-radius: 28.5px;
    color: white;
}

.course-apply{
    padding: 7px 15px;
    display: block;
    font-size: 14px;
    width: fit-content;
    text-decoration: none;
    color: white;
    transition: all 1ms;
    margin-left: 20px;
    margin-top: 19px;
    background: #149AA3;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.1);
    border-radius: 10px;
}

.apply-now {
    display: flex;
    align-items: center;
    align-content: center;
}

.course-apply:hover {
    text-decoration: none;
    color: white;
}

.courses-section {
    background: white;
    padding: 100px 0px;
}

.courses-section .nav-link.active {
    background: #5BB9BF!important;
    border-radius: 10px;
    color: white!important;
}

.courses-section .nav-link {
    background: rgba(20, 154, 163, 0.05);
    border-radius: 10px;
    color: #149aa3;
}

.courses-section .nav-item {
    margin-bottom: 25px!important;
}

.courses-section .nav-tabs .nav-link {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    border: none;
}

.courses-section .nav-tabs .nav-link.active{
    height: auto !important;
}

.header-course p {
    text-align: left;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 180%;
    color: #1B2D35;

}

.text-course p {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 180%;
    color: #9A9A9A;
    text-align: left;
}

.punct-course p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    color: #9A9A9A;
    text-align: left;
}

/* .punct-course p:after{
  content: "";
  position: absolute;
  background-color: #149aa3;
  left: 31px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
} */

.apply-imat {
    margin-left: 0!important;
    margin-top: 45px!important;
}

.news-inner {
    padding: 80px 0px;
    margin-bottom: 20px;
}

.news-link-in{
    margin-bottom: 25px;
    display: block;
}

.next-page {
    padding: 7px 15px;
    display: block;
    font-size: 14px;
    width: fit-content;
    text-decoration: none;
    color: white;
    transition: all 1ms;
    margin-left: 20px;
    margin-top: 19px;
    background: #149AA3;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.1);
    border-radius: 10px;
    margin: 0 auto;
}

.next-page:hover{
    color: white;
}

.pagination-news {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.num-1
{
    border: 1px solid #9A9A9A;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 1px 13px;
    color: #9A9A9A;
}

.pagination-news span {
    margin-right: 6px;
}

.num-2
{
    color: #9A9A9A;
}

.arrow-1{
    background: #F4F4F4;
    padding: 1px 8px;
}

.arrow-1 i {
    color: #9a9a9a;
}

.arrow-2{
    background: #E2E2E2;
}

.arrow-2 i {
    color:#9A9A9A;
    padding: 5px 8px;
}

.univerTable .lefts span {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #149AA3;
}

.univerTable .lefts p {
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    margin-top: 16px;
    margin-bottom: 40px !important;
    color: #9A9A9A;
}

.univerTable .lefts button {
    /* margin-top: 48px; */
    width: 125px;
    height: 47px;
    background-color: #149AA3;
    border-radius: 10px;
    /* font-weight: 500; */
    font-size: 16px;
    line-height: 23px;
    color: #FFFFFF;
}

.univerTables{
    padding: 100px 0px;
}

.information{
    padding: 56px 0px;
    font-family: 'Proxima Nova', sans-serif;
}
.info-text h3{
    font-weight: 500;
    font-size: 32px;
    line-height: 45px;
    color: #1B2D35;
}
.info-text p{
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    color: #212529;
    padding-top: 20px;
    margin: 0 !important;
}
.info-text ul li{
    position: relative;
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    color: #212529;
}
.info-text ul li::after{
    content: '';
    position: absolute;
    top: 10px;
    left: -19px;
    width: 6px;
    height: 6px;
    background: #149AA3;
    border-radius: 50%;
}
.info-text .list {
    padding-left: 21px;
}

.info-text>ul {
    padding-left: 21px;
}

.form-drop{
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(20, 154, 163, 0.08);
    border-radius: 40px;
    padding: 40px;
}


.form-drop .logo-img{
    width: 100px;
    text-align: center;
}

button {
    border: none;
    outline: none;
}
.form-drop input{
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    color: #9A9A9A;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 32px !important;
    outline: none;
    transition: .2s all ease-in-out;
}

.form-drop select{
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    box-sizing: border-box;
    border-radius: 10px;
    outline: none;
    margin-bottom: 32px !important;
    width: 100%;
    padding: 1rem;
}


.form-drop input:focus-visible, .form-drop select:focus-visible {
    border-color: #149AA3;
}

.drop-list{
    background: #FFFFFF;
    border: 1px solid #BA6F6F;
    box-sizing: border-box;
    border-radius: 10px;
    height: 48px;
    display: flex;
    align-items: center;
    padding: .5rem;
    justify-content: space-between;
}
.form-drop .pls{
    padding-top: 8px;
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    color: #BA6F6F;
}
.form-drop button{
    /* margin-top: 48px; */
    height: 56px;
    background-color: #149AA3;
    border-radius: 10px;
    /* font-weight: 500; */
    font-size: 17px;
    line-height: 29px;
    padding: 6px 37px;
    color: #EDEDED;
    width: 100%;
}

#info-minimized button {
    background-color: #f3fafa;
    border-radius: 10px;
    font-size: 17px;
    line-height: 29px;
    padding: 6px 37px;
    color: #149AA3;
}

.btn-minimize {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}

.contact .colorP {
    padding-top: 20px;
    font-weight: normal;
    font-size: 20px;
    line-height: 170%;
    color: #9A9A9A;
    margin-bottom: 48px;
}
.inHeight{
    display: block;
    width: 100%;
    padding: 13px 24px;
    border-color: #EEEEEE;
}
.contact-textarea{
    height: 180px;
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 32px !important;
    resize: none;
    padding: 1rem;
}

.contact-textarea:focus {
    border: 1px solid #149AA3;
    outline: none;
}

.contactBox{
    position: relative;
    margin-bottom: 40px;
    padding-left: 15px;
}
.contactBox::after{
    content: '';
    position: absolute;
    top: 33px;
    left: -37px;
    background: #149AA3;
    border-radius: 2.5px;
    width: 81px;
    height: 2px;
    transform: rotate(90deg);
}
.social ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 159.78px;
}
.social ul li{
    width: 31.96px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 50%;
    background: #149AA3;
}
.social ul li i{
    color: white;
}
.contactBox p{
    font-size: 16px;
    line-height: 23px;
    color: #9A9A9A;
    margin-bottom: 10px !important;
}
.colorBlk{
    font-weight: normal;
    font-size: 20px !important;
    line-height: 34px !important;
    color: #1B2D35 !important;
}
.edu{
    font-family: 'Proxima Nova', sans-serif;
}
.edu1{
    position: relative;
    background-image: url('../img/Mask\ Group\ \(5\).jpg');
    background-size: cover;
    height: 349px;
    margin-top: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    border-radius: 10px 10px 0 0;
    overflow: hidden;

}
.edu1 h3{
    font-size: 40px;
    font-weight: 600;
    z-index: 99;
    color: white;
}
.edu1::after{
    content:'' ;
    position: absolute;
    width: 100%;
    height: 349px;
    top: 0;
    left: 0;
    background-size: cover;

    background-color: rgb(0 0 0 / 30%);
}
.date{
    margin-top: 32px;
    font-size: 16px;
    line-height: 150%;
    color: #149AA3;
}
.date i{
    padding-right: 10px;
}
.education{
    font-family: 'Proxima Nova', sans-serif;
}

.education .edu-img{
    margin: 20px 0px;
}
.education p{
    padding: 10px 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    color: #1b2d35;
    margin: 0 !important;
}
.pedu{
    padding-top: 0px !important;
    padding-bottom: 44px !important;
}
.education ul li{
    position: relative;
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
    color: #1b2d35;
}

.news-bottom{
    padding-bottom: 100px;
}


.news-bottom .news-img{
    height: 150px;
}

.news-bottom .date p {
    font-size: 13px;
}
.news-bottom .news-title p {
    font-size: 16px;
}



.news-bottom .news-text p {
    font-size: 14px;
}

    .education ul li::after{
    content: '';
    position: absolute;
    top: 10px;
    left: -19px;
    width: 6px;
    height: 6px;
    background: #149AA3;
    border-radius: 50%;
}
.other-news{
    font-weight: 500;
    font-size: 16px !important ;
    line-height: 170%;
    padding: 30px 0 0 0!important;
    color: #1B2D35 !important;
    text-align: start !important;
}

.services .nav {
    /* display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    padding-left: 0!important;
    margin-bottom: 0!important;
    list-style: none!important; */
}

@media screen and (max-width: 1024px){
    .tabs-section1{
        margin: 50px 15px;
    }
    .tabs-section{
        padding: 30px 0;
    }
    .card-body1{
        height: 100% !important;
        width: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }
    .services .nav {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem 0;
        transition: 0.5s;
        background: transparent!important;
        z-index: 0;
        height: auto!important;
    }
    .tabs-section .nav{
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem 0;
        transition: 0.5s;
        background: transparent!important;
        z-index: 0;
        height: auto!important;
        padding: 0;
    }
}


.message {
    padding: 100px 0px;
}

.sent-message{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0px 50px 0px;
}

.sent-message img{
    height: 30vh;
}

.message-inner p {
    text-align: center;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 170%;
    color: #9A9A9A;
}

.univerTables .pagination-news{
    display:flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 100px auto 20px auto;
}

.cardI{
    flex-direction: inherit !important;
}
.tabs-section1{
    background: linear-gradient(180deg, #EDFFFC 0%, rgba(237, 255, 252, 0) 100%);
    border-radius: 30px;
    margin: 0px 242px;
}
.active1{
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(20 154 163 / 30%);
    border-radius: 10px;
    height: 82px;
    width: 470px;
}

.card-body1{
    overflow: auto;
    position: relative;
    left: 26%;
    top: 10%;
    border-radius: 20px 0px 0px 20px !important;
    margin-top: 40px;
    width: 672px !important;
    height: 376px !important;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    background-position: bottom;
}

.card-body1::-webkit-scrollbar {
     width: 4px;
 }

.card-body1::-webkit-scrollbar-track {
     -webkit-box-shadow: inset 0 0 2px #4d9ba0;
 }

.card-body1::-webkit-scrollbar-thumb {
     background-color: #FFFFFF;
     outline: 2px solid #FFFFFF;
 }

.card-body1 .left-img{
    display: none;
}

.cardI .nav-link{
    display: flex;
    align-items: center;
    width: 100%;
    /*text-align: center;*/
    border-radius: 10px !important;
}
.cardI .tab-icon{
    width: 32px;
    /* font-size: 20px; */
    height: 28px;
    /* margin-right: 10px; */
}
.cardI .card-header{
    margin: 0 !important;
}
.cardI li{
    height: 82px;
    margin-bottom: 20px;
}
.cardI .left-img img{
    opacity: 0.3;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
}
.cardI .card-header{
    padding: 0 !important;
}
.call1{
    position: absolute;
    left: -100px;
}
.card-header .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{
    /*background: #FFFFFF !important;*/
    box-shadow: 0px 4px 20px rgb(20 154 163 / 30%) !important;
    border-radius: 10px !important;
    padding: 10px 16px;
    height: unset;
    border: none;
    /*width: 470px !important;*/
}

.card-header .nav-tabs .nav-link:hover{
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(20 154 163 / 30%) !important;
    border-radius: 10px !important;
    height: unset;
    border: none;
    /*width: 470px !important;*/
}

.tabs-section2 .nav-tabs .nav-link.active, .tabs-section2 .nav-tabs .nav-item.show .nav-link{
    display: flex;
    align-items: center;
    background: #FFFFFF !important;
    box-shadow: 0px 4px 20px rgb(20 154 163 / 30%) !important;
    border-radius: 10px !important;
    /*height: 76px !important;*/
    /*width: 255px !important;*/
}

.tabs-section2 .nav-tabs .nav-link{
    height: unset;
    min-height: 70px;
    padding: 10px 16px;
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.tabs-section2 .nav-tabs .nav-link span {
    position: absolute;
    left: 92px;
}


.services .nav-tabs .nav-link.active, .services .nav-tabs .nav-item.show .nav-link{
    height: 100% !important;
    background: #FFFFFF;
    border: 1px solid transparent !important;
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.services .nav-tabs .nav-link{
    height: 100% !important;
    min-height: 140px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    border-radius: 10px;
}

.cardI .navWidth{
    width: 100% !important;
    display: flex;
    justify-content: start !important;
}

.swiperAfter{
    position: relative ;
}
/* .testimonial .test-text:after{
  content: "";
  position: absolute;
  bottom: 130px;
  background: #149aa3;
  height: 2px;
  width: 43px;
  left: 45%;
  border-radius: 3px;
  margin-top: 30px;
} */
.author-position:after{
    content: "";
    position: absolute;
    bottom: 16px;
    background: #149aa3;
    height: 2px;
    width: 83px;
    top: -40px;
    left: 0;
    border-radius: 3px;
    margin-top: 30px;
}

.btn-more-info{
    padding: 0px 12px;
    height: 34px;
    margin: 0 auto;
    display: table;
    background-color: #149AA3;
    border-color: #149AA3;
    color: #FFFFFF;
}

.modal-more-info .info-img{
    width: 140px;
    height: 140px;
    margin: 0px auto 40px auto;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.modal-more-info .author-position:after{
    top: -90px;
    left: 50%;
    transform: translate(-50%, 0);
}



.modal-more-info .test-author p {
    font-size: 18px;
    color: #149AA3;
    padding: 0;
}

.modal-more-info .author-position p {
    font-size: 16px;
    color: #9A9A9A;
}

.modal-more-info .close{
    font-size: 34px;
    padding: 5px 10px;
    display: flex;
    justify-content: flex-end;
}

/* .modal-more-info .info-img img{
    height: 180px;
} */

.modal-more-info .modal-content{
    padding-bottom: 60px;
    position: relative;
}

.modal-more-info .modal-content::after{
    content: '';
    background-image: url(../img/info.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 60px;
    width: 70px;
    left: 10px;
    top: 20px;
    position: absolute;
    opacity: 0.3;
}

.modal-more-info .modal-content::before{
    content: '';
    background-image: url(../img/info.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 60px;
    width: 70px;
    right : 10px;
    bottom: 20px;
    position: absolute;
    opacity: 0.3;
}

.test-text p {
    font-weight: normal;
    font-size: 16px;
    color: #6B6B6B;
}

.test-text-sec p {
    font-weight: normal;
    font-size: 15px;
    text-align: justify;
    color: #1B2D35;
}


.navi .nav-link{
    /*height: 82px;*/
    /*display: flex;*/
    /*margin-bottom: 10px;*/
    /*align-items: center;*/
}

.mh-apply-button {
    transition: ease-in-out 0.5s;
}

.mh-apply-button:disabled {
    opacity: 0.5;
}

@media screen and (max-width: 1024px){
    .tabs-section1{
        margin: 50px 15px;
    }
    .univerTable .left{
        width: 100%;
    }
    .univerTable .right{
        width: 100%;
    }
    .univerTable .lefts{
        width: 100%;
    }
    .univerTable .rights{
        width: 100%;
    }

    .cardI{
        display: block;
    }
    .service{
        height: auto;
    }
    .right-course{
        height: auto;
    }
    .news-text p{
        min-height: auto;
    }
    .cardI li {
    }
    .card-header .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{
        font-size: 15px;
    }
    .courses-section{
        padding: 30px 0;
    }
    .courses-section .nav{
        position: relative;
        left: 0;
        height: auto;
        padding: 0;
    }
    .apply-now {
        flex-direction: column;
        align-items: start;
        margin-bottom: 20px;
    }
    .course-apply{
        margin: 0;
    }

}


@media (min-width: 1024px) and (max-width: 1199px) {
    .card-body1{
        margin-top: 40px !important;
        width: 572px !important;
        height: 376px !important;
        left: 0;
    }
    .tabs-section1{
        margin: 0 190px;
    }
    .nav__menu{
        margin-right: 0;
    }
    .nav__list{
        padding-left: 0;
    }
    .nav-tabs .nav-item{
        margin-right: 25px;
    }

    .nav__link {
        padding: 0;
        margin: 0.5rem 0.4rem;
    }
}
