/*=====>=====>=====>*** CSS Variable Start Here ***<=====<=====<=====*/
:root {
    /* Color */
    --color-primary: #Fa4f19;
    --color-secondary: #411673;
    --color-tertiary: #ff5050;
    --color-quaternary: #7ed957;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-primary-dark: #1D0656;
    --color-purple-dark: #5F2C8E;
    --color-accent-purple: #E0B4FF;
    --color-black-soft: #101010;
    --color-dark-gray: #2C2C2C;
    --color-slate-gray: #3E3E3E;
    --color-gray-medium: #959595;
    --color-light-gray: #F8F8F8;
    --color-light-gray-blue: #F5F8FA;
    --color-gray-blue-light: #CBD6E2;
    --color-error:#dc3232;
    --color-success:#46b450;
    --bg-gradient-purple: linear-gradient(105.06deg, #561783 8.3%, #15054F 79.16%);
    /* Font Family */
    --font-poppins: 'Poppins';
    /* Font Sizes */
    --fs-48: 48px;
    --fs-38: 38px;
    --fs-34: 34px;
    --fs-26: 26px;
    --fs-25: 25px;
    --fs-20: 20px;
    --fs-19: 19px;
    --fs-18: 18px;
    --fs-17: 17px;
    --fs-16: 16px;
    /* Title Stroke */
    --title-stroke-width: 6px;
    --title-stroke-padding: 16px;
    --title-stroke-height: 70px;
    /* Space */
    --bn-top-space:150px;
    --top-space:106px;
    --sec-space: 100px;
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    /* Button Padding */
    --btn-padding:13px 32px;
}

/* Responsive Variable */
@media (max-width:1649px) {
    :root {
        --fs-48: 42px;
        --fs-38: 35px;
        --fs-34: 30px;
        --fs-26: 24px;
        --fs-25: 23px;
        --fs-20: 18px;
        --fs-19: 17px;
        --fs-18: 17px;
        --fs-17: 16px;
    }
}

@media (max-width:1399px){
    :root{
        --bn-top-space:120px;
    }
}

@media (max-width:1199px) {
    :root {
        --fs-48: 36px;
        --fs-38: 30px;
        --fs-34: 26px;
        --fs-26: 20px;
        --fs-25: 20px;
        --fs-20: 16px;
        --fs-19: 16px;
        --fs-18: 16px;
        --fs-17: 15px;
        /* Space */
        --sec-space: 80px;
        --space-60:50px;
        --space-50: 40px;
        --space-40: 30px;
    }
}

@media (max-width:991px) {
    :root {
        --fs-48: 32px;
        --fs-38: 28px;
        --fs-34: 24px;
        /* Title Stroke */
        --title-stroke-width: 4px;
        --title-stroke-padding: 10px;
        --title-stroke-height: 50px;
        /* Space */
        --bn-top-space:90px;
        --top-space:90px;
        --sec-space: 60px;
        --space-60:40px;
        --space-40: 25px;
        --space-50: 30px;
        /* Button Padding */
        --btn-padding:12px 25px;
    }
}

@media (max-width:575px) {
    :root {
        /* Space */
        --bn-top-space:70px;
        --top-space:80px;
        --sec-space: 50px;
        --space-60:30px;
        --space-50: 25px;
        --space-40: 20px;
        /* Button Padding */
        --btn-padding:10px 20px;
        /* Heading Line Height */
        --heading-line-height:1.2;
    }
}

/*=====>=====>=====>*** CSS Variable Close Here ***<=====<=====<=====*/
/*=====>=====>=====>*** Global CSS Start ***<=====<=====<=====*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--color-dark-gray);
    font-family: var(--font-poppins);
    font-weight: 400;
}

html:has(#wpadminbar) {
    margin-top: 0 !important;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all .5s ease-in-out;
}

img {
    max-width: 100%;
}

:where(input, select, button, textarea) {
    font-family: var(--font-poppins);
}

:where(input, select, button, textarea):focus {
    outline: none;
}

/* Container */
.container {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 15px;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1086px;
    }

    :where(.site-header, .site-footer, .site-banner) .container {
        max-width: 1180px;
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1286px;
    }

    :where(.site-header, .site-footer, .site-banner) .container {
        max-width: 1380px;
    }
}

@media (min-width:1650px) {
    :where(.site-header, .site-footer, .site-banner) .container {
        max-width: 1580px;
    }
}

/* Space */
.top-space {
    margin-top: var(--top-space);
}

.sec-top-space {
    padding-top: var(--sec-space);
}

.sec-bottom-space {
    padding-bottom: var(--sec-space);
}

.sec-block-space {
    padding-block: var(--sec-space);
}

/* List Style None */
.list-style-none,
.child-list-none ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

/* Border None */
.border-none{
    border-style: none;
}

/* Buttons */
.btn, .job-details-form-wrap input[type="submit"]{
    display: block;
    width: fit-content;
    padding: var(--btn-padding);
    border-radius: 15px;
    font-size: var(--fs-18);
    line-height: 1.556;
    font-weight: 500;
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.btn.btn-primary, .job-details-form-wrap input[type="submit"]{
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn.btn-primary:hover, .job-details-form-wrap input[type="submit"]:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn.btn-quaternary {
    background-color: var(--color-quaternary);
    color: #15054F;
}

.btn.btn-primary.hover-white:hover,
.btn.btn-quaternary.hover-white:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn.btn-white-border{
    border: 1px solid #FFFFFFCC;
    color: var(--color-white);
    background-color: transparent;
}

.btn.btn-white-border:hover{
    border: 1px solid var(--color-white);
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn.btn-white{
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn.btn-white:hover{
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Heading Left Border */
.title-stroke,
.parent-title-stroke :where(h1, h2) {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-column-gap: 8px;
    min-height: var(--title-stroke-height);
    padding-left: var(--title-stroke-padding);
    border-left: var(--title-stroke-width) solid var(--color-primary);
    line-height: var(--heading-line-height);
}

/*=====>=====>=====>*** Global CSS Close ***<=====<=====<=====*/
/*=====>=====>=====>*** Global Classes Start ***<=====<=====<=====*/

/* Text Colors */
.color-primary {
    color: var(--color-primary);
}

.color-secondary {
    color: var(--color-secondary);
}

.color-tertiary {
    color: var(--color-tertiary);
}

.color-quaternary {
    color: var(--color-quaternary);
}

.color-white {
    color: var(--color-white);
}

.color-black {
    color: var(--color-black);
}

.color-purple-dark {
    color: var(--color-purple-dark);
}

.color-black-soft {
    color: var(--color-black-soft);
}

.color-dark-gray {
    color: var(--color-dark-gray);
}

.color-slate-gray {
    color: var(--color-slate-gray);
}

.color-light-gray {
    color: var(--color-light-gray);
}

/* Background Colors */
.bg-primary {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.bg-tertiary {
    background-color: var(--color-tertiary);
}

.bg-quaternary {
    background-color: var(--color-quaternary);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-black {
    background-color: var(--color-black);
}

.bg-purple-dark {
    background-color: var(--color-purple-dark);
    color: var(--color-white);
}

.bg-black-soft {
    background-color: var(--color-black-soft);
}

.bg-dark-gray {
    background-color: var(--color-dark-gray);
}

.bg-slate-gray {
    background-color: var(--color-slate-gray);
}

.bg-light-gray {
    background-color: var(--color-light-gray);
}

/* Gradient Background */
.bg-gradient-purple {
    background: var(--bg-gradient-purple);
    color: var(--color-white);
}

/* Font Family */
.font-poppins {
    font-family: var(--font-poppins);
}

/* Font Sizes */
.fs-48,
.fs-parent-48>h1 {
    font-size: var(--fs-48);
    font-weight: 600;
    line-height: 1.2085;
}

.fs-38,
.fs-parent-38>h2 {
    font-size: var(--fs-38);
    font-weight: 600;
}

.fs-34,
.fs-parent-34>h2 {
    font-size: var(--fs-34);
}

.fs-26 {
    font-size: var(--fs-26);
}

.fs-25 {
    font-size: var(--fs-25);
    line-height: 1.25;
}

.fs-20 {
    font-size: var(--fs-20);
}

.fs-19,
.fs-parent-19>p {
    font-size: var(--fs-19);
    font-weight: 500;
    line-height:1.685;
}

.fs-18 {
    font-size: var(--fs-18);
}

.fs-17,
.fs-parent-17>p {
    font-size: var(--fs-17);
}

.fs-16{
    font-size: var(--fs-16);
    line-height:1.685;
}

/* Font Weight */
.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/* Text Alignment Classes */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Display Classes */
.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

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

.d-none {
    display: none;
}

/* Flex Classes */
.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-center {
    align-items: center;
}

.self-start {
    align-self: flex-start;
}

.self-end {
    align-self: flex-end;
}

.self-center {
    align-self: center;
}

/* Positions */
.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

/* Margin Classes */
.mx-auto{
    margin-inline: auto;
}

.mt-100{
    margin-top: var(--sec-space);
}

.mt-60{
    margin-top: var(--space-60);
}

.mt-50{
    margin-top: var(--space-50);
}

.mt-40{
    margin-top: var(--space-40);
}

/*=====>=====>=====>*** Global Classes Close ***<=====<=====<=====*/