@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
/* font-family: font-family: "Cinzel", serif; */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Poppins", sans-serif; */


html {
    width: 100%;
    overflow-x: hidden;
    font-size: 16px;
}

:root {
    --scroll-behavior: smooth;
    --default-body-font: "Poppins", sans-serif;
    --default-heading-font: "Cinzel", serif;
    --bg-white: #ffffff;
    --bgBlack: #2f0000;
    --bg-text-color: #E0BFB8;
    --bg-h1-color: #E0BFB8;
    --bg-sky: #4169E1;
    --bg-black: #000;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--default-body-font);
    height: auto;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.38;
    color: var(--bg-h1-color);
    background: var(--bgBlack);
}

img {
    max-width: 100%;
}

b,
strong {
    font-weight: 600;
}

p {
    margin: 0 0 20px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
.h1-heading,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--default-heading-font);
    color: var(--bg-h1-color);
    margin: 0 0 20px 0;
    font-weight: 400;
    padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

.h1-heading,
h1 {
    font-size: 80px;
    line-height: 1.18;
}

h2 {
    font-size: 50px;
    line-height: 1.18;
    margin: 0 0 10px 0;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

ul,
ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    margin: 0;
    padding: 0;
    font-family: var(--default-body-font);
    color: var(--bg-text-color);
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:hover {
    color: var(--bg-orange);
}

button {
    transition: all 0.3s ease-in-out;
}

input[type="number"],
input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: var(--bg-text-color);
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    color: var(--bgBlack);
    border: 1px solid #FFE5B8;
    height: 50px;
    padding: 0 16px;
    outline: none !important;
}

textarea {
    background-color: var(--bg-text-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    border: 1px solid #FFE5B8;
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 158px;
    outline: none !important;
}

select {
    border: 1px solid #FFE5B8;
    width: 100%;
    padding: 0 11px;
    background-color: var(--bg-text-color);
    background-image: url(../images/sort-down.svg);
    background-repeat: no-repeat;
    background-position: center right 16px;
    background-size: 16px;
    border-radius: 6px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

::placeholder {
    opacity: 1;
    color: var(--bg-black);
}

select::-ms-expand {
    display: none;
}


textarea {
    resize: none;
}

.cmn-btn {
    position: relative;
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    border-radius: 50px;
    text-transform: uppercase;
    overflow: hidden;
    color: var(--bg-text-color);
    border: 2px solid var(--bg-text-color);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
}

.cmn-btn:hover {
    background-color: var(--bg-h1-color);
    color: var(--bgBlack);
}

/* header */

.page-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 0;
    z-index: 999;
}

.page-header .container {
    max-width: 1500px;
}

.page-header .cmn-btn {
    padding: 11px 23px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    border-color: transparent;
    letter-spacing: 1px;
}

.image-link {
    display: inline-flex;
    padding: 11px 15px;
    max-width: 180px;
    border: 2px solid var(--bg-h1-color);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hd-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 200px);
    height: 2px;
    background-color: var(--bg-h1-color);
    z-index: -1;
}

.hd-border::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background-color: var(--bg-h1-color);
}

.hd-border::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background-color: var(--bg-h1-color);
}

.hrd-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bgBlack);
    top: -13px;
    z-index: 2;
}

.hrd-logo img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(8%) saturate(6472%) hue-rotate(296deg) brightness(105%) contrast(66%);
}

.hrd-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    height: 100%;
    background-color: var(--bgBlack);
    z-index: -1;
}

/* header end */

/* banner */

.banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 120px 0 30px;
}

.banner-img-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45%;
    z-index: -1;

}

.banner-img-rgt {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    z-index: -1;
}

.banner-wrap h1 {
    margin-bottom: 25px;
}

.banner-wrap p {
    font-size: 22px;
    margin-bottom: 55px;
}

.menu-wrap-list {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--bg-black);
    z-index: 99;
}

.menu-wrap-list.active {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.menu-wrap-list ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.menu-wrap-list ul li a {
    display: inline-block;
    font-family: var(--default-heading-font);
    font-weight: 500;
    font-size: 45px;
    border-bottom: 4px solid transparent;
}

.menu-wrap-list ul li a:hover,
.menu-wrap-list ul li.active a {
    border-color: var(--bg-h1-color);
}

.menu-wrap-list .cmn-btn {
    position: absolute;
    top: 30px;
    right: 30px;
}

.menu-wrap-list-in {
    padding: 30px 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* banner end */

/* Progress bar container */
.progress-container {
    width: 100%;
    background: var(--bg-text-color);
    height: 4px;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* Progress bar fill */
.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--bg-sky);
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step-form-img {
    background-color: var(--bg-white);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.step-form-img img {
    max-width: 250px;
}

.step-form-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 50px 0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-form-cont h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.step-form-cont-btn {
    margin-top: 20px;
}

.step-buttons-all {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    gap: 10px;
}

.step-buttons-all button {
    border: none;
    outline: none;
    font-size: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--bg-text-color);
    border-radius: 50%;
    color: var(--bg-black)
}

.step-buttons-all button:hover {
    background-color: var(--bg-sky);
    color: var(--bgBlack);
}

.txt-time {
    font-weight: 600;
    color: var(--bg-text-color);
    font-size: 14px;
    display: block;
    margin-top: 20px;
    padding-left: 20px;
    letter-spacing: 1px;
    position: relative;
}

.txt-time::before {
    content: '\f017';
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    font-family: 'fontawesome';
    font-size: 15px;
    font-weight: normal;
}

.form-step label {
    display: block;
    font-size: 35px;
    font-family: var(--default-heading-font);
    margin-bottom: 10px;
    color: var(--bg-h1-color);
}

.form-step small {
    font-size: 19px;
    margin-bottom: 20px;
    display: block;
}

.form-step small a {
    border-bottom: 1px solid var(--bg-text-color);
}

.form-step small a:hover {
    color: var(--bg-sky);
    border-color: var(--bg-sky);
}

.custom-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-options li {
    margin: 10px 0;
    padding: 9px 13px;
    border: 1px solid var(--bg-text-color);
}

.custom-checkbox {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px !important;
    margin: 0 !important;
    font-family: var(--default-body-font) !important;
    line-height: 1.5;
    display: inline-block;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid var(--bg-text-color);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--bg-text-color);
    border-color: var(--bg-text-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--bgBlack);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.inner-banner {
    min-height: auto;
}

.inner-banner {
    padding: 190px 0 90px;
    overflow: unset;
}

.inner-banner h1 {
    font-size: 55px;
}

.acco-sec {
    position: relative;
    z-index: 1;
}

.acco-warp .accordion-item {
    background: transparent;
    margin-bottom: 30px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--bg-text-color);
}

.acco-warp .accordion-button {
    background: transparent;
    font-family: var(--default-heading-font);
    color: var(--bg-text-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 35px;
    letter-spacing: 2px;
    line-height: 1;
    padding: 32px 40px;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    border: none;
}

.acco-warp .accordion-button:not(.collapsed),
.acco-warp .accordion-button:hover {
    background-color: var(--bg-h1-color);
    color: var(--bg-black);
}

.acco-sec {
    padding-bottom: 90px;
}

.accordion-body {
    padding: 30px 40px;
}

.accordion-body p {
    color: var(--bg-white);
    font-size: 20px;
}

.acco-sec .accordion-button::after {
    content: '\f063';
    font-family: 'fontawesome';
    font-size: 40px;
    right: 30px;
    width: 32px;
    height: 40px;
    position: absolute;
    transform: rotate(45deg);
    border: none;
    background: none;
}

.acco-warp .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

@media(max-width: 1199px) {

    .h1-heading,
    h1 {
        font-size: 50px;
        margin-bottom: 18px;
    }

    .banner-wrap p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .image-link {
        padding: 14px 16px;
        max-width: 150px;
        border: 1px solid var(--bg-h1-color);
    }

    .hrd-logo {
        top: -8px;
    }

    .page-header {
        padding: 18px 0;
    }

    .page-header .cmn-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media(max-width: 991px) {
    .step-form-img {
        padding: 40px;
        height: 300px;
    }

    .step-form-cont {
        margin-top: 30px;
    }
}

@media(max-width: 575px) {

    body {
        font-weight: 400;
        font-size: 14px;
        line-height: 1.3;
    }

    .hrd-left-btn {
        display: none;
    }

    .hrd-logo {
        position: relative;
        top: 0px;
        left: 0;
        transform: translate(0, 0);
    }

    .page-header .cmn-btn {
        background-color: var(--bg-h1-color);
        color: var(--bgBlack);
    }

    .image-link {
        padding: 8px 6px;
        max-width: 110px;
    }

    .page-header {
        padding: 14px 0;
    }

    .hrd-logo::before {
        width: calc(100% + 20px);
    }

    .hd-border {
        width: calc(100% - 170px);
        height: 1px;
    }

    .page-header .cmn-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .banner {
        padding: 100px 0 30px;
    }

    .h1-heading,
    h1 {
        font-size: 35px;
    }

    .banner-wrap p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .cmn-btn {
        padding: 15px 27px;
        font-size: 14px;
    }

    .step-form-cont h1 {
        font-size: 30px;
    }

    .step-form-img {
        padding: 40px;
        height: 170px;
    }

    h2 {
        font-size: 30px;
    }

    .form-step label {
        font-size: 28px;
    }

    .form-step small {
        font-size: 16px;
    }

    .custom-checkbox {
        font-size: 14px !important;
    }

    .step-buttons-all {
        position: relative;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        padding-top: 20px;
        gap: 16px;
    }

    .acco-warp .accordion-button {
        font-size: 16px;
        padding: 23px 17px;
        padding-right: 50px;
    }

    .acco-sec .accordion-button::after {
        font-size: 19px;
        right: 16px;
        width: 18px;
        height: 23px;
    }

    .accordion-body {
        padding: 20px 20px;
    }

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

    .acco-sec {
    padding-bottom: 40px;
}

.inner-banner h1 {
    font-size: 35px;
}

}