* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

.main-color {
    color: #001232;
}

.background-main-color {
    background-color: #001232 !important;
}

.custom-link-border-primary {
    padding: 6px 10px;
    border-radius: 5px;
    color: #001232;
    text-decoration: none;
    background: transparent;
    border: 1px solid #001232 !important;
}

.custom-link-border-primary:hover {
    background: #001232;
    color: white;
}

#btn-back-to-top {
    background-color: #E19C37;
    color: #fff;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 2;
}

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: #fff;
    z-index: 99;
}

.preloader img {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 2s;

    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.navbar-brand img {
    width: 80% !important;
}

.navbar .nav-item a {
    font-size: 15px;
    font-weight: 300;
    color: #272727 !important;
    transition: all 0.2s;
}

.navbar .nav-item a.active {
    font-weight: 600;
}

.search {
    width: 50%;
    /* height: 64px; */
    align-items: center;
    background-color: #001232 !important;
    border-radius: 10px;
    padding: 5px 20px;
}

.search i {
    font-size: 24px;
    padding: 0 10px;
}

.search button {
    background-color: transparent;
    border: 0;
}

.search input::placeholder {
    color: #FFF;
}

.search input {
    font-size: 19px;
    font-weight: 500;
    color: #FFF;
    border: 0 !important;
    background: transparent !important;
}


.search .form-control:focus,
.search .form-control:active {
    color: #FFF;
    border: 0 !important;
    outline: none;
    box-shadow: none;
}

.home-section {
    background-image: url(../images/bg-1.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
}

.home-section .container-fluid.main {
    background-color: rgba(0, 18, 50, 0.42);
    width: 100%;
    height: 100%;
}

.home-section h1 {
    font-size: 31px;
    font-weight: 600;
}

.home-section p {
    font-size: 25px;
    font-weight: 500;
}

.home-section .search-2 {
    width: 100%;
    align-items: center;
    background-color: #FFF !important;
    border-radius: 10px;
    padding: 5px 20px;
}

.home-section .search-2 input {
    color: #000;
    border: 0 !important;
    background: transparent !important;
    font-weight: 600;
    font-size: 19px;
}

.home-section .search-2 .form-control:focus,
.search-2 .form-control:active {
    color: #000;
    border: 0 !important;
    outline: none;
    box-shadow: none;
}

.rectangle-section .container-fluid.sec {
    background-color: #001232;
    position: relative;
}

.rectangle-section .rectangle i {
    font-size: 70px;
}

.rectangle-section .rectangle p {
    font-size: 19px;
    font-weight: 400;
    line-height: 28px;
}

.rectangle-section .rectangle h2 {
    font-size: 32px;
    font-weight: 700;
}

.rectangle-section .rectangle h3 {
    font-size: 26px;
    font-weight: 300;
}

.rectangle-section .rectangle .img-1 {
    width: 65%;
}

.rectangle-section .rectangle .img-2 {
    width: 72%;
}

.rectangle-section .rectangle .img-3 {
    width: 60%;
}

.courses-section .head h4 {
    font-size: 25px;
    font-weight: 500;
    color: #000;
}

.courses-section .body a {
    text-decoration: none;
    color: #000;
}

.courses-section .body .course {
    width: 100%;
    background-color: #FFF;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    margin: auto;
}

.courses-section .body .course .title {
    height: 20%;
}

.courses-section .body .course .info {
    height: 20%;
}

.courses-section .body .course .image {
    width: 100%;
    height: 60%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.courses-section .body .course:hover {
    transform: scale(1.025);
}

.courses-section .body .course img {
    width: 100%;
    height: 100% !important;
    border-radius: 15px;
}

.courses-section .body .course h6 {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.courses-section .body .course small {
    font-size: 12px;
    font-weight: 400;
    color: #000;
}


.courses-section .body .course i {
    font-size: 14px;
    color: #000;
}

.courses-section .body .course span {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.courses-section .body .course strong {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

.subtitle-section img {
    border-radius: 15px;
}

.subtitle-section h3 {
    font-size: 24px;
    font-weight: 400;
    color: #000;
}

.subtitle-section p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.features-section .head h4 {
    font-size: 25px;
    font-weight: 500;
    color: #000;
}

.features-section .body .icon {
    height: 150px;
}

.features-section .body .icon img {
    height: 100% !important;
}

.features-section .body h5 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.features-section .body p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.accreditations-section h4 {
    font-size: 24px;
    font-weight: 400;
    color: #000;
}

.accreditations-section p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.accreditations-section p.special {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    white-space: pre-wrap;
}

.customers-section .head h4 {
    font-size: 25px;
    font-weight: 500;
    color: #000;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 15px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #D7D7D7;
    border-radius: 28px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 28px;
    background: #001232;
}


.customers-section .body {
    flex-wrap: nowrap;
    overflow-x: scroll;
}


.customers-section .body .opinion {
    width: 100%;
    height: 100%;
    background-color: #001232;
}

.customers-section .body .opinion h6 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: #E19C37;
}

.customers-section .body .opinion p {
    font-size: 15px;
    font-weight: 400;
}

.footer-section {
    color: #FFF;
    background-color: #001232;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 500;
}

.footer-section h4.special {
    font-size: 18px;
    font-weight: 400;
}

.footer-section strong {
    font-size: 18px;
    font-weight: 700;
}

.footer-section li {
    list-style: none;
}

.footer-section a {
    text-decoration: none;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.5s;
}

.footer-section a:hover {
    padding-left: 18px;
    color: #E19C37;
}

.footer-section a.special {
    font-size: 15px;
    font-weight: 500;
}

.footer-section .rectangle {
    height: 50px;
}










.about-us-section {
    background-image: url(../images/about-us-bg.png);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}

.about-us-section p {
    white-space: pre-wrap;
}

.about-us-section .rectangle h2 {
    font-size: 32px;
    font-weight: 700;
}

.about-us-section .rectangle img {
    width: 100%;
    border-radius: 30px;
}

.about-us-section .rectangle p {
    white-space: pre-wrap;
    color: #000;
}

.about-us-section .box {
    background-color: #001232;
    border-radius: 15px;
    height: 250px;
}

.about-us-section .box .title h5 {
    font-weight: 700;
}

.about-us-section .box .desc p {
    font-weight: 300;
}



.course-section {
    background-image: url(../images/faq-bg.png);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}

.course-section .head h2,
h6 {
    font-weight: 400;
    line-height: 26px;
}

.course-section .body img {
    border-radius: 15px;
}

.course-section .body strong {
    font-size: 24px;
    font-weight: 700;
}

.course-section .body i {
    font-size: 20px;
}

.course-section .body span {
    font-size: 24px;
    font-weight: 600;
}

.course-section .desc p {
    white-space: pre-wrap;
}

/* .course-section .desc p.special {
    -webkit-columns: 40px 2;
} */

.course-section .summary .desc p {
    font-size: 18px;
}

.terms-section {
    background-color: #001232;
    text-transform: capitalize;
}

.terms-section p {
    white-space: pre-wrap;
    font-weight: 500;
}

.terms-section h6 {
    font-size: 18px;
    font-weight: 500;
}

.terms-section .btn.next-btn {
    background-color: #001232 !important;
    color: #E19C37 !important;
    padding: 15px 90px;
    border-radius: 15px;
}

.terms-section input.form-control {
    outline: none;
    box-shadow: none;
    border: 1px solid #001232 !important;
}


.faq-section {
    background-image: url(../images/faq-bg.png);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}

.faq-section .rectangle h2 {
    font-size: 32px;
    font-weight: 700;
}

.faq-section .nav-tabs {
    border: 0;
}

.faq-section .nav-link {
    border: 1px solid #E19C37;
    color: #001232;
    border-radius: 15px;
    padding: 20px 80px;
    margin: 0 10px;
    transition: all 0.5s;
}

.faq-section .nav-link:hover {
    border: 1px solid transparent;
    background-color: #001232;
    color: #E19C37;
}

.faq-section .nav-link.active {
    border: 1px solid transparent;
    background-color: #001232;
    color: #E19C37;
}

.faq-section .title h5 {
    cursor: pointer;
}

.about-us-section .country-list-btn {
    border: 1px solid transparent !important;
    background-color: #001232;
    color: #FFF;
    border-radius: 15px !important;
    padding: 20px 80px;
    margin: 10px 0;
    transition: all 0.2s;
    width: 100%;
}



.about-us-section .country-list {
    padding: 20px 80px;
    color: #FFF;
    background-color: #001232;
    border-radius: 15px;
    width: 100%;
    height: 300px;
    overflow-y: scroll;
}

.about-us-section .country-list .form-control:focus,
.about-us-section .country-list .form-control:active {
    outline: none;
    box-shadow: none;
}

.about-us-section .nav {
    display: block;
}

.about-us-section .nav-link {
    display: block;
    background-color: #001232;
    color: #FFF;
}

.about-us-section .nav-link.active {
    border: 1px solid transparent;
    background-color: #001232;
    color: #E19C37;
}

.about-us-section .tab-content {
    background-color: #001232;
    color: #FFF;
    padding: 20px 80px;
    border-radius: 15px;
}

@media all and (max-width:1399px) {
    .home-section .search-2 {
        width: 87%;
    }

    .search {
        width: 45%;
    }

    .search input {
        font-size: 14px;
    }

    .search i {
        font-size: 20px;
    }

    .navbar-brand img {
        width: 75% !important;
    }

    .navbar .nav-item a {
        font-size: 13px;
    }

    .home-section {
        height: 85vh;
    }

    .home-section h1 {
        font-size: 25px;
    }

    .home-section p {
        font-size: 22px;
    }

    .home-section .search-2 input {
        font-size: 16px;
    }

    .rectangle-section .rectangle p {
        font-size: 13px;
    }

    .rectangle-section .rectangle img {
        width: 95%;
    }

    .rectangle-section .rectangle i {
        font-size: 35px;
    }

    .subtitle-section h3 {
        font-size: 20px;
    }

    .subtitle-section p {
        font-size: 14px;
    }

    .features-section .head h4 {
        font-size: 20px;
    }

    .features-section .body h5 {
        font-size: 18px;
    }

    .features-section .body p {
        font-size: 14px;
    }


    .accreditations-section h4 {
        font-size: 22px;
    }

    .accreditations-section p {
        font-size: 16px;
    }

    .accreditations-section p.special {
        font-size: 14px;
    }

    .customers-section .head h4 {
        font-size: 20px;
    }

    .customers-section .body .opinion h6 {
        font-size: 18px;
    }

    .customers-section .body .opinion p {
        font-size: 14px;
    }

    .footer-section h4.special {
        font-size: 16px;
    }

    .footer-section strong {
        font-size: 17px;
    }

    .footer-section a.special {
        font-size: 14px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section a {
        font-size: 14px;
    }

    .footer-section a:hover {
        padding-left: 10px;
    }
}

@media all and (max-width:991px) {
    .home-section .search-2 {
        width: 87%;
    }

    .search {
        width: 70%;
    }

    .search input {
        font-size: 14px;
    }

    .search i {
        font-size: 20px;
    }

    .navbar-brand img {
        width: 75% !important;
    }

    .navbar .nav-item a {
        font-size: 16px;
    }

    .home-section {
        height: 85vh;
    }

    .home-section h1 {
        font-size: 22px;
    }

    .home-section p {
        font-size: 18px;
    }

    .home-section .search-2 input {
        font-size: 16px;
    }

    .rectangle-section .rectangle p {
        font-size: 13px;
    }

    .rectangle-section .rectangle .img-1 {
        width: 50% !important;
    }

    .rectangle-section .rectangle .img-2 {
        width: 55% !important;
    }

    .rectangle-section .rectangle .img-3 {
        width: 48% !important;
    }

    .rectangle-section .rectangle h2 {
        font-size: 22px;
    }

    .rectangle-section .rectangle h3 {
        font-size: 18px;
    }

    .rectangle-section .rectangle i {
        font-size: 35px;
    }

    .subtitle-section h3 {
        font-size: 20px;
    }

    .subtitle-section p {
        font-size: 14px;
    }

    .features-section .head h4 {
        font-size: 20px;
    }

    .features-section .body h5 {
        font-size: 18px;
    }

    .features-section .body p {
        font-size: 14px;
    }

    .features-section .body .icon img {
        width: 30% !important;
    }

    .accreditations-section h4 {
        font-size: 22px;
    }

    .accreditations-section p {
        font-size: 16px;
    }

    .accreditations-section p.special {
        font-size: 14px;
    }

    .customers-section .head h4 {
        font-size: 20px;
    }

    .customers-section .body .opinion h6 {
        font-size: 18px;
    }

    .customers-section .body .opinion p {
        font-size: 14px;
    }

    .footer-section h4.special {
        font-size: 16px;
    }

    .footer-section strong {
        font-size: 17px;
    }

    .footer-section a.special {
        font-size: 14px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section a {
        font-size: 14px;
    }

    .footer-section a:hover {
        padding-left: 10px;
    }


    .course-section {
        background-size: 110% 60vh;
    }

    .course-section h2 {
        font-size: 22px;
    }

    .course-section h6 {
        font-size: 14px;
    }

    .course-section .body .price,
    .duration {
        justify-content: center;
    }

    .course-section .body span {
        font-size: 20px;
    }

    .course-section .body strong {
        font-size: 20px;
    }

    .course-section .title h4 {
        font-size: 18px;
    }

    .course-section .desc p {
        font-size: 15px;
    }

    .course-section .summary .desc p {
        font-size: 16px;
    }

    .course-section .desc p.special {
        -webkit-columns: 40px 1;
    }

    .terms-section h2 {
        font-size: 20px;
    }

    .terms-section p {
        font-size: 14px;
    }

    .terms-section h6 {
        font-size: 16px;
    }

    .terms-section .btn.next-btn {
        background-color: #001232 !important;
        color: #E19C37 !important;
        padding: 10px 80px;
        font-size: 14px;
        border-radius: 15px !important;
    }


    .about-us-section .rectangle h2 {
        font-size: 22px;
    }

    .about-us-section .rectangle h4 {
        font-size: 20px;
    }

    .about-us-section .rectangle p {
        font-size: 14px;
    }

    .about-us-section .box .title h5 {
        font-size: 18px;
    }

    .about-us-section .box .desc p {
        font-size: 14px;
    }

    .about-us-section .country-list-btn {
        font-size: 14px;
        padding: 20px 30px;
    }

    .about-us-section .country-list {
        padding: 20px 25px;
        font-size: 14px;
    }

    .about-us-section .tab-pane h5 {
        font-size: 16px;
    }

    .faq-section {
        background-size: 110% 50vh;
    }

    .faq-section .rectangle h2 {
        font-size: 22px;
    }

    .faq-section .rectangle h4 {
        font-size: 14px;
    }

    .faq-section .nav-link {
        padding: 10px;
        margin: 0 2px;
        font-size: 14px;
    }

    .faq-section .title h5 {
        font-size: 16px;
    }

    .faq-section .body h6 {
        font-size: 14px;
    }

    .courses-section .head h4 {
        font-size: 18px;
    }
}
