/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties
------------------------------------------------------------- */

@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);

/* =========================================================
        General
============================================================ */
.grecaptcha-badge{
display: none;
opacity: 0;
visibility: hidden;
}
.contacterr, .emailerr {
    color: #cc1122;
    font-size: 14px;
    margin: 0;
    display: none;
    font-weight: 900;
}
#recaptcha_callback,
#recaptcha_callback2{
    display: none;
}

form .error {
    border: 1px solid red;
    background: rgba(255, 0, 0, 0.26);
}

.required {
    color: red;
    font-size: 13px;
    display: none;
}

.modal-dialog {
    width: max-content;
}


.search_li {
    display: none !important;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: #6a6a6a;
    background-color: #ffffff;
    overflow-x: hidden;
}

body.dark-layout {
    color: #696969;
    background-color: #1f1f1f;
}

body.dark-layout .section-title h2 {
    color: #484848;
}

body.dark-layout .footer-section {
    background: #252525;
}

body.dark-layout .footer-section .second-footer {
    background-color: #101010;
}

body.dark-layout .footer-section .second-footer .contact-wrapper ul li {
    color: #545454;
}

body.dark-layout .footer-section .second-footer .copy-right p {
    color: #4a4a4a;
}

html {
    font-family: "Poppins", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}


/* ================= Link style ==================== */

a {
    color: #48c7ec;
}

a,
a>* {
    outline: none;
    cursor: pointer;
    text-decoration: none;
}

a:focus,
a:hover {
    color: #313131;
    outline: none;
    text-decoration: none;
}


/* ================= Transition elements ==================== */

a,
.navbar a,
.form-control {
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}


/* =========================================================
        Typography
============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: 0 0 20px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -1px;
}


h2 {
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;
    color: #092a48;
}


h3 {
    font-size: 26px;
    line-height: 30px;
    color: #092a48;
}


h4 {
    font-size: 25px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

p img {
    margin: 0;
}

p {
    margin: 0 0 15px;
    line-height: 27px;
}

hr {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

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


/* =========================================================
        Button STYLE
============================================================ */

.btn {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.btn.active,
.btn:active {
    box-shadow: none;
}

button,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none;
}

.btn-default {
    position: relative;
    font-size: 16px;
    color: #48c7ec;
    background-color: #FFFFFF;
    border: 2px solid #48c7ec;
    border-radius: 0;
    padding: 8px 22px;
    border-radius: 25px;
    overflow: hidden;
    z-index: 5;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-default::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #48c7ec;
    border-radius: 25px;
    transform: translateX(-102%);
    z-index: -1;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-default:hover {
    color: #FFFFFF;
}

.btn-default:hover::before {
    transform: translateX(0);
}


.btn-default:hover,
.btn-default.focus,
.btn-default:focus,
.btn-default.active,
.btn-default:active,
.open>.dropdown-toggle.btn-default,
.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus,
.open>.dropdown-toggle.btn-default:hover,
.open>.dropdown-toggle.btn-primary {
    color: #FFFFFF;
    border-color: #48c7ec;
}

.btn-primary {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    border-radius: 5px;
    padding: 8px 25px;
    z-index: 5;
    overflow: hidden;
    background-color: #48c7ec;
    color: #FFFFFF;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 25px;
    transform: translateX(-102%);
    /*background-color: #3aaed0;*/
    background-color: #092a48;
    opacity: 0;
    transform: scale(0.5, 1);
    transition: all 0.4s ease 0s;
    border-radius: 5px;
    z-index: -1;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover {
    background-color: #48c7ec;
    color: #FFFFFF;
}


/* =========================================================
        Color Presets For Class
============================================================ */

.facebook-bg {
    background-color: #106ed2;
}

.twitter-bg {
    background-color: #3ad0fb;
}

.linkedin-bg {
    background-color: #1379bb;
}


/* =========================================================
        Global Classes
============================================================ */

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.section-padding {
    padding: 53px 0;
}

@media only screen and (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
        margin-bottom: 303px;
    }
}

.inline-block {
    display: inline-block;
}

.ml-30 {
    margin-left: 30px;
}

.mr-30 {
    margin-right: 30px;
}


/* =========================================================
        FORM STYLE
============================================================ */

.form-control:focus {
    box-shadow: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: transparent;
    background-image: none;
    color: #ffffff;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
    outline: none;
    margin: 0;
    max-width: 100%;
    -webkit-border-radius: 0px 0px 0px 0px;
    -moz-border-radius: 0px 0px 0px 0px;
    -o-border-radius: 0px 0px 0px 0px;
    -ms-border-radius: 0px 0px 0px 0px;
    -khtml-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
}


/* =========================================================
        Light-Box STYLE
============================================================ */

.poptrox-popup {
    background: transparent !important;
}

.poptrox-popup .caption,
.poptrox-popup .closer,
.poptrox-popup .nav-next,
.poptrox-popup .nav-previous {
    display: none !important;
}


/* =========================================================
        Border Style
============================================================ */

.border-break .border {
    border-bottom: 1px solid #dfdfdf;
}



/* =========================================================
        Header STYLE
============================================================ */

.header-section {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

@media only screen and (max-width: 767px) {
    .header-section {
        position: relative;
    }
}

.header-section .top-bar {
    min-height: 60px;
    line-height: 60px;
    background-color: #0a2c59;
}

@media only screen and (max-width: 991px) {
    .header-section .top-bar {
        min-height: 50px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .header-section .top-bar {
        text-align: center;
        min-height: auto;
        line-height: 35px;
        padding: 5px 0;
    }
}

@media only screen and (max-width: 767px) {
    .header-section .top-bar {
        padding: 10px 0;
    }
}

.header-section .top-bar .header-left-bar .contact-wrapper {
    display: inline-block;
}

.header-section .top-bar .header-left-bar .contact-wrapper li {
    font-size: 14px;
    display: inline-block;
    color: #9daab8;
    margin-right: 30px;
}

@media only screen and (max-width: 1199px) {
    .header-section .top-bar .header-left-bar .contact-wrapper li {
        font-size: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .header-section .top-bar .header-left-bar .contact-wrapper li {
        display: block;
        margin: 0;
        line-height: 30px;
    }
}

.header-section .top-bar .header-left-bar .contact-wrapper li:last-child {
    margin-right: 0;
}

.header-section .top-bar .header-left-bar .contact-wrapper li i {
    font-size: 20px;
    color: #48c7ec;
    vertical-align: middle;
    margin-right: 5px;
}



.header-section .navbar {
    border: 0;
    border-radius: 0;
    margin: 0;
    min-height: auto;
    background-color: #48c7ec;
    z-index: 998;
}

.header-section .navbar .navbar-header {
    position: relative;
    z-index: 5;
    width: 20%;
}

.header-section .navbar .navbar-header .navbar-brand {
    padding: 0;
    margin: 0;
}

.header-section .navbar .navbar-header .navbar-brand img {
    padding: 35px 0;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.header-section .navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 20px 0px rgba(64, 64, 64, 0.16);
    padding: 0;
    z-index: 998;
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-section .navbar.sticky {
        margin-top: -88px;
    }
}

.header-section .navbar.sticky .navbar-header .navbar-brand img {
    padding: 20px 0;
}

.header-section .navbar.sticky .navbar-collapse {
    width: 1140px;
    margin: 0 auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-section .navbar.sticky .navbar-collapse {
        width: auto;
    }
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li:hover .dropdown {
    z-index: 9;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .dropdown {
    z-index: -1;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .cart::before {
    top: 12px;
    font-size: 10px;
}

.header-section .navbar.sticky .navbar-collapse .navbar-nav li .text {
    top: 10px;
}

.header-section .navbar .navbar-collapse {
    padding: 0;
    float: left !important;
    margin-left: 27px;
    width: 77%;
}

.header-section .navbar .navbar-collapse .navbar-nav {
    margin: 0 30px;
}

.header-section .navbar .navbar-collapse .navbar-nav li {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 28px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-section .navbar .navbar-collapse .navbar-nav li {
        margin-right: 25px;
    }
}

.header-section .navbar .navbar-collapse .navbar-nav li:last-child {
    margin-right: 0;
    float: right;
}

.header-section .navbar .navbar-collapse .navbar-nav li img {
    margin-right: 8px;
}

.header-section .navbar .navbar-collapse .navbar-nav li a{
    color: #FFFFFF;
    padding: 0;
    line-height: 55px;
    -webkit-transition: 0.5s;
    -khtml-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.header-section .navbar .navbar-collapse .navbar-nav li a:hover{
    color: #313131;
    background-color: transparent;
}


.header-section .navbar .navbar-collapse .navbar-nav li.active a {
    color: #313131;
    background-color: transparent;
}



.header-section .navbar .navbar-collapse .navbar-nav li .text {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    background-color: #313131;
    border-radius: 50%;
    padding: 4px 6px;
    position: absolute;
    top: 25px;
    right: -11px;
    line-height: 11px;
    text-align: center;
    font-size: 10px;
}


/* =========================================================
        Company-Section STYLE
============================================================ */

.company-section {
    background: #ffff;
}


.company-section .section-leftbar h4 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.5;
    color: #cc1f22;
}

.company-section .section-leftbar h4 span {
    font-size: 22px;
    font-weight: 900;
    line-height: 0px;
    color: #061e3e;
}

@media only screen and (max-width: 767px) {
    .company-section .section-leftbar h4 {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 479px) {
    .company-section .section-leftbar h4 {
        font-size: 31px;
        margin-top: 14px;
    }
}

.company-section .section-leftbar p {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #000000;
    margin-bottom: 0;
}


/* =========================================================
        Footer STYLE
============================================================ */

.footer-section {
    position: relative;
    background: url(../../images/footer.webp) no-repeat;
    background-size: cover;
}

.footer-section .footer-container {
    padding: 41px 0px;
    padding-bottom: 0px;
}

@media only screen and (max-width: 991px) {
    .footer-section .footer-container {
        padding: 80px 0 70px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-section .footer-container {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer-section .footer-container .footer-wrapper {
        padding-bottom: 40px;
    }
}

.footer-section .footer-container .footer-wrapper .last-wrapper {
    margin-bottom: 0;
}

.footer-section .footer-container .footer-wrapper img {
    max-width: 100%;
}

.footer-section .footer-container .footer-wrapper .location {
    margin-top: 45px;
}

@media only screen and (max-width: 767px) {
    .footer-section .footer-container .footer-wrapper .location {
        margin-top: 30px;
    }
}

.footer-section .footer-container .footer-wrapper .location li {
    margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
    .footer-section .footer-container .footer-wrapper .location li {
        margin-bottom: 15px;
    }
}

.footer-section .footer-container .footer-wrapper .location li:last-child {
    margin-bottom: 0;
}

.footer-section .footer-container .footer-wrapper .location li i {
    font-size: 24px;
    color: #48c7ec;
    vertical-align: top;
}

@media only screen and (max-width: 991px) {
    .footer-section .footer-container .footer-wrapper .location li i {
        font-size: 25px;
    }
}

.footer-section .footer-container .footer-wrapper .location li .content {
    font-size: 15px;
    line-height: 25px;
    color: #aaa;
    display: inline-block;
    margin-left: 15px;
}

@media only screen and (max-width: 991px) {
    .footer-section .footer-container .footer-wrapper .location li .content {
        font-size: 16px;
        line-height: 27px;
        margin-left: 10px;
    }
}

.footer-section .footer-container .footer-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.footer-section .footer-container .footer-wrapper p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    color: #e6e6e6;
    margin-bottom: 0;
}

.footer-section .footer-container .footer-wrapper .social-icon {
    margin-top: 40px;
}

@media only screen and (max-width: 991px) {
    .footer-section .footer-container .footer-wrapper .social-icon {
        margin-top: 25px;
    }
}

.footer-section .footer-container .footer-wrapper .social-icon li {
    display: inline-block;
    font-size: 20px;
    margin-right: 20px;
}

@media only screen and (max-width: 991px) {
    .footer-section .footer-container .footer-wrapper .social-icon li {
        margin-right: 18px;
    }
}

.footer-section .footer-container .footer-wrapper .social-icon li:last-child {
    margin-right: 0;
}

.footer-section .footer-container .footer-wrapper .social-icon li a {
    color: #FFFFFF;
}

.footer-section .footer-container .footer-wrapper .social-icon li a:hover {
    color: #48c7ec;
}

.footer-section .footer-container .footer-wrapper .wrapper-option {
    float: left;
    margin-top: -5px;
}

.footer-section .footer-container .footer-wrapper .wrapper-option li {
    font-size: 16px;
    line-height: 36px;
}

.footer-section .footer-container .footer-wrapper .wrapper-option li a {
    color: #aaa;
}

.footer-section .footer-container .footer-wrapper .wrapper-option li a:hover {
    color: #48c7ec;
}

.footer-section .copy-right {
    background-color: #061d31;
    padding: 16px 0;
    border-top: 1px solid #203548;
}

.footer-section .copy-right p {
    font-size: 16px;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .footer-section .copy-right p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 479px) {
    .footer-section .copy-right p {
        font-size: 12px;
    }
}



/* =========================================================
        HomePageThree-STYLE
============================================================ */

.homePageThree .header-section .top-bar {
    min-height: 50px;
    line-height: 50px;
}

@media only screen and (max-width: 767px) {
    .homePageThree .header-section .top-bar {
        line-height: 35px;
    }
}

.homePageThree .header-section .top-bar .header-left-bar .contact-wrapper li {
    font-size: 16px;
    color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
    .homePageThree .header-section .top-bar .header-left-bar .contact-wrapper li {
        font-size: 14px;
    }
}


.homePageThree .header-section .navbar {
    background-color: #ffffff7a;
    box-shadow: 0 0 5px #8c8c8c;
    transition: .5s;
}

.homePageThree .header-section .navbar.sticky {
    background-color: #FFFFFF;
}

.homePageThree .header-section .navbar.sticky .navbar-collapse {
    width: auto;
}

.homePageThree .header-section .navbar .navbar-header .navbar-brand img {
    padding: 20px 0;
    width: 100%
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav {
    margin: 0;
    width: 100%;
    margin-left: 33px;
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li a {
    color: #292929;
    line-height: 90px;
    font-weight: 500;
    font-size: 18PX;
}

.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li.active a,
.homePageThree .header-section .navbar .navbar-collapse .navbar-nav li:hover a {
    color: #cc1f22;
}


.toggle-switcherbox {
    left: 0;
}


/*** rotating ***/

@-webkit-keyframes rotating {
    form {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    form {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* =========================================================
        Scroll-To-Top-STYLE
============================================================ */

.why_student .second .top_content .h7 {
    font-size: 22px;
    font-weight: 700;
}

#toTop {
    position: fixed;
    bottom: 120px;
    right: 30px;
    color: #cc1f22;
    cursor: pointer;
    display: none;
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 30px;
    border: 2px solid #cc1f22;
    border-radius: 19px;
    text-align: center;
    z-index: 999;
}


/* =========================================================
        Preloader-STYLE
============================================================ */

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader .preloader {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 50px;
    width: 50px;
    margin: -25px auto 0;
    display: block;
}

#preloader .preloader span {
    position: absolute;
    display: block;
    bottom: 10px;
    width: 9px;
    height: 5px;
    -webkit-animation: animation 3s infinite ease-in-out;
    animation: animation 3s infinite ease-in-out;
}

#preloader .preloader span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

#preloader .preloader span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

#preloader .preloader span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

#preloader .preloader span:nth-child(5) {
    left: 44px;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

@keyframes animation {
    0% {
        height: 5px;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        background: #092a48;
    }
    25% {
        height: 30px;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        background: #48c7ec;
    }
    50% {
        height: 30px;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
        background: #092a48;
    }
    100% {
        height: 5px;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        background: #48c7ec;
    }
}


/*# sourceMappingURL=style.css.map */