@media (min-width: 1200px) {
    .container {
        max-width: 1420px !important;
    }
}

/************************************************** 
                FONTS
**************************************************/
@font-face {
    font-family: Marlino;
    src: url(../fonts/Marlino.otf);
}

@font-face {
    font-family: NexaLight;
    src: url(../fonts/NexaLight.otf);
}

@font-face {
    font-family: NexaRegular;
    src: url(../fonts/NexaRegular.otf);
}

/************************************************** 
                CSS VERIABLES
**************************************************/
:root {
    --marlino: 'Marlino', Arial, Helvetica, sans-serif;
    --nexa-r: 'NexaRegular', Arial, Helvetica, sans-serif;
    --nexa-l: 'NexaLight', Arial, Helvetica, sans-serif;
    --white-color: #fff;
    --gray-color: #b5b7bd;
    --white-bg: #fff;
    --sky-light-bg: #a3b8d6;
    --sky-dark-bg: #708eb8;
    --sky-dark-color: #708eb8;
    --black-bg: #00071c;
    --black-color: #00071c;
    --glass-size: 65%;
    --icon-height: 7rem;
    --transition-speed: 0.45s;
    --timing-function: cubic-bezier(0.66, 1.51, 0.77, 1.13);
    --font-50:50px;
}


/************************************************** 
                DEFAULT CSS
**************************************************/
body{
   overflow-x: hidden !important;
}
.py_60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--marlino);
}
body, p, a{
    font-family: var(--nexa-l);
    font-size: 17px;
}
.nexRegular{
    font-family: var(--nexa-r);
}
#headerMain .btn_sk_dark, .who_we_are .btn_sk_dark{
    background: var(--sky-dark-bg);
    border-color:var(--sky-dark-color);
    font-size: 17px;
}
.btn_sk_dark:focus, .btn_sk_dark:focus{
    box-shadow: unset !important;
    border: none !important;
}
.pl-150{
    padding-left: 250px;
}
.btn_sk_dark {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.btn_sk_dark:after {
    background: #243c54;
    width: 100%;
    left: 0;
    border-radius: 3px;
    z-index: -1;
    content: '';
    transition: all 0.5s ease;
    height: 0%;
    position: absolute;
    top: 50%;
}

.btn_sk_dark:hover:after {
    transition: all 0.5s ease;
    height: 100%;
    top: 0%;
}
/************************************************** 
                HEADER CSS
**************************************************/
.border_h {
    background: #5a7191;
    width: 1px;
    margin: 0px 40px;
}
#headerMain .search_text {
    padding:0px 30px 0px 10px;
    font-size: 18px !important;
    font-weight: 500;
}

#headerMain a.navbar-brand {
    position: absolute;
    left: 0;
    top: 0;
}
.menu_header ul li {
    padding: 0px 17px;
}
.menu_header ul li  a{
    color:#5c6d86 !important;
    font-weight: 600;
}
.menu_header ul li  a.active{
    color:var(--black-color);
}
#headerMain a.navbar-brand img {
    height: 191px;
}
#headerMain nav{
    height:130px;
}
#headerMain{
    background-color:var(--sky-light-bg);
}
#headerMain .search-icon {
    transition: all var(--transition-speed) linear, border-color 0s linear var(--transition-speed);
    border-color: rgba(255, 255, 255, 0);
    border-radius: 100px;
}

#headerMain .search-icon__wrapper {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    transform: rotate(-45deg);
    transition: all 0 linear;
}

#headerMain .search-icon__wrapper:hover {
    cursor: pointer;
}

#headerMain .search-icon.open .search-icon__wrapper {
    position: absolute;
    border-radius: 100px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
}

#headerMain .search-icon__input {
    background: none;
    text-align: center;
    outline: none;
    display: none;
    border: none;
    background: rgba(255, 255, 255, 0);
    width: calc(100% - (var(--icon-height) / 2 + 1rem));
    margin-right: 6rem;
    height: 100%;
    border-radius: 100px;
    transition: all var(--transition-speed) linear;
    font-size: 18px;
    padding: 0 0.5em;
    color: var(--white-color);
}

#headerMain .search-icon__input::placeholder {
    color: rgba(255, 255, 255, .75);
}

#headerMain .search-icon__glass {
    width:25px;
    height:25px;
    bottom:-13px;
    border: solid 4px;
    border-color:var(--sky-dark-color);
    border-radius: 100px;
    margin: 0 auto;
    position: relative;
    transition: all var(--transition-speed) var(--timing-function) var(--transition-speed), border-color 0s linear var(--transition-speed);
}

#headerMain .search-icon__handle {
    height: 13px;
    width:4px;
    margin: 0 auto;
    background: var(--white-bg);
    position: absolute;
    border-radius: 0 0 100px 100px;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all var(--transition-speed) var(--timing-function);
    transition-delay: var(--transition-speed);
}

#headerMain .search-icon__handle::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--sky-dark-bg);
    transform: rotate(0deg);
    transition: all var(--transition-speed) var(--timing-function);
    transition-delay: 0s;
}

#headerMain .search-icon.open {
    /* width: calc(26vw - 0.5em); */
    border-color:var(--white-bg);
    transition-delay: var(--transition-speed);
    width: 229px;
    background:var(--sky-dark-bg);
    position: relative;
    height: 60px;
}

#headerMain .search-icon.open .search-icon__input {
    transition-delay: var(--transition-speed);
    display: block;
}

#headerMain .search-icon.open .search-icon__glass {
    width: 100%;
    height: 100%;
    transition: all var(--transition-speed) var(--timing-function) 0s, border-color 0s linear var(--transition-speed);
    border-color: rgba(0, 0, 0, 0);
}

#headerMain .search-icon.open .search-icon__handle {
    bottom: calc(50% - (100% - var(--glass-size)) / 2);
    border-radius: 100px;
    transition-delay: 0s;
}

#headerMain .search-icon.open .search-icon__handle::after {
    transition-delay: var(--transition-speed);
    transform: rotate(90deg);
    background: var(--white-bg) !important;
}


/************************************************** 
                BANNER CSS
**************************************************/

.banner_wrapper{
    background: url(../img/bannre.png) no-repeat ;
    background-size: cover;
    background-position: center center;
}
.banner_wrapper .learning_inner h1{
    color: var(--gray-color);
    font-family: var(--nexa-r)!important;
    font-size:25px;
    text-transform: uppercase;
}
.banner_wrapper .learning_inner .form-check label{
    color: var(--gray-color);
}
.banner_wrapper .btn_submit{
    background-color: var(--sky-dark-bg);
    color: var(--white-color);
}
.banner_wrapper .form_email input {
    background: #0000;
    border: none;
    width: 70%;
    text-indent: 20px;
    color:#fff;
}

.banner_wrapper .form_email {
    background: #1a4668;
    display: flex;
    border-radius: 10px;
    height:60px;
    padding: 5px 5px 5px 0px;
    justify-content: space-between;
}
.banner_wrapper .email_wrapper {
    color: var(--gray-color);
}

.banner_wrapper .form_email .btn_submit {
    border-radius: 10px;
    width: 30%;
    border: none;
}

.banner_wrapper .form_email input::placeholder {
    color: #fff;
}
.banner_wrapper .form_email input:focus {
    outline: none;
}
.banner_wrapper .popup_wrapper{
    background: url(../img/Preparing-for-Exam.png) no-repeat;
    background-size: contain;
    background-position: center center;
    min-height: 500px;
    display: flex;
    justify-content: center;
    margin-top:100px;
}
#youtb-popup .modal-content{
    background:transparent;
    border:none;
}
.banner_wrapper .popup_wrapper .playBTn:focus {
    outline: none;
    box-shadow: unset !important;
}

/************************************************** 
                WHO WE ARE
**************************************************/

.who_we_are .info_subtitle p{
    text-transform: uppercase;
    color: var(--gray-color);
    letter-spacing:5px;
}
.who_we_are .info_title h2 span{
    font-family:serif;
}
.who_we_are  .info_title h2 {
    font-weight: 900;
    font-size:var(--font-50);
}
.who_we_are .info_title h2 span, .who_we_are .info_title h2 strong{
    color: var(--sky-dark-color);
}
.who_we_are_img1{
    background: url(../img/img2.png) no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 700px;
    display: flex;
    justify-content: center;
}
.who_we_are .who_we_are_img .playBTn:focus {
    outline: none;
    box-shadow: unset !important;
}
.who_we_are_img2{
    background: url(../img/sdsdsddsd.png) no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 700px;
    display: flex;
    justify-content: center;
}

/************************************************** 
                PRICING CSS
**************************************************/

.pricing .info_title h2{
    font-size: var(--font-50);
    font-weight: 900;
}
.pricing .info_title h2 strong{
    color: var(--sky-dark-color);
}
.pricing{
    background: #f6f7fb;
}
.pricing .pricing_plane {
    border-radius: 15px;
    padding: 30px 30px;
}

.pricing .plane1 {
    background: #faf2d7;
}

.pricing .pricing_plane h4 {
    font-size: 30px !important;
    font-weight: 900;
}   

.pricing .pricing_plane span.amount {
    font-size: 50px;
    font-weight: 900;
    font-family:var(--nexa-r);
    color: #ad9b5d;
}
.pricing .pricing_plane span.mounth {
    font-size: 30px;
    font-weight: 900;
    font-family: var(--marlino);
}

.pricing .btn_color1 {
    background: #ad9b5d;
    border: none;
    padding: 15px 0px;
    border-radius: 10px;
    color: #fff;
}
.pricing ul.price_list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.pricing ul.price_list li i:before {
    background: #e9deba;
    width: 10px;
    height: 10px;
    color: #ad9b5d;
    padding: 5px;
    border-radius: 100%;
    font-size: 11px;
}

.pricing ul.price_list li {
    margin-bottom: 10px;
}

.pricing ul.price_list li span {
    margin-left: 16px;
    color: #ad9b5d;
}
.pricing .plane1 p{
    color: #ad9b5d;
}
.plane2 {
    background: #f7e6e6;
}

.pricing .plane2 span.amount {
    color: #a17272 !important;
}

.pricing .plane2 p {
    color: #a17272;
}

.pricing .plane2 ul.price_list li span {
    color: #a17272;
}

.pricing .plane2 ul.price_list li i:before {
    color: #a17272;
    background: #ead7d7;
}

.pricing .plane2 button {
    background: #a17272;
}
.plane3 {
    background: #ebffdc;
}

.pricing .plane3 span.amount {
    color: #81b55c !important;
}

.pricing .plane3 p {
    color: #81b55c;
}

.pricing .plane3 ul.price_list li span {
    color: #81b55c;
}

.pricing .plane3 ul.price_list li i:before {
    color: #81b55c;
    background: #ddeed0;
}

.pricing .plane3 button {
    background: #81b55c;
}


/************************************************** 
TESTIMONIALS CSS
**************************************************/

.testimonial_inner_wrap {
    display: flex !important;
    align-items: center;
    background: #08162a;
    padding: 70px 70px 70px 200px;
    position: relative;
    border-radius: 30px;
}

.testimonial_inner_wrap .testimonial_img {
    width: 25%;
}
.testimonial_inner_wrap .testimonial_content::before{
    content: '';
    background: url(../img/quote.png) no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    z-index: 99;
    position: absolute;
    left: 63px;
}
.testimonial_inner_wrap .testimonial_content {
    width: 75%;
    padding-right: 50px;
}

.testimonial_inner_wrap .testimonial_img img {
    width: 100%;
}

.testimonial_inner_wrap .testimonial_content p {
    color:var(--white-color);
    line-height: 35px;
}

.testimonial_inner_wrap .testimonial_content> h4 {
    color: #4b5462;
    font-family: 'NexaRegular', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 22px;
}

.testimonial_inner_wrap .testimonial_content .testimonial_desg h4 {
    color: var(--sky-dark-color);
    float: left;
    margin: 0;
    font-size: 31px;
    font-weight: 600;
}

.testimonial_inner_wrap .testimonial_content .testimonial_desg span {
    color: #6a717b;
    vertical-align: sub;
    margin-left: 30px;
    line-height: 40px;
}
.testimonial_inner  ul.slick-dots {
    list-style: none;
    display: flex;
    position: absolute;
    bottom: 0;
}

.testimonial_inner {
    position: relative;
}

.testimonial_inner ul.slick-dots li button {
    background: #0000;
    border: none;
}

.testimonial_inner ul.slick-dots li.slick-active button {
    color: #f5da76;
    opacity: 1;
    font-family:var(--nexa-r);
    font-size: 26px;
}
.testimonial_inner ul.slick-dots li {
    position: relative;
    width: 50px;
    text-align: center;
    margin: 0px 5px;
}

.testimonial_inner ul.slick-dots li button:after {
    content: '';
    background: #39414c;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    display: block;
}

.testimonial_inner ul.slick-dots li.slick-active button:after {
    display: none;
}

/************************************************** 
FOOTER CSS
**************************************************/

#footer h4.titleFooter , #footer .footer_content h4, #footer .wigdet_4 h5{
    font-family:var(--nexa-r);
}
.menu ul {
    padding-left: 0;
}

.menu h4,
.menu ul li {
    color: #7e8896;
    list-style: none;
}

.menu ul li a {
    color: #7e8896;
    text-decoration: none;
}

.footer_detail h4 {
    font-size: 16px;
    margin-bottom: 0;
}

.footer_detail p {
    color: #fff;
}

.footer_detail {
    display: flex;
    align-items: baseline;
}

.menu ul li {
    padding-bottom: 13px;
}

.footer_bottom p {
    color: #fff;
    margin-bottom: 0;
    padding-top: 15px;
}

.footer_bottom {
    border-top: solid 2px #3e4150;
}

.footer {
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer_detail .footer_icon {
    color: #fff;
    margin-right: 15px;
}

h4.titleFooter {
    font-size: 24px;
    color: #fff;
    border-bottom: 1px solid #202a35;
    padding-bottom: 19px;
    position: relative;
    margin-bottom: 30px;
}

h4.titleFooter:after {
    content: '';
    position: absolute;
    width: 51px;
    background: #6d7179;
    height: 1px;
    bottom: 0;
    left: 0;
}

footer#footer {
    padding: 90px 0 10px;
    background: #081730;
}

.footer p {
    color: #7e8896;
}

.social {
    display: flex;
    align-items: center;
}

.social a {
    text-decoration: none !important;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #5e6369;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #5e6369;
    margin: 0 5px;
}

.social a:hover {
    color: #fff;
}

.wigdet_4 h5 {
    color: #fff;
}

.form-new {
    display: flex;
    border: 1px solid #e8ecf6;
    background: #e8ecf62b;
    width: 100%;
    padding: 10px 20px;
    justify-content: space-between;
}

.wigdet_4 input[type="text"] {
    background: transparent;
    border: 0;
    outline: none;
}

.form-new button {
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
}

.subFooter-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    PADDING-LEFT: 0;
    list-style: none;
}

.subFooter-menu li {
    padding-right: 50px;
    border-right: 1px solid #7e8896;
}

.subFooter-menu a {
    color: #7e8896;
    text-decoration: none;
}

p.copy-right {
    margin: 0;
    padding: 0;
    float: right;
}

.footer_bottom .row {
    align-items: center;
}

.subFooter-menu li:last-child {
    border: 0;
}

.footer_bottom {
    padding: 20px 0 10px;
}

.footer_content h4 {
    color: #fff;
    margin-bottom: 10px;
}

.subFooter-menu a:hover {
    color: #3AA62C;
    text-decoration: none;
}

/************************************************** 
ABOUT US CSS
**************************************************/

.about_wrap .info_title h2{
    font-weight: 900;
    font-size: var(--font-50);
    color:var(--white-color);
}
.about_wrap .info_title h2 strong{
    color: var(--sky-dark-color);
}
.about_wrap .info_title p{
    color: #a7becb;
}
.about_wrap {
    padding-top: 100px;
}
.about_wrap img {
    margin-bottom: -250px;
    margin-top:50px;
}
.section_about1{
    padding-top:260px;
}
.section_about1 .row .who_we_are_img1, .section_about1 .row .who_we_are_img2 {
    background: unset !important;
    display: unset;
    min-height: unset;
    justify-content: unset;
}
.mision_wrap .info_title h2{
    font-weight: 900;
    font-size: var(--font-50); 
}
.mision_wrap .info_subtitle p{
    text-transform: uppercase;
    color: var(--gray-color);
    letter-spacing: 5px;
}
.mision_wrap .info_title h2 strong{
    color: var(--sky-dark-color);
}
.mision_wrap .info_box{
    text-align: center;
    margin-bottom:50px;
}
.mision_wrap .mission_box {
    background: #f6f7fb;
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
}

.mision_wrap .mission_box .mission_img img {
    border-radius: 10px;
}

.mision_wrap .mission_box .mission_content {
    margin-top: 25px;
    padding: 0px 20px;
}

.mision_wrap .mission_box .mission_content h4 {
    font-family:var(--marlino);
    font-weight: 600;
}
.mision_wrap .mission_box .mission_content p {
    font-family:var(--nexa-r);
    color:var(--gray-color);
}
.andFont{
    font-family:var(--nexa-r);
}









