/***********************************
----- Global 
***********************************/

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
@import url('https://kit-pro.fontawesome.com/releases/v5.14.0/css/pro.min.css');
:root {
    --color1: #ee0979;
    --color2: #ff6a00;
    --light: rgba(91, 134, 229, 0.1);
    --transparent: rgba(0, 0, 0, 0);
    --title: #333333;
    --text: #888888;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--color1);
    background-image: linear-gradient(to right, var(--color1) 0%, var(--color2) 100%);
    overflow-x: hidden;
    padding: 15px 0;
}

a,
a:hover,
a:focus {
    transition: all 0.3s ease !important;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.mod-icon {
    background: var(--color1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-bg {
    background: var(--color1);
    background-image: linear-gradient(to right, var(--color1) 0%, var(--color2) 100%);
}


/***********************************
----- Buttons 
***********************************/

.btn {
    transition: all 0.3s ease-in-out !important;
    border-radius: 5px;
    padding: 6px 15px;
    font-size: 15px;
    border-width: 2px;
    font-weight: 500;
}

.btn-main {
    background: var(--color1);
    background-image: linear-gradient(to right, var(--color1) 0%, var(--color2) 50%, var(--color1) 100%);
    background-size: 200% 100%;
    color: #fff;
    border-color: var(--transparent);
}

.btn-main:hover {
    background-position: 100% 0;
    color: #fff;
    border-color: var(--transparent);
}

.btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--title);
}

.btn-white:hover {
    background: var(--transparent);
    border-color: #fff;
    color: #fff;
}


/***********************************
----- Sections 
***********************************/

section {
    padding: 60px 0;
}

section.no-space {
    padding: 0;
}

section.no-bottom {
    padding-bottom: 0;
}


/***********************************
----- Navigation 
***********************************/

.navigation {
    background: #fff;
    padding: 20px 25px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 8px;
    margin-bottom: 15px;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    max-width: 200px;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 5px 15px !important;
}

.nav-link:hover {
    color: var(--color1);
}

.rr-nav-btn {
    position: relative;
    margin-left: 12px;
    text-align: center;
}

.navbar-nav {
    text-align: center;
    margin-top: 15px;
}

.navbar-toggler {
    color: #fff;
    background: #333;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    text-align: center;
    padding: 0;
}


/***********************************
----- Job Card
***********************************/

.job-center {
  padding: 70px 0;
  
  text-align: center;
}


.job-item {
    background: #fff;
    padding: 20px 25px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 8px;
    margin-bottom: 30px;
}

.job-title {
    position: relative;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.job-title h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.job-body {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -15px;
}

.job-left {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 0 15px;
}

.job-right {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 0 15px;
}

.job-desc {
    position: relative;
    margin-bottom: 15px;
}

.job-desc p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 0;
}

.job-img {
    position: relative;
}

.job-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


/***********************************
----- Register
***********************************/

.register {
    background: #fff;
    padding: 30px 35px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 8px;
    margin-bottom: 30px;
}

.reg-img {
    position: relative;
    margin-bottom: 30px;
}

.reg-img img {
    max-width: 100%;
    height: auto;
}

.reg-area {
    position: relative;
    text-align: center;
}

.reg-title {
    position: relative;
    margin-bottom: 30px;
}
.reg-txt2 {
    font-family: Poppins-Regular;
        font-size: 9px;
            line-height: 1.5;
            color: #666666;
}




.reg-title h2 {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 0;
}

.reg-form {
    position: relative;
}

.reg-form label {
    font-size: 17px;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.reg-input {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.reg-input i {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    color: #585858;
}

.reg-input input {
    background: #ececec;
    border: 0;
    padding: 10px 20px 10px 70px;
    height: auto;
    border-radius: 50px;
}

.reg-alert,
.otp-alert {
    color: #d10000;
    font-size: 15px;
}

.reg-btn {
    position: relative;
    margin-bottom: 10px;
}

.reg-btn button {
    padding: 8px 50px;
}

.reg-info {
    position: relative;
    margin-bottom: 15px;
}

.reg-info p {
    color: #585858;
    font-size: 14px;
    margin-bottom: 0;
}

.reg-info p strong {
    color: var(--color2);
    font-weight: 500;
    cursor: pointer;
}

.reg-info a {
    color: var(--color1);
}

.reg-info a:hover {
    color: var(--color2);
}

.reg-star {
    position: relative;
}

.reg-star p {
    color: #585858;
    font-weight: bold;
    font-size: 14px;
}


/***********************************
----- Popup
***********************************/

.otp-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #fff;
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    z-index: 9999;
    transform: translate(-50%, -50%);
    min-width: calc(100% - 30px);
    display: none;
}

.back-drop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 10001;
    display: none;
}


/***********************************
----- FAQ
***********************************/

.faq-card {
    position: relative;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    padding: 15px 25px;
    cursor: pointer;
}

.faq-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.faq-header i {
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 20px;
    background: var(--color1);
    background-image: linear-gradient(to right, var(--color1) 0%, var(--color2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header[aria-expanded=true] i::before {
    content: "\f068";
}

.faq-body {
    position: relative;
    background: rgb(255 255 255 / 80%);
    padding: 15px 25px;
    color: #525252;
}

.faq-body>*:last-child {
    margin-bottom: 0;
}


/***********************************
----- Responsive
***********************************/

@media (min-width: 576px) {}

@media (min-width: 768px) {
    body {
        padding: 50px 0;
    }
    .navigation {
        margin-bottom: 30px;
    }
    .navbar-nav {
        text-align: left;
        margin-top: 0;
    }
    .nav-link {
        padding: 0 15px !important;
    }
    .reg-img {
        margin-bottom: 0;
    }
    .otp-popup {
        padding: 30px 40px;
        min-width: unset;
        max-width: 600px;
    }
    .register {
        padding: 60px 50px;
    }
    .navigation {
        padding: 25px 35px;
    }
    .faq-header {
        padding: 20px 30px;
    }
    .faq-header h5 {
        font-size: 18px;
    }
    .faq-body {
        padding: 20px 30px;
    }
    .job-item {
        padding: 30px;
    }
}

@media (min-width: 769px) {
    .job-left {
        flex: 0 0 65%;
        max-width: 65%;
    }
    .job-right {
        flex: 0 0 35%;
        max-width: 35%;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}