@charset "utf-8";
/* CSS Document */
/*===========================
  COMMON css 
===========================*/

:root {
    --font-family: "Inter", sans-serif;
    --primary: #d9534f;
    --primary-dark: #1c3ab6;
    --primary-light: #e2f1ff;
    --accent: #00d4d7;
    --accent-dark: #00bac1;
    --accent-light: #dff9f8;
    --success: #13d527;
    --success-dark: #00ae11;
    --success-light: #eafbe7;
    --secondary: #8f15d5;
    --secondary-dark: #6013c7;
    --secondary-light: #f4e5fa;
    --info: #15b2d5;
    --info-dark: #0f8ca8;
    --info-light: #e0f5fa;
    --caution: #dbbb25;
    --caution-dark: #d58f15;
    --caution-light: #fbf9e4;
    --error: #e6185e;
    --error-dark: #bf1257;
    --error-light: #fce4eb;
    --black: #1d1d1d;
    --dark-1: #2d2d2d;
    --dark-2: #4d4d4d;
    --dark-3: #6d6d6d;
    --gray-1: #8d8d8d;
    --gray-2: #adadad;
    --gray-3: #cdcdcd;
    --gray-4: #e0e0e0;
    --light-1: #efefef;
    --light-2: #f5f5f5;
    --light-3: #fafafa;
    --white: #ffffff;
    --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
    --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
    --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
    --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
    --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
    --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
    --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
    --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
    --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
    --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16);
    --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04), 0px 2px 4px rgba(96, 97, 112, 0.16);
    --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04), 0px 4px 8px rgba(96, 97, 112, 0.16);
    --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04), 0px 8px 16px rgba(96, 97, 112, 0.16);
    --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04), 0px 16px 24px rgba(96, 97, 112, 0.16);
    --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08), 0px 20px 32px rgba(96, 97, 112, 0.24);
}

body {
    font-family: var(--font-family);
    color: var(--black);
    font-size: 16px;
}

@media (max-width: 991px) {
    body {
        font-size: 14px;
    }
}

img {
    max-width: 100%;
}

a {
    display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--black);
    margin: 0px;
}

h1,
.h1 {
    font-size: 2.75em;
    line-height: 1.25;
}

h2,
.h2 {
    font-size: 2.25em;
    line-height: 1.25;
}

h3,
.h3 {
    font-size: 1.75em;
    line-height: 1.25;
}

h4,
.h4 {
    font-size: 1.5em;
    line-height: 1.25;
}

h5,
.h5 {
    font-size: 1.25em;
    line-height: 1.25;
}

h6,
.h6 {
    font-size: 0.875em;
    line-height: 1.25;
}

.display-1 {
    font-size: 5.5em;
    line-height: 1.25;
}

.display-2 {
    font-size: 4.75em;
    line-height: 1.25;
}

.display-3 {
    font-size: 4em;
    line-height: 1.25;
}

.display-4 {
    font-size: 3.25em;
    line-height: 1.25;
}

p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-3);
    margin: 0px;
}

.text-small {
    font-size: 0.875em;
    line-height: 1.5;
}

.text-lg {
    font-size: 1.15em;
    line-height: 1.5;
}

.bg_cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.btn {
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.btn:hover {
    color: inherit;
}

.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn.btn-lg {
    font-size: 1.15em;
    padding: 16px 24px;
}

.btn.btn-sm {
    padding: 8px 16px;
}

.btn.square {
    border-radius: 0px;
}

.btn.semi-rounded {
    border-radius: 12px;
}

.btn.rounded-full {
    border-radius: 50px;
}

.btn.icon-left span,
.btn.icon-left i {
    margin-right: 8px;
}

.btn.icon-right span,
.btn.icon-right i {
    margin-left: 8px;
}

.btn.icon-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    line-height: 48px;
}

.btn.icon-btn.btn-lg {
    width: 56px;
    height: 56px;
    line-height: 56px;
}

.btn.icon-btn.btn-sm {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

/* ===== Buttons Css ===== */

.primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

.active.primary-btn,
.primary-btn:hover,
.primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}

.deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

.primary-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.active.primary-btn-outline,
.primary-btn-outline:hover,
.primary-btn-outline:focus {
    background: var(--primary-dark);
    color: var(--white);
}

.deactive.primary-btn-outline {
    color: var(--dark-3);
    border-color: var(--gray-4);
    pointer-events: none;
}

/* One Click Scrool Top Button*/

.scroll-top {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--yellow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #fff !important;
    border-radius: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    border-radius: 5px;
}

.scroll-top:hover {
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    background-color: var(--dark-1);
}

/*===========================
  Section Title Five CSS
===========================*/

.section-title-five {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-five {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .section-title-five {
        margin-bottom: 35px;
    }
}

.courses .section-title-five h6 {
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 14px 60px;
    font-size:20px;
}

.section-title-five h6 {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 8px 30px;
}

.section-title-five h2 {
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-five h2 {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 767px) {
    .section-title-five h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
    }
}

.section-title-five p {
    color: var(--dark-3);
}

.made-in-ayroui {
    position: fixed;
    left: 5px;
    bottom: 5px;
    z-index: 999;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.made-in-ayroui:hover {
    transform: translateY(-5px);
}

/*===========================
  NAVBAR css 
===========================*/

.navbar-toggler:focus {
    box-shadow: none;
}

.mb-100 {
    margin-bottom: 100px;
}

/*===== NAVBAR NINE =====*/

.navbar-area.navbar-nine {
    background: var(--white);
    padding: 10px 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    box-shadow: 1px 0 16px rgb(0 0 0 / 26%);
}

.sticky {
    position: fixed !important;
    z-index: 99 !important;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    top: 0;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine {
        padding: 10px 0;
    }
}

.navbar-area.navbar-nine .navbar-brand {
    margin: 0;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
}

.navbar-area.navbar-nine .navbar {
    position: relative;
    padding: 0;
}

.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    margin: 5px 0;
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-collapse {
        position: absolute;
        top: 116%;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        z-index: 8;
        padding: 10px 16px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
    .navbar-area.navbar-nine .navbar .navbar-nav {
        margin-left: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav {
        margin-right: 0;
    }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
    position: relative;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    display: flex;
    align-items: center;
    padding: 11px 16px;
    color: var(--primary);
    text-transform: capitalize;
    position: relative;
    border-radius: 5px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin: 14px 0;
    opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
    opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
        padding: 10px 0;
        display: block;
        border: 0;
        margin: 0;
    }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
    opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
    font-size: 12px;
    font-weight: 700;
    padding-left: 7px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
        position: relative;
        top: -5px;
    }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
    position: absolute;
    left: 0;
    top: 130%;
    width: 230px;
    background-color: var(--white);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    padding: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all none ease-out 0s;
        -moz-transition: all none ease-out 0s;
        -ms-transition: all none ease-out 0s;
        -o-transition: all none ease-out 0s;
        transition: all none ease-out 0s;
        box-shadow: none;
        text-align: left;
        border-top: 0;
        height: 0;
    }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: auto;
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
        height: 0;
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
        height: auto;
    }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
    position: relative;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
    color: var(--black);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    position: relative;
    color: var(--dark-2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    margin: 0 0;
    z-index: 5;
    opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
    font-weight: 700;
    font-size: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
        display: none;
    }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
    display: inline-block;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
        margin-left: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
        visibility: visible;
        height: auto;
        position: relative;
    }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
    color: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
        color: var(--primary);
    }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a {
    color: var(--primary);
    padding-left: 22px;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a i {
    color: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a {
        color: var(--primary);
    }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a::after {
    opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a::before {
    opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 115%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-nav-toggler {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 10px 14px;
        font-size: 16px;
        background: none;
        border: 0;
        color: var(--white);
    }
}

.navbar-area.navbar-nine .navbar .navbar-btn {
    margin-top: 6px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-area.navbar-nine .navbar .navbar-btn {
        position: absolute;
        right: 70px;
        top: 7px;
    }
}

@media (max-width: 767px) {
    .navbar-area.navbar-nine .navbar .navbar-btn {
        position: absolute;
        right: 60px;
        top: 7px;
    }
}

.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
    font-size: 22px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(238, 238, 238, 0.425);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
    border-color: transparent;
    color: var(--primary);
    background-color: var(--white);
}

/*===== SIDEBAR ONE =====*/

.sidebar-left {
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--white);
    height: 100%;
    width: 350px;
    padding-top: 80px;
    z-index: 999;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
    text-align: left;
}

.sidebar-left.open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

@media (max-width: 767px) {
    .sidebar-left {
        width: 250px;
    }
}

.sidebar-left .sidebar-close {
    position: absolute;
    top: 30px;
    right: 30px;
}

.sidebar-left .sidebar-close .close {
    font-size: 18px;
    color: var(--black);
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.sidebar-left .sidebar-close .close:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidebar-left .sidebar-content {
    padding: 0px 30px;
}

.sidebar-left .sidebar-content .sidebar-menu {
    margin-top: 30px;
}

.sidebar-left .sidebar-content .sidebar-menu .menu-title {
    font-size: 18px;
    font-weight: 600;
}

.sidebar-left .sidebar-content .sidebar-menu ul {
    margin-top: 15px;
}

.sidebar-left .sidebar-content .sidebar-menu ul li a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 8px 0;
    color: var(--dark-3);
    text-transform: capitalize;
    position: relative;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: block;
}

.sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.sidebar-left .sidebar-content .text {
    margin-top: 20px;
}

.sidebar-left .sidebar-content .sidebar-social {
    margin-top: 30px;
}

.sidebar-left .sidebar-content .sidebar-social .social-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.sidebar-left .sidebar-content .sidebar-social ul li {
    display: inline-block;
    margin-right: 5px;
}

.sidebar-left .sidebar-content .sidebar-social ul li:last-child {
    margin: 0;
}

.sidebar-left .sidebar-content .sidebar-social ul li a {
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 50%;
    font-size: 18px;
    color: #666;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: transparent;
}

.overlay-left {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 99;
}

.overlay-left.open {
    display: block;
}

/* ===== Buttons Css ===== */

.header-eight .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}

.header-eight .active.primary-btn,
.header-eight .primary-btn:hover,
.header-eight .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}

.header-eight .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/

.header-eight {
    position: relative;
    padding: 160px 0 100px 0;
    /* background: var(--primary); */
    background-image: /* linear-gradient(rgba(217,83,79,0.5),rgba(217, 83, 79, 0.5)) */linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)),url('../../../images/rrins_theme/slide6.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-eight {
        padding: 130px 0 80px 0;
    }
}

@media (max-width: 767px) {
    .header-eight {
        padding: 100px 0 60px 0;
    }
}

.header-eight .header-image img {
    width: 100%;
    border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .header-eight .header-image {
        margin-top: 40px;
    }
}

.header-eight .header-content {
    border-radius: 0;
    position: relative;
    z-index: 1;
    text-align: left;
}

.header-eight .header-content h1 {
    font-weight: 700;
    color: var(--white);
    text-shadow: 0px 3px 8px #00000017;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-eight .header-content h1 {
        font-size: 35px;
        line-height: 45px;
    }
}

@media (max-width: 767px) {
    .header-eight .header-content h1 {
        font-size: 30px;
        line-height: 42px;
    }
}

.header-eight .header-content h1 span {
    display: block;
}

.header-eight .header-content p {
    margin-top: 30px;
    color: var(--white);
    opacity: 1;
    font-size: 20px;
}

.header-eight .button {
    margin-top: 40px;
}

.header-eight .primary-btn {
    margin-right: 12px;
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid transparent;
}

.header-eight .primary-btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.header-eight .video-button {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header-eight .video-button {
        margin-top: 20px;
    }
}

.header-eight .video-button .text {
    display: inline-block;
    margin-left: 15px;
    color: var(--white);
    font-weight: 600;
}

.header-eight .video-button .icon-btn {
    background: var(--white);
    color: var(--primary);
}

/*===========================
  about-05 css
===========================*/

.about-five {
    background-color: var(--light-3);
    padding-top: 120px;
    padding-bottom: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-five {
        padding-top: 100px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .about-five {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

.about-five-content {
    padding-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-five-content {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .about-five-content {
        padding-left: 0;
    }
}

.about-five-content .small-title {
    position: relative;
    padding-left: 30px;
}

.about-five-content .small-title::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    background-color: var(--primary);
    height: 2px;
    width: 20px;
    margin-top: -1px;
}

.about-five-content .main-title {
    margin-top: 20px;
}

.about-five-content .about-five-tab {
    margin-top: 40px;
}

.about-five-content .about-five-tab .nav {
    border: none;
    background-color: var(--light-1);
    padding: 15px;
    border-radius: 5px;
}

.about-five-content .about-five-tab .nav .nav-pills {
    border: none;
}

.about-five-content .about-five-tab .nav .nav-link {
    border: none;
    color: var(--dark-1);
    font-weight: 600;
    font-size: 15px;
    padding: 0;
    margin-right: 20px;
    position: relative;
    background-color: var(--white);
    padding: 10px 18px;
    border-radius: 4px;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .about-five-content .about-five-tab .nav .nav-link {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }
    .about-five-content .about-five-tab .nav .nav-link:last-child {
        margin: 0;
    }
}

.about-five-content .about-five-tab .nav .nav-link:hover {
    color: var(--primary);
}

.about-five-content .about-five-tab .nav .nav-link.active {
    background-color: var(--primary);
    color: var(--white);
}

.about-five-content .about-five-tab nav button:last-child {
    margin-right: 0;
}

.about-five-content .about-five-tab .tab-content {
    border: none;
    padding-top: 30px;
}

.about-five-content .about-five-tab .tab-content p {
    margin-bottom: 20px;
}

.about-five-content .about-five-tab .tab-content p:last-child {
    margin: 0;
}

.about-image-five {
    padding-left: 60px;
    position: relative;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-image-five {
        margin-bottom: 70px;
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .about-image-five {
        margin-bottom: 60px;
        padding-left: 0;
    }
}

.about-image-five .shape {
    position: absolute;
    left: 30px;
    top: -30px;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-image-five .shape {
        left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-image-five::before {
        right: -15px;
        bottom: -15px;
    }
}

@media (max-width: 767px) {
    .about-image-five::before {
        display: none;
    }
}

.about-image-five img {
    width: 100%;
    z-index: 2;
}

/*===========================
  services css 
===========================*/

.services-eight {
    padding: 50px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .services-eight {
        padding: 80px 0 50px 0;
    }
}

@media (max-width: 767px) {
    .services-eight {
        padding: 60px 0 30px 0;
    }
}

.services-eight .single-services {
    padding: 30px 20px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    box-shadow: 4px 9px 15px rgba(0, 0, 0, 0.7);
    background: var(--primary);
}

.services-eight .single-services:hover {
    box-shadow: var(--shadow-4);
    background: var(--white);
    /* transform: translateY(-10px); */
    /* transform: rotateX(360deg); */
    /* transform: rotateY(360deg); */
    /* transform: rotate(360deg); */
    /* transform: rotate(3deg); */
    transform: scale(1.05);
    border-radius: 0px;
}

.services-eight .single-services:hover .service-icon {
    color: var(--white);
    border-color: #fff;
    background: var(--primary);
}

.services-eight .single-services:hover .service-content h4,.services-eight .single-services:hover .service-content p{
    color: var(--black);
}

.services-eight .single-services:hover .service-icon::after {
    opacity: 1;
    visibility: visible;
    border: 1px solid var(--white);
}

.services-eight .single-services .service-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    margin-bottom: 25px;
    background: var(--white);
    border: 2px solid var(--primary);
    display: flex;
    margin-left: 36%;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 40px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
}

.services-eight .single-services .service-icon::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    background: var(--primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: -1;
    border-radius: 50%;
    border: 1px solid transparent;
}

.services-eight .single-services .service-content h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--white);
}

.services-eight .single-services .service-content p {
    color: var(--white);
    font-size: 13px;
}

/*===== VIDEO ONE =====*/

.video-one {
    background-color: var(--light-3);
    padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video-one {
        padding: 80px;
    }
}

@media (max-width: 767px) {
    .video-one {
        padding: 60px 0;
    }
}

.video-one .video-title h5 {
    font-weight: 600;
    color: var(--primary);
}

.video-one .video-title h2 {
    font-weight: 700;
    color: var(--black);
    margin-top: 10px;
}

.video-one .video-title .text-lg {
    margin-top: 24px;
    color: var(--dark-3);
}

.video-one .video-content {
    position: relative;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.video-one .video-content img {
    border-radius: 8px;
}

.video-one .video-content a {
    width: 88px;
    height: 88px;
    line-height: 88px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding-left: 3px;
}

@media (max-width: 767px) {
    .video-one .video-content a {
        width: 68px;
        height: 68px;
        line-height: 68px;
        font-size: 20px;
    }
}

.video-one .video-content a:hover {
    background-color: var(--white);
    color: var(--primary);
}



/*--------------------------------------------------------------
# Counter
--------------------------------------------------------------*/
.counter-box {
  color: #fff;
  text-align: center;
}
@media (min-width: 577px) {
  .counter-box {
    margin-bottom: 1.8rem;
  }
}

.counter-ico {
  /* margin-bottom: 1rem; */
}
.counter-ico .ico-circle {
  height: 60px;
  width: 60px;
  line-height: 1.5;
  box-shadow: 0 0 0 10px #cde1f8;

}

.counter-num .counter {
  font-size: 3rem;
  margin-bottom: 0;
  color: #fff;
}

.bg-image {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1024px) {
  .bg-image {
    background-attachment: scroll;
  }
}

.overlay-mf {
  background-color: #d9534f;
}

.overlay-mf {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}

.paralax-mf {
  position: relative;
  padding: 8rem 0;
}



/* avail MBA start */

    .studytour .left img{
    width:100%;
    height:600px;
}
.studytour .right{
    background-color:#333;
    height:auto;
    padding:50px;
    display:flex;
    flex-direction:column;
    align-items: flex-start;
    justify-content: center;
    height:600px;
}

.studytour .right .text1{
    color:#f6c640;
    font-size:22px;

}

.studytour .right .text2{
    color:#e84c3d;
    font-size:50px;
    line-height:60px;
    font-weight:600;
}
@media only screen and (max-width:500px){
    .studytour .right .text2{
        font-size:30px!important;
        line-height:30px;
    }
}

.studytour .right .text3{   
    color:#f6c640;
    font-size:20px;
}

.studytour .right button{
    width:150px;
    height:40px;
    background-color:#e84c3d;
    color:#fff;
    border-radius: 0px;
    transition:0.5s;
    border: none;
}

.studytour .right button:hover{
    background-color:#c83426;
}



@media only screen and (max-width:991px){
    .studytour .left{
        display:none!important;
    }
   
}

/* avail MBA end */


/* Reset CSS */
.img_gallary {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.img_gallary {
    background: linear-gradient(45deg,#cc9b4f, #d9534f);
    padding: 15px;
}
.img_gallary img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}

/* Main CSS */
.grid-wrapper > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.grid-wrapper > div > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}
.grid-wrapper .wide {
    grid-column: span 2;
}
.grid-wrapper .tall {
    grid-row: span 2;
}
.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}


/* image gallary end */


/* our recruiters */

.recruiters h5{
  font-size: 40px;
  color: #253c80;
}
.carousel-cell2 {
  width: 20%;
  height: 150px;
  margin-right: 30px;
  margin-bottom: 30px;
  
  padding:0px;
  counter-increment: carousel-cell;  
}
.carousel-cell2 img{
  height: 80%;
  width: 100%;
  padding: 0px;
  margin: 20px;
  box-shadow:4px 9px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
@media screen and (max-width:767px){
  .carousel-cell2{
    width: 50%;
    height: 120px;
    margin-right: 10px;
    margin-bottom: 20px;
  }

}

/* our recuiters */


/* courses section start */

    .courses .card{
        border: 0px;
        box-shadow: 4px 9px 15px rgba(0, 0, 0, 0.5);
        border-radius: 0px;
        transition: 500ms;
        height: 280px;
    }
    .courses .card:hover{
        transform: translateY(-15px);
    }
    .courses .card-img-top{
        border-radius: 0px;
        height: 150px;
    }
    .courses .card .card-body .card-title{
        font-size: 18px;
    }
    .courses .card .card-body .card-text{
        font-size: 14px;
    }

/* courses section end */


/* certification section start */

.training_partners img{
    /* box-shadow: 4px 9px 15px rgba(0, 0, 0, 0.3); */
    margin: 40px 0px;
}

/* certification section end */


/* footer start */

.footer-section {
  background: #d9534f;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #fff;
}
.single-cta i {
  color: var(--yellow);
  font-size: 30px;
  float: center;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #fff;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 10px;
}
.footer-logo img {
    width: 300px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 13px;
      color: #fff;
  line-height: 20px;
  word-spacing: 1px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
    background: #1da1f2;
}

.youtube-bg{
  background: red;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--yellow);
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: var(--yellow);
}
.footer-widget ul li a {
  color: #fff;
  text-transform: capitalize;
  font-size: 12px;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #fff;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #f2901d;
    padding: 13px 20px;
    border: 1px solid #f2901d;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
  margin-bottom: -20px;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: var(--yellow);
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}
.apply_button button{
  font-size: 16px;
  border: 2px solid var(--yellow);
  background: var(--yellow);
  padding: 6px 30px 10px 30px;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
}
.apply_button button:hover{
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

/* footer end */
/*############################# NEW #############################*/
header.inner-header {
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    padding: 10px 0;
    background: #f7f7f7;
}
.inner-header .logout a#dropdownMenuButton {
    padding-right: 25px;
}
.inner-header .logout .dropdown.show .dropdown-menu.show {
    left: 0;
    transform: translate3d(-25px, 50px, 0px) !important;
}
button.ui.blue.button.pay_now_btn {
    color: #fff;
}
a.btn.btn-link.frmReg, a.btn.btn-link.frmLogin, a.btn.btn-link.forPwd.showifvalid {
    width: 100%;
    color: #ffc107;
}
.link3{
    display: inline-block;
    color: #000;
}
.link3:hover{
    color: #ad0a20;
    text-decoration: none;
}
button#removecoupon {
    background: #80070d;
    border-color: #80070d;
    color: #fff;
}
.bg-secondary {
    background-color: #456b69 !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active
{
 -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}
input:-webkit-autofill
{
 -webkit-text-fill-color: #000 !important;
}

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
button#applycoupon {
    padding: 6px 15px;
    background: #faa73b;
}
#paymentform .form-control, #fdsformsteps .form-control {
    height: 35px !important;
    font-size: 14px !important;
    color: #555 !important;
    background-color: #f8f9fa !important;
    border: 1px solid #ced4da !important;
}
button.ui.blue.button.pay_now_btn {
    padding: 5px 15px;
    background: #456b69 ;
}
.position-ref.full-height.form_sec .form_title {
    color: #000;
}
.copyright {
    background: #3e485b;
    width: 100%;
    padding: 10px 0 0;
    color: #fff;
    position: relative;
    z-index: 99;
}
.copyright h6 {
    color: #fff;
    font-weight: 300;
    line-height: 21px;
    font-size: 14px;
    margin-bottom: 7px;
}
.copyright h6 a {
    color: #ffc107;
    font-weight: 600;
}

.banner_form_sec .form-control:disabled, .banner_form_sec .form-control[readonly] {
    background: #333333;
    color: #fff;
}
.walkin-btn {
    display: inline-block;
    font-size: 16px;
    background: #ff4638;
    color: #fff;
    padding: 8px 40px;
    position: absolute;
    top: 25px;
    right: 0;
}
.jconfirm-box.jconfirm-hilight-shake.jconfirm-type-default.jconfirm-type-animated {
    padding: 0;
    background: #dc3545;
}
.jconfirm-title-c {
    background: #fae1e3;
    padding: 10px !important;
    font-size: 18px !important;
}
.jconfirm-content-pane {
    background: #dc3545;
    color: #fff;
    padding: 10px;
    font-size: 14px !important;
    line-height: 19px !important;
    margin: 0 !important;
}
.jconfirm .jconfirm-box .jconfirm-buttons {
    padding-bottom: 10px;
    padding-right: 10px;
}
.jconfirm-cell {
    background: rgba(0,0,0,0.6);
}
.placement_wrap {
    padding: 70px 0 0;
    position: relative;
    background: #bbc0c7;
}
.placement_wrap::before {
    position: absolute;
    content: '';
    background: url(../../../images/rrins_theme/about_course_bg.jpg) no-repeat top right / 100% 100%;
    width: 35%;
    /*height: calc(100% + 200px);*/
    height: 100%;
    top: 0px;
    right: 0;
}
.placement_wrap h2 {
    font-size: 70px;
    font-weight: 700;
    color: #0d1931;
    margin: 0 0 60px 40px;
}
.placement_wrap .icon_content_sec {
    margin-left: 3%;
}
.placement_wrap .icon_content_sec ul li {
    margin-bottom: 20px; 
    float: none;
    display: block;
}
.placement_wrap .icon_content_sec ul li:nth-child(1) {
    width: 54%;
}
.placement_wrap .icon_content_sec ul li:nth-child(2) {
    width: 64%;
}
.placement_wrap .icon_content_sec ul li:nth-child(3) {
    width: 74%;
}
.placement_wrap .icon_content_sec ul li:nth-child(4) {
    width: 84%;
}
.placement_wrap .icon_text {
    background: #811615;
    float: none;
    width: 100%;
    height: 92px;
    position: relative;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.placement_wrap .icon_content_sec ul li:nth-child(2) .icon_text, .placement_wrap .icon_content_sec ul li:nth-child(4) .icon_text {
    background: #0d1931;
}
.placement_wrap .icon_text p {
    font-size: 27px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    text-align: left;
    line-height: 31px;
    position: absolute;
    top: 50%;
    left: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.icon_numbers {
    width: 170px;
    text-align: center;
    float: right;
    background: #fff;
    height: 100%;
    font-size: 44px;
    font-weight: 700;
    color: #ff4638;
    line-height: 92px;
    position: relative;
    padding-left: 12px;
}
.icon_numbers::after {
    position: absolute;
    content: '';
    border-top: 46px solid transparent;
    border-left: 30px solid #fff;
    border-bottom: 46px solid transparent;
    top: 0;
    right: -30px;
}
#dataFormRegistration input.btn.btn-warning.btn-block {
    margin-top: 5px;
}
#dataFormRegistration a.btn.btn-danger.btn-block.frmLogin {
    margin-top: 10px;
}
#dataFormLogin a.btn.btn-danger.btn-block.frmReg {
    margin-top: 10px;
}
.form-panel {
    background: rgba(0,0,0,.8);
    padding: 30px 25px;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    min-height: 370px;
    color: #fff;
    border-radius: 0px;
    border-right: 10px solid #fff;
}
.form-panel .form_title{
    color:#fff;
}
.form-panel .register-panel{
    margin-top: 20px;
}
.form-panel .line{
    position: relative;
    height: 2px;
    background: rgba(255,255,255,.3);
}
.form-panel .line:before{
    position: absolute;
    left: 0;
    width: 20%;
    height: 100%;
    background: #f8a125;
    content: '';
}
.form-panel h4{
    font-weight: 700;
}
.form-panel a{
    display: inherit;
    color: #fff;
}
.form-panel a.frmLogin{
    padding-top:5px;
    padding-bottom:5px;
}
.form-panel a:hover {
    color: #ffc107;
}
.form-panel input[type=submit]{
    padding-top:5px;
    padding-bottom:5px;
}
.banner-call-btn {
    display: inline-block;
    font-size: 20px;
    background: #ffc107;
    color: #000;
    padding: 8px 30px;
    position: absolute;
    z-index: 999;
    top: 393px;
    left: 60px;
}
.banner-call-btn:hover {
    background: #ff4638;
    color: #fff;
}
.apply-now-btn {
    display: inline-block;
    font-size: 20px;
    background: #ffc107;
    color: #000;
    padding: 10px 40px;
    margin: 20px 0 0 0px;
}
.apply-now-btn:hover {
    background: #ff4638;
    color: #fff;
}
header.inner-header .logo img {
    width: auto;
    height: 56px!important;
}
.card-header, .card-footer {
    border-color: rgba(0, 0, 0, 0.03);
    background: #456b69;
    color: #fff;
}
#fdsformsteps .card-header a, #fdsformsteps .card-footer a {
    color: #fff !important;
}
/*.select2-container--default .select2-selection--single {
    background-color: rgb(117, 117, 117);
    border: 1px solid rgb(117, 117, 117);
    border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 28px;
    background-color:rgb(117, 117, 117);
}*/
.banner_form_sec ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.banner_form_sec ::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.banner_form_sec :-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.banner_form_sec :-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.invalid-feedback {
    margin-top: 0;
    line-height: 13px;
}
.innerCont.xim_admin {
    padding: 70px 0;
    background: #efefef;
}
.recruiters_wrap .desktop_display {
    display: block;
}
.recruiters_wrap .mobile_display {
    display: none;
}
.inner-header .logo {
    margin: 0 !important;
}
#dataFormRegistration .country-list-container {
    z-index: 9 !important;
}




