@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

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

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

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

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'trajan';
    src: url(../fonts/TrajanPro-Regular.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'trajan';
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 0px;
    font-size: 2.7vw;
}

h2 {
    font-family: 'trajan';
    font-size: 40px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h3 {
    font-family: 'trajan';
    font-size: 35px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 0px;
}

h4 {
    font-family: 'trajan';
    font-size: 24px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h5 {
    font-family: 'trajan';
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h6 {
    font-family: 'trajan';
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

p {
    color: #000;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    margin: 0px;
}

/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 40px 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.menuSec ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.menuSec ul li a:hover::after,
.menuSec ul li a.active::after {
    width: 100%;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

/*header css start */

/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

/*banner css end*/

/* .menuSection::before {
    position: absolute;
    content: '';
    background: #3a44a2;
    width: 84%;
    height: 1px;
    right: 0;
    bottom: 0;
} */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.bnr_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topSec {
    background-color: #112466;
    padding: 10px 0;
}

.container-fluid {
    padding: 0 5%;
}

.top-bar-right ul {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 70px;
    position: relative;
}

.top-bar-right ul::before {
    position: absolute;
    right: 10%;
    content: '';
    background-color: #949cba;
    height: 100%;
    width: 1px;
    z-index: 1;
}

.top-bar-right ul li a {
    color: #949cba;
    font-size: 14px;
}

.top-bar-right ul li a i {
    color: #ffffff;
    font-size: 17px;
    margin-right: 10px;
}

.themebtn {
    font-family: "Montserrat", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 12px 12px 20px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #ffed60;
    transition: background-color 0.4s ease, border 0.4s ease, color 0.4s ease;
}

.themebtn:hover {
    border: 1px solid #fff;
    background-color: #ffed60;
}

.themebtn:hover span {
    background-color: #fff;
    transition: background-color 0.4s ease;
}

.themebtn span {
    width: 50px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffed60;
    border-radius: 20px;
    padding: 0px 0;
    transition: background-color 0.4s ease;
}

.themebtn img {
    width: auto;
    height: auto;
    border-radius: 20px;
    padding: 0px 0;
    background-size: contain;
}

.headerbtn {
    text-align: end;
}

.header-logo {
    position: absolute;
    top: 0;
}

.main_slider {
    position: relative;
}

.d-block {
    display: block;
}

.banner_text p {
    color: #cdd1eb;

}

.themebtn2 {
    font-family: "Montserrat", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 12px 12px 20px;
    background-color: #ffed60;
    color: #000000;
    text-decoration: none;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13.94px;
    border: 1px solid #ffffff;
    transition: background-color 0.4s ease, border 0.4s ease, color 0.4s ease;
}

.themebtn2:hover {
    border: 1px solid #ffed60;
    background-color: #ffffff;
}

.themebtn2:hover span {
    background-color: #ffed60;
    transition: background-color 0.4s ease;
}

.themebtn2 span {
    width: 50px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 0px 0;
    transition: background-color 0.4s ease;
}

.banner_right {
    text-align: end;
}

.bnr_social h5 {
    color: #ffffff;
    font-size: 15px;
}

.bnr_sco_icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    background-color: transparent;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    border: 1px solid #559bed;
    position: relative;
    z-index: 99;
    background: #1a44b6c4;
}

.bnr_social {
    display: flex;
    position: absolute;
    bottom: 5%;
    width: 30%;
    justify-content: space-between;
    left: 5%;
    align-items: center;
}

.bnr_sco_icons {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 99;
}

.bnr_sco_icons::before {
    position: absolute;
    left: 0;
    content: '';
    background-color: #4999ef;
    height: 1px;
    width: 140%;
    z-index: 1;
}

/* about */

.abt_left {
    position: relative;
    z-index: 1;
}

.abt_left img {
    border-radius: 10px;
    height: 595px;
    width: 100%;
    object-fit: cover;
}

.abt_right h2 {
    position: relative;
    margin-bottom: 40px;
}

.abt_right h2::after {
    position: absolute;
    content: '';
    background-color: #e7e7e7;
    bottom: -15px;
    z-index: 1;
    right: 0;
    width: 100%;
    height: 1px;
}

.abt_right h2::before {
    position: absolute;
    content: '';
    background-color: #ffed60;
    bottom: -15px;
    z-index: 1;
    left: 0;
    width: 50px;
    height: 2px;
}

.abt_right p {
    color: #808080;
    margin-bottom: 30px;
}

.abt_right {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 50px 20px 30px 65px;
    position: relative;
    background-color: #fff;
    margin-left: -27px;
}

.abt_right::after {
    position: absolute;
    content: '';
    background-color: #1638ae;
    top: -24px;
    border-radius: 0 6px 6px 0;
    z-index: -1;
    right: -20px;
    width: 100%;
    height: 340px;
}

.abt_right h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.abt_left.inrabtleft img {
    height: 545px;
}

/* about */

/* services */

.service {
    padding: 80px 0 70px;
    background-color: #1537aa;
}

.service_heading {
    text-align: center;
    margin-bottom: 30px;
}

.service_heading h2 {
    color: #ffffff;
}

.service_heading p {
    color: #afbbe2;
    width: 50%;
    margin: 0 auto;
}

.ser_main_txt h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.ser_main_txt p {
    color: #adb3c7;
    margin-bottom: 30px;
}

.ser_main_txt {
    background-color: #0f205c;
    padding: 40px 30px 25px 20px;
    border-radius: 0px 0px 10px 10px;
}

.ser_main_img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.ser_main {
    border-radius: 10px;
    margin-bottom: 30px;
}

/* services */

/* testimonials */

.testimonials_main img {
    border-radius: 10px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 30px;
}

.testimonials_main h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonials_main h4 {
    font-size: 13px;
    margin-bottom: 10px;
}

.testimonials_main p {
    font-size: 14.61px;
    color: #9a9492;
}

.testimonials_slider .slick-slide {
    opacity: 1;
}

.testimonials_btn {
    text-align: center;
    margin: 70px 0;
}

.testimonials_right p {
    color: #696971;
    margin-bottom: 30px;
}

.testimonials_right {
    padding: 0px 40px;
}

.testimonials {
    padding: 120px 0;
}

.custom_arrows {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.custom_arrows button {
    background-color: #ffffff;
    width: 70px;
    height: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 50px;
    border: 1px solid #d1d1d4;
}

.custom_arrows button:hover {
    background-color: #ffed60;
    border: 1px solid #ffed60;
}

.custom_arrows img {
    width: 20px;
    height: 10px;
    filter: brightness(0) saturate(100%) invert(92%) sepia(5%) saturate(87%) hue-rotate(202deg) brightness(92%) contrast(90%);
    transition: filter 0.3s ease;
}

.custom_arrows button:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(272deg) brightness(96%) contrast(108%);
}

/* testimonials */

/* contact */

.contact {
    padding: 100px 0 80px;
    background-color: #f5f5f5;
}

.contact_left form input,
.contact_left form textarea {
    margin-bottom: 25px;
    width: 100%;
    border: 1px solid #d6d6d6;
    color: #000;
    font-size: 12px;
    padding: 15px 20px;
    background-color: transparent;
}

.contact_left form textarea {
    height: 130px;
    resize: none;
}

.contact_left form button {
    border: none;
    background-color: unset;
}

.contact_right h2 {
    margin-bottom: 10px;
}

.contact_right p {
    color: #727171;
    margin-bottom: 20px;
}

.contact_right p b {
    color: #000;
}

.contact_right p b a {
    color: #000;
}

.contact_right {
    padding: 0 70px;
}

/* contact */

/* footer */

.footerSec {
    padding: 100px 0 30px;
    background-color: #1537aa;
}

.ftr_links h5 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}

.ftr_links h5::before {
    position: absolute;
    content: '';
    background-color: #445fbb;
    width: 160px;
    height: 1px;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.footer_contact h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 20px;
}

.ftr_lgo {
    padding-bottom: 30px;
    margin-bottom: 20px;
    /* border-bottom: 1px solid #4860b9; */
    width: fit-content;
}

.ftr_links ul li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.ftr_links ul li {
    margin-bottom: 20px;
}

.ftr_flx {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.ftr_links ul li a i {
    color: #ffed60;
    font-size: 16px;
    margin-right: 10px;
}

.ftr_socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ftr_socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    background-color: #ffed60;
    border-radius: 50%;
    height: 40px;
    width: 40px;
}

.ftr_btm {
    background-color: #1537aa;
    padding: 30px 0;
    border-top: 1px solid #445fbb;
}

.copy_txt p {
    text-align: center;
    color: #8a9bd5;
}

.ftr_lgo img {
    margin: 0 0 20px;
}

.ftr_lgo p {
    color: #fff;
    font-size: 14px;
    width: 90%;
}

.footer-media h5 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}

.footer-media h5:before {
    content: '';
    position: absolute;
    content: '';
    background-color: #445fbb;
    width: 160px;
    height: 1px;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* footer */

/* inner pages */

/* inner banner */

.inr_bnr_bg img {
    width: 100%;
    object-fit: cover;
    height: 500px;
}

.inr_banner_text {
    margin-top: 120px;
    text-align: center;
}

/* inner banner */

/* inner about */

.abt_inr_txr {
    margin-top: 50px;
}

.abt_inr_txr p {
    color: #808080;
    margin-bottom: 30px;
}

/* inner about */

/* who we teach */

.inr_service {
    padding: 80px 0 70px;
}

.ser_main.inr_srv {
    max-width: 340px;
}

.inr_service .col-lg-4 {
    display: flex;
    justify-content: center;
}

.inr_service .service_heading h2 {
    color: #000;
}

.inr_service .service_heading p {
    color: #696971;
}

.inr_service .service_heading {
    margin-bottom: 50px;
}

/* who we teach */

/* Instructors */

.instructors {
    padding: 80px 0 70px;
}

.instructors_heading {
    text-align: center;
    margin-bottom: 20px;
}

.instructors_heading h2 {
    color: #000000;
}

.instructors_heading p {
    color: #000000;
    width: 55%;
    margin: 0 auto;
}

.instructors_img {
    text-align: center;
}

.instructors_img img {
    border-radius: 10px;
    width: 400px;
    height: 500px;
    object-fit: cover;
}

.instructors_txt h3 {
    font-size: 23.07px;
    margin-bottom: 10px;
}

.instructors_txt h4 {
    font-size: 14.99px;
    margin-bottom: 10px;
}

.instructors_txt p {
    font-size: 14.61px;
    color: #9a9492;
    margin-bottom: 30px;
}

.instructors_txt {
    padding-right: 90px;
}

.row.align-items-center.instrt {
    margin-top: 50px;
}

/* Instructors */

/* contact page  */

.inr_contact {
    padding: 100px 0 80px;
}

.cont {
    padding: 100px 0 0px;
}

.cont_box h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

.cont_box h3::before {
    position: absolute;
    content: '';
    background-color: #445fbb;
    width: 260px;
    height: 1px;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.cont_box {
    border-radius: 10px;
    background-color: #1537aa;
    padding: 70px 30px 70px 30px;
}

.cont_box a {
    color: #ffffff;
    font-size: 13.38px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.cont_box p {
    color: #ffffff;
    font-size: 13.38px;
}

/* contact page  */

/* business class list */

.business {
    padding: 100px 0;
}

.business_img img {
    width: 100%;
    height: 500px !important;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
}

.business_content {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    padding: 60px 60px;
    margin: 0 auto;
    width: 95%;
    position: relative;
    margin-top: -80px;
    border-radius: 10px;
}

.business_content h2 {
    margin-bottom: 10px;
}

.business_content p {
    margin-bottom: 30px;
    color: #6d6d6d;
}

.business_content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.business_content ul li {
    color: #000;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 1px solid #cbcbcb;
}

.business_content ul li img {
    margin-right: 20px;
}

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

/* business class list */

/* Testimonial Section Start */

section.our-client-sec .client-box:hover .quotess::after {
    background: #1537aa;
}

.client-box .quotess {
    margin-left: 20px;
    position: relative;
    left: 0;
    top: 0;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #e3e7f2;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.client-box .quotess::after {
    content: "";
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #000000;
    color: #fff;
    font-size: 30px;
}

.client-box * {
    transition: all 0.9s;
}

.client-box .quotess::before {
    z-index: 2;
    color: #fff;
    font-size: 20px;
}

.client-ineer-box::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 5%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: #fff;
    border-bottom: 0;
    margin-left: 20px;
    margin-bottom: 20px;
    transform: rotate(180deg);
    filter: drop-shadow(2px 4px 6px #00000021);
}

.client-ineer-box {
    z-index: 2;
    background-color: #fff;
    padding: 60px 30px;
    position: relative;
    box-shadow: 0 0 10px 0 #00000022;
    background: #fff;
    border-radius: 10px;
    height: 300px;
}

.client-ineer-box ul {
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px 0;
}

.client-ineer-box ul li h4 {
    color: #000;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    text-transform: capitalize;
    font-weight: 500;
}

.client-ineer-box ul li h4 span {
    font-size: 14px;
    display: block;
    color: #7c7c7c;
    text-transform: capitalize !important;
    margin-top: 0px;
    font-weight: 500;
    font-family: "trajan";
}

.client-ineer-box ul li i {
    color: #ffc107;
    margin-right: 5px;
    font-size: 13px;
}

section.our-client-sec.themes-padd {
    padding: 120px 0;
}

.client-ineer-box p {
    font-size: 14px;
    margin: 0;
    opacity: 80%;
    font-weight: 500;
    color: #7c7c7c;
}

.client-box:hover .client-ineer-box {
    background-color: #1537aa;
}

.client-box:hover .client-ineer-box::before {
    border-top-color: #1537aa;
}

.client-box:hover .client-ineer-box ul li h4 {
    color: #ffffff;
}

.client-box:hover .client-ineer-box ul li h4 span {
    color: #ffffff;
}

.client-box:hover .client-ineer-box p {
    color: #ffffff;
}

.inr_client_heading p {
    color: #696971;
    width: 56%;
    margin: 0 auto;
}

.inr_client_heading {
    text-align: center;
    margin-bottom: 30px;
}

/* Testimonial Section End */

/* inner pages */

.bnr_bg video {
    width: 100%;
    height: 110vh;
    object-fit: cover;
}

html,
body {
    overflow-x: hidden;
}

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {
    .bnr_bg video {
        height: 190vh;
    }

    .menuSec ul li a {
        padding: 40px 10px;
    }

    .top-bar-right ul::before {
        right: 17%;
    }

    .d-block {
        display: inline;
    }

    h1 {
        font-size: 30px;
    }

    .bnr_social {
        width: 55%;
    }

    .abt_right::after {
        display: none;
    }

    h2 {
        font-size: 28px;
    }

    .abt_right p {
        margin-bottom: 20px;
    }

    .abt_right {
        padding: 30px 20px 20px 65px;
    }

    .service_heading p {
        width: 60%;
    }

    .testimonials_right {
        padding: 0px 0px;
    }

    .ftr_flx {
        gap: 0px;
        flex-direction: column;
    }

    .ftr_links h5::before {
        width: 120px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    header {
        position: unset;
    }

    .topSec {
        display: none;
    }

    .menuSection {
        background-color: #0b1183;
        padding: 15px 0 0;
    }

    .header-logo {
        position: absolute;
        top: 0;
        width: 15%;
    }

    .col_logo {
        order: 1;
        width: 50%;
    }

    .col_phone {
        order: 2;
        width: 50%;
    }

    .col_menu {
        order: 3;
        width: 100%;
    }

    .bnr_bg video {
        height: 600px;
    }

    h1 {
        font-size: 36px;
    }

    .banner_text p {
        margin-bottom: 20px;
    }

    .bnr_social {
        width: 70%;
    }

    .abt_right {
        padding: 30px 20px 30px 20px;
        margin-left: 0px;
    }

    .abt_right::after {
        display: none;
    }

    .abt_right h2 {
        margin-bottom: 20px;
    }

    h2 {
        font-size: 30px;
    }

    .abt_right h2::after {
        bottom: -10px;
    }

    .abt_right h2::before {
        bottom: -10px;
    }

    .abt_right p {
        margin-bottom: 20px;
    }

    .abt_left img {
        height: 710px;
    }

    .service_heading p {
        width: 80%;
    }

    .testimonials {
        padding: 90px 0;
    }

    .testimonials_btn {
        margin: 20px 0;
    }

    .testimonials_right {
        padding: 40px;
    }

    .testimonials_right p {
        color: #696971;
        margin-bottom: 20px;
    }

    .contact_right {
        padding: 0 10px;
    }

    .contact_left form input,
    .contact_left form textarea {
        margin-bottom: 15px;
    }

    .ftr_socials {
        margin-bottom: 40px;
    }

    .ftr_links ul li {
        margin-bottom: 10px;
    }

    .footerSec {
        padding: 60px 0;
    }

    .abt_left.inrabtleft img {
        height: 675px;
    }

    .inr_bnr_bg img {
        height: 400px;
    }

    .inr_banner_text {
        margin-top: 0px;
    }

    .abt_inr_txr p {
        margin-bottom: 20px;
    }

    .abt_inr_txr {
        margin-top: 30px;
    }

    .instructors_heading p {
        width: 80%;
    }

    .instructors_txt {
        padding-right: 0px;
    }

    .instructors_txt p {
        margin-bottom: 20px;
    }

    .inr_client_heading p {
        width: 85%;
    }

    .client-ineer-box {
        height: 350px;
    }

    .cont_box {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    header {
        position: unset;
    }

    .topSec {
        display: none;
    }

    .header-logo {
        width: 30%;
        z-index: 99;
        position: relative;
    }

    .menuSection {
        background: #060c5f;
        padding: 10px 0;
    }

    .bnr_bg video {
        width: 100%;
        height: 500px;
    }

    .d-block {
        display: inline;
    }

    h1 {
        font-size: 30px;
    }

    .banner_text p {
        margin-bottom: 10px;
    }

    .themebtn2 {
        gap: 5px;
        padding: 5px 5px 5px 10px;
        font-size: 12px;
    }

    .themebtn2 span {
        width: 40px;
        height: 30px;
        border-radius: 15px;
    }

    .banner_right {
        text-align: start;
    }

    .bnr_sco_icons::before {
        display: none;
    }

    .bnr_sco_icons {
        gap: 5px;
    }

    .bnr_sco_icons a {
        font-size: 12px;
        height: 35px;
        width: 35px;
    }

    .bnr_social {
        bottom: 6%;
        width: 90%;
        justify-content: space-between;
        left: 30px;
    }

    p {
        font-size: 13px;
        line-height: 20px;
    }

    .abt_left img {
        height: 450px;
    }

    .abt_right {
        padding: 30px;
        margin-left: 0;
        margin-top: 20px;
    }

    .abt_right p {
        margin-bottom: 15px;
    }

    .abt_right h2 {
        margin-bottom: 30px;
    }

    h2 {
        font-size: 25px;
    }

    .themebtn {
        gap: 5px;
        padding: 5px 5px 5px 10px;
        font-size: 12px;
    }

    .themebtn span {
        width: 40px;
        height: 30px;
        border-radius: 15px;
    }

    .abt_right::after {
        display: none;
    }

    .service_heading p {
        width: 100%;
    }

    .ser_main_txt {
        padding: 30px 20px 25px 20px;
    }

    .ser_main_txt p {
        margin-bottom: 15px;
    }

    .service {
        padding: 60px 0 50px;
    }

    .ser_main_txt h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .testimonials_main img {
        height: 300px;
        margin-bottom: 20px;
    }

    .testimonials {
        padding: 70px 0;
    }

    .testimonials_main h3 {
        font-size: 14px;
    }

    .testimonials_main h4 {
        font-size: 12px;
    }

    .testimonials_main p {
        font-size: 13px;
        line-height: 20px;
    }

    .testimonials_right {
        padding: 30px 20px 0;
    }

    .testimonials_right p {
        margin-bottom: 10px;
    }

    .custom_arrows button {
        width: 50px;
        height: 30px;
    }

    .testimonials_btn {
        margin: 20px 0;
    }

    .contact_left form input,
    .contact_left form textarea {
        margin-bottom: 10px;
        font-size: 12px;
        padding: 10px 10px;
    }

    .contact_right {
        padding: 30px 10px 0;
    }

    .contact_right p {
        margin-bottom: 15px;
    }

    .ftr_lgo {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #4860b9;
        width: 30%;
        margin: 0 auto 20px;
    }

    .footer_contact h5 {
        text-align: center;
    }

    .ftr_socials {
        justify-content: center;
        margin-bottom: 30px;
    }

    .ftr_links h5 {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .ftr_flx {
        gap: 0px;
        flex-direction: column;
    }

    .footerSec {
        padding: 40px 0;
    }

    .ftr_btm {
        padding: 20px 0
    }

    .inr_banner_text {
        margin-top: 0px;
    }

    .inr_bnr_bg img {
        height: 300px;
    }

    .abt_right h3 {
        font-size: 18px;
    }

    .abt_inr_txr p {
        margin-bottom: 15px;
    }

    .abt_inr_txr {
        margin-top: 30px;
    }

    .instructors_heading p {
        width: 100%;
    }

    .instructors_txt {
        padding-right: 0;
    }

    .instructors_txt p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .instructors_txt h3 {
        font-size: 16px;
    }

    .instructors_img img {
        width: 100%;
        height: 350px;
    }

    .menuSection::before {
        display: none;
    }

    .business_content {
        padding: 30px 20px;
    }

    .bus_flx {
        flex-direction: column;
    }

    .business_content ul li img {
        margin-right: 10px;
    }

    .business_img img {
        height: 400px;
    }

    .business {
        padding: 80px 0;
    }

    .cont_box h3::before {
        width: 100%;
    }

    .cont_box {
        padding: 40px 20px 40px 20px;
        height: 200px;
        margin-bottom: 30px;
    }

    .inr_contact {
        padding: 50px 0 70px;
    }

    .contact {
        padding: 60px 0 60px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {

    header {
        position: unset;
    }

    .topSec {
        display: none;
    }

    .header-logo {
        position: unset;
        top: 0;
        width: 40%;
        margin: 3px auto;
    }

    .headerbtn {
        text-align: center;
        margin-bottom: 10px;
    }

    .themebtn {
        gap: 5px;
        padding: 5px 5px 5px 10px;
        font-size: 12px;
    }

    .themebtn span {
        width: 40px;
        height: 30px;
        border-radius: 15px;
    }

    .bnr_bg video {
        width: 100%;
        height: 500px;
    }

    p {
        font-size: 12px;
        line-height: 20px;
    }

    .d-block {
        display: inline !important;
    }

    h1 {
        font-size: 20px;
    }

    .banner_text p {
        margin-bottom: 10px;
    }

    .themebtn2 {
        gap: 5px;
        padding: 5px 5px 5px 10px;
        font-size: 12px;
    }

    .themebtn2 span {
        width: 40px;
        height: 30px;
        border-radius: 15px;
    }

    .banner_right {
        text-align: start;
    }

    .bnr_sco_icons::before {
        display: none;
    }

    .bnr_sco_icons {
        gap: 5px;
    }

    .bnr_sco_icons a {
        font-size: 12px;
        height: 35px;
        width: 35px;
    }

    .bnr_social {
        bottom: 5%;
        width: 100%;
        justify-content: space-around;
        left: 0;
    }

    .abt_left img {
        border-radius: 7px;
        height: 300px;
    }

    .abt_right h2 {
        margin-bottom: 20px;
    }

    h2 {
        font-size: 17px;
    }

    .abt_right h2::before {
        bottom: -10px;
        width: 40px;
    }

    .abt_right h2::after {
        bottom: -10px;
    }

    .abt_right p {
        margin-bottom: 10px;
    }

    .abt_right {
        border-radius: 7px;
        padding: 20px;
        margin-left: 0px;
    }

    .service_heading p {
        width: 100%;
    }

    .service {
        padding: 50px 0 40px;
    }

    .ser_main_img img {
        height: 200px;
    }

    .ser_main_txt p {
        margin-bottom: 10px;
    }

    .ser_main_txt {
        padding: 20px 20px 20px 20px;
        border-radius: 0px 0px 7px 7px;
    }

    .ser_main_txt h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .bnr_social h5 {
        font-size: 13px;
    }

    .testimonials_main img {
        border-radius: 7px;
        height: 300px;
        margin-bottom: 15px;
    }

    .testimonials_main h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .testimonials_main p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .testimonials_main h4 {
        font-size: 11px;
    }

    .testimonials_right p {
        margin-bottom: 10px;
    }

    .testimonials_right {
        padding: 0px 20px;
    }

    .custom_arrows button {
        width: 50px;
        height: 30px;
    }

    .custom_arrows img {
        width: 16px;
        height: 8px;
    }

    .testimonials_btn {
        margin: 30px 0;
    }

    .contact_left form input,
    .contact_left form textarea {
        margin-bottom: 10px;
        font-size: 12px;
        padding: 10px 10px;
    }

    .contact_right {
        padding: 20px 0 0px;
    }

    .contact_right p {
        margin-bottom: 8px;
    }

    .ftr_lgo {
        padding-bottom: 15px;
        margin-bottom: 15px;
        width: 30%;
    }

    .footer_contact h5 {
        font-size: 15px;
        padding-bottom: 10px;
    }

    .ftr_links h5 {
        font-size: 15px;
        padding-bottom: 15px;
        margin-bottom: 15px;
        margin-top: 15px;
    }


    .ftr_socials {
        gap: 7px;
    }

    .ftr_socials a {
        font-size: 12px;
        height: 25px;
        width: 25px;
    }

    .ftr_links h5::before {
        width: 140px;
    }

    .ftr_links ul li a {
        font-size: 12px;
    }

    .ftr_links ul li {
        margin-bottom: 7px;
    }

    .ftr_links ul li a i {
        font-size: 12px;
        margin-right: 5px;
    }

    .ftr_btm {
        padding: 10px 0
    }

    .footerSec {
        padding: 50px 0;
    }

    .contact {
        padding: 50px 0 50px;
    }

    .testimonials {
        padding: 50px 0 20px;
    }

    .all-section {
        padding: 50px 0;
    }

    .inr_bnr_bg img {
        height: 200px;
    }

    .inr_banner_text {
        margin-top: 10px;
    }

    .abt_left.inrabtleft img {
        height: 300px;
    }

    .abt_right h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .abt_inr_txr {
        margin-top: 20px;
    }

    .abt_inr_txr p {
        margin-bottom: 10px;
    }

    .menuSection::before {
        display: none;
    }

    .instructors_heading p {
        margin: 5px auto;
        width: 100%;
    }

    .instructors_img img {
        border-radius: 7px;
        width: auto;
        height: 200px;
        margin-bottom: 20px;
    }

    .row.align-items-center.instrt {
        margin-top: 20px;
    }

    .instructors_heading {
        margin-bottom: 0px;
    }

    .instructors_txt {
        padding-right: 0;
    }

    .instructors_txt h3 {
        font-size: 12px;
        margin-top: 8px;
        margin-bottom: 5px;
    }

    .instructors_txt p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .instructors {
        padding: 50px 0 40px;
    }

    .inr_service .service_heading {
        margin-bottom: 30px;
    }

    .inr_service {
        padding: 50px 0 40px;
    }

    .inr_client_heading p {
        width: 100%;
    }

    .inr_client_heading {
        margin-bottom: 10px;
    }

    .client-ineer-box p {
        font-size: 12px;
    }

    .client-ineer-box ul li h4 span {
        font-size: 12px;
    }

    .client-ineer-box ul li h4 {
        font-size: 13px;
    }

    .client-ineer-box {
        padding: 40px 20px;
    }

    .client-ineer-box ul li i {
        margin-right: 2px;
        font-size: 10px;
    }

    .client-box .quotess {
        height: 60px;
        width: 60px;
        margin-bottom: 30px;
    }

    .client-box .quotess::after {
        height: 40px;
        width: 40px;
    }

    .client-box .quotess::before {
        font-size: 16px;
    }

    .client-box {
        margin-bottom: 20px;
    }

    section.our-client-sec.themes-padd {
        padding: 50px 0 10px;
    }

    .business {
        padding: 50px 0;
    }

    .business_img img {
        height: 250px;
        border-radius: 7px;
    }

    .business_content {
        padding: 30px 20px;
    }

    .business_content p {
        margin-bottom: 10px;
    }

    .bus_flx {
        flex-direction: column;
    }

    .business_content ul li {
        font-size: 12px;
        padding: 10px 0;
    }

    .business_content ul li img {
        margin-right: 5px;
    }

    .cont_box {
        border-radius: 7px;
        padding: 50px 20px 50px 20px;
        margin-bottom: 20px;
    }

    .cont_box h3 {
        font-size: 15px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .cont_box a {
        font-size: 12px;
    }

    .cont_box h3::before {
        width: 100%;
    }

    .inr_contact {
        padding: 30px 0 50px;
    }
}


/*Media Query End*/

.business_img .vc_single_image-wrapper.vc_box_border_grey {
    display: block;
}

.business_img figure.wpb_wrapper.vc_figure {
    width: 100%;
}

.single .post-thumbnail {
    display: none;
}

header.entry-header {
    display: none;
}

