body {
    padding: 0;
    margin: 0;
    font-family: "poppinsregular";
}

a {
    cursor: pointer;
}

button {
    cursor: pointer;
}



@font-face {
    font-family: "poppinsbold";
    src: url("/font/poppins-bold-webfont.woff2") format("woff2"),
        url("/font/poppins-bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "poppinslight";
    src: url("/font/poppins-light-webfont.woff2") format("woff2"),
        url("/font/poppins-light-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "poppinsmedium";
    src: url("/font/poppins-medium-webfont.woff2") format("woff2"),
        url("/font/poppins-medium-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "poppinsregular";
    src: url("/font/poppins-regular-webfont.woff2") format("woff2"),
        url("/font/poppins-regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

h1,
p {
    margin: 0;
}

h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 60px;
}

h3 {
    font-size: 22px;
}

p {
    /* color: rgba(0, 0, 0, 0.6); */
    line-height: 22px;
    margin: 20px 0px;
}

a {
    text-decoration: none;
}

.blue-button {
    background-color: #2f8deb;
    color: white;
    padding: 10px 30px;
    border-radius: 10px;
    width: max-content;
    border: none;
    font-size: 16px;
    word-spacing: 1px;
    letter-spacing: 0.8px;
}

.blue-button:hover {
    background: #fff;
    color: #2f8deb;
}

.white-button {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 10px 30px;
    border-radius: 10px;
    width: max-content;
    border: none;
    font-size: 16px;
    word-spacing: 1px;
    letter-spacing: 0.8px;
}

.container {
    width: 1520px;
    margin: 0 auto;
}

.home-main {
    background-image: url("/index-images/home-main-bg-top.png");
    background-repeat: no-repeat;
    padding-bottom: 40px;
    background-size: contain;
}

.part-2 {
    background-image: url("/index-images/home-main-bg-bottom.png");
    background-repeat: no-repeat;
    background-position: top;
}

/* mobile-menu */

#mobile-menu {
    display: block;
    position: relative;
    top: 50px;
    left: 50px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#mobile-menu a {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
}

#mobile-menu a:hover {
    color: #448eee;
}

#mobile-menu input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#mobile-menu span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #2f8deb;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#mobile-menu span:first-child {
    transform-origin: 0% 0%;
}

#mobile-menu span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#mobile-menu input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
}

#mobile-menu input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#mobile-menu input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#toggle-menu {
    position: absolute;
    width: 300px;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#toggle-menu li {
    padding: 10px 0;
    font-size: 22px;
}

#mobile-menu input:checked~ul {
    transform: none;
}

/* end */

.home-main .container .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.home-main .container .nav-bar .menu ul {
    display: flex;
    align-items: center;
    list-style-type: none;
}

.home-main .container .nav-bar .menu ul li {
    padding: 10px 20px;
    font-size: 18px;
}

.home-main .container .nav-bar .menu ul li:hover {
    background: aliceblue;
    border-radius: 18px;
}



.home-main .container .nav-bar .header-buttons .login-btn {
    padding: 10px 30px;
    margin-right: 12px;
    background: #eaf4fd;
    border: none;
    border-radius: 10px;
    color: #2f8deb;
    font-size: 18px;
    font-weight: 600;
}

.home-main .container .nav-bar .header-buttons .sign-up-btn {
    padding: 10px 30px;
    background-color: #2f8deb;
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
}

.menu {
    overflow: hidden;
}

.menu a {
    float: left;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.submenu-dropdown {
    float: left;
    overflow: hidden;
}

.submenu-dropdown .dropbtn {
    border: none;
    outline: none;
    color: rgb(0, 0, 0);
    padding: 15px 20px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.menu a:hover,
.submenu-dropdown:hover .dropbtn {
    background-color: #0000000a;
    border-radius: 10px;
}

.submenu-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
    margin-left: 35px;
    border-radius: 20px;
}

.submenu-dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.submenu-dropdown:hover .submenu-dropdown-content {
    display: block;
}

.home-main-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 40px 150px 0 150px;
}

.home-main-title h1 {
    font-size: 43px;
    font-weight: 700;
    text-align: center;
    line-height: 75px;
}

.home-main-title p {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    color: #00000099;
    line-height: 30px;
    padding: 0px 20px 0 20px;
}

.resume-wrapper .container {
    width: auto !important;
    margin-left: 20px !important;
}

.home-main-title .create-resume-btn {
    padding: 15px;
    background-color: #2f8deb;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.home-main-title h1 span {
    color: #2f8deb;
    background-image: url("/index-images/home-main-title-span-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0px 100%;
    margin: 10px;
    padding: 0px 0px 20px 5px;
}

.home-main-resume {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    background-image: url(/images/roun);
}

.home-main-resume img:nth-child(3) {
    margin-left: -58px;
    margin-bottom: -70px;
    z-index: 0;
}

.home-main-resume img:nth-child(2) {
    margin-left: -33px;
    margin-top: -70px;
    z-index: 1;
}

.home-main-resume img:nth-child(1) {
    margin-left: -33px;
}

.part-2 p {
    text-align: center;
}

.company-logo {
    padding: 30px 0;
}

.company-logo .container {
    display: flex;
    justify-content: center;
}

.company-logo .container img {
    border: 2px solid rgba(0, 0, 0, 0.11);
    padding: 10px;
    border-radius: 10px;
}

.company-logo-img img {
    width: 250px;
    height: 160px;
    margin: 0 10px;
    object-fit: contain;
}

.feature-design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 50px 0;
}

.feature-design-list {
    padding: 0 50px;
}

.feature-design .container {
    background-color: rgba(247, 249, 252, 1);
    border-radius: 50px;
    padding-top: 50px;
}

.feature-design-grid:nth-child(4) {
    border: none;
    padding-bottom: 0;
    padding-bottom: 50px;
}

.feature-design .container h2 {
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

.so-much-more .container {
    display: flex;
}

.so-much-more .container .right {
    width: 60%;
    text-align: center;
}

.so-much-more .left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 22px;
}

.so-much-more .left p {
    text-align: left;
    margin: 0;
}

.so-much-more .blue-button {
    margin-top: 10px;
}

.so-much-more .left h2 {
    margin-bottom: 0;
}

.so-much-more {
    padding: 80px 0;
}

.use-the-best {
    background: rgba(234, 244, 253, 1);
    padding: 80px 0;
}

.use-the-best h2 {
    margin-top: 0;
}

.use-the-best h2 {
    width: 50%;
    margin: 0 auto;
}

.use-the-best-btn .white-button i.fa.fa-play-circle {
    font-size: 20px;
    margin-right: 8px;
}

.use-the-best p {
    width: 70%;
    margin: 20px auto;
}

.use-the-best .use-the-best-under {
    display: flex;
}

.use-the-best .right .right-desc {
    display: flex;
}

.use-the-best .container h2,
p {
    text-align: center;
}

.use-the-best-btn {
    text-align: center;
    padding-top: 15px;
}

.use-the-best-btn .blue-button {
    margin-right: 15px;
}

.use-the-best-under .right .description p {
    margin: 0;
}

.use-the-best-under .right .description h3 {
    text-align: left;
}

.use-the-best-under {
    padding-top: 66px;
}

.use-the-best-under .right .right-desc .icon {
    margin-right: 25px;
}

.use-the-best-under .right .right-desc .description h3 {
    margin: 0;
}

.use-the-best-under .right .right-desc {
    padding: 20px 0;
}

.use-the-best-under .right .right-desc .description p {
    text-align: left;
    padding-top: 15px;
}

.use-the-best-under .right {
    width: 45%;
    padding-top: 20px;
}

.use-the-best-under .left {
    width: 55%;
}

.create-story .container {
    display: flex;
}

.create-story .left p {
    text-align: left;
    margin-bottom: 35px;
}

.create-story {
    padding: 70px 0;
    padding-bottom: 35px;
}

.create-story h2 {
    margin-top: 0;
}

.user-friendly-btn {
    display: flex;
    justify-content: center;
    padding-top: 22px;
    gap: 30px;
}

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

.user-friendly .container {
    width: 50%;
}

.user-friendly {
    background-image: url("/index-images/user-friendly-bg.png");
    padding: 70px 0;
}

.user-friendly h2 {
    color: white;
    margin-top: 0;
}

.user-friendly p {
    color: white;
    line-height: 24px;
}

.footer {
    background: rgba(0, 14, 29, 1);
    padding-top: 70px;
}

.footer .container {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    padding-bottom: 25px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}

.footer-menu a {
    color: white;
    line-height: 40px;
}

.footer-menu-title h4 {
    color: white;
    font-size: 24px;
    margin-top: 10px;
}

.footer-icons img {
    height: 40px;
    padding-right: 10px;
}

.footer-icons {
    padding-top: 30px;
}

.copy-right {
    color: white;
    padding: 10px 0;
    margin: 0;
    background: #000e1d;
}

.copy-right p {
    color: white;
}

.feature-design-grid p {
    text-align: justify;
}

/* faq */

.faq-accordion-btn {
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    padding: 16px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 24px;
    transition: 0.4s;
    font-weight: 500;
    background: transparent;
    font-family: "poppinsregular";
}

.faq .container {
    margin: 0 auto;
}

.faq-ans-panel p {
    text-align: left;
    color: rgba(0, 0, 0, 1);
    letter-spacing: 0.6px;
    font-family: "poppinsregular";
}

.faq {
    text-align: center;
    padding: 70px 0;
    font-family: "poppinsregular";
}

.faq-ans-panel {
    padding: 0 18px;
    display: none;
    background-color: rgba(234, 244, 253, 0.8);
    overflow: hidden;
    font-family: "poppinsregular";
    width: 88%;
    margin-left: 18px;
    border-radius: 10px;
    border-bottom: 1px solid rgb(0 0 0 / 19%);
    margin-top: 10px;
}

.faq-ans-panel ul {
    text-align: left;
    line-height: 25px;
}

.faq-ans-panel li {
    margin-left: 45px;
    margin-top: 12px;
    letter-spacing: 0.6px;
}

/* steps */

.steps {
    width: 100%;
    background-color: #f1faee;
    padding: 25px 100px;
    border-radius: 7px;
    box-shadow: 0px 5px 10px #e5e5e5;
}

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

.numbers>div {
    height: 1em;
    padding: 1em;
    border-radius: 50%;
    aspect-ratio: 1;
    background-color: #e63946;
    color: #fefae0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    box-shadow: 0px 5px 10px #e5e5e5;
}

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

.buttons button {
    margin: none;
    border: none;
    font-size: 1em;
    padding: 0.2em 0.5em;
    inline-size: auto;
    background-color: #e63946;
    border-radius: 8px;
    color: #f1faee;
    box-shadow: 0px 5px 10px #e5e5e5;
}

.message {
    display: flex;
    justify-content: center;
    font-size: 1.2em;
}

.buttons button:hover {
    background-color: #c51e3a;
}

.create-resumebottom {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

/* resume-slider */

.resume-template-slider .container {
    display: flex;
    padding: 60px 0;
    justify-content: center;
}

.resume-template-slider .left {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.resume-template-slider .right {
    width: 70%;
}

.resume-template-slider .left p {
    text-align: left;
    margin-bottom: 26px;
}

.resume-template-slider .left h2 {
    margin-bottom: 10px;
}

.resume-template-slider {
    background: rgba(247, 249, 252, 1);
}

.resume-template-slider .owl-theme .owl-nav {
    display: none;
}

.resume-template-slider .owl-item {
    margin: 1;
}

.resume-template-slider .owl-carousel .owl-item img {
    width: 100%;
}

.faq-qes {
    display: flex;
    align-items: center;
}

.fa-plus-circle:before {
    content: "\f055";
    font-size: 27px;
    color: #2f8deb;
}

.fa-minus-circle:before {
    content: "\f056";
    font-size: 27px;
    color: #2f8deb;
}

.faq-ans-panel {
    display: none;
}

.faq-ans-panel.visible {
    display: block;
}

/* testimonial */
.testimonial-main .owl-nav button {
    background: #2f8deb !important;
    color: #fff !important;
    width: 30px;
    height: 30px;
    line-height: 20px !important;
    border-radius: 50px;
}

.testimonial-main .owl-carousel .owl-item img {
    width: 70px;
    height: 70px;
}

.testimonial-main button.owl-prev {
    position: absolute;
    top: 50%;
    left: -50px;
    font-size: 30px !important;
}

.testimonial-main button.owl-next {
    position: absolute;
    top: 50%;
    right: -25px;
    font-size: 30px !important;
}

.testimonial-main {
    padding-bottom: 60px;
}

.testi-star img {
    width: 25px !important;
    height: 25px !important;
}

.testimonial h2 {
    text-align: center;
}

.testimonial-img img {
    width: 100px;
    height: 100px;
}

.testi-img-content {
    text-align: left;
    line-height: 0px;
}

.testi-img-content h3 {
    text-align: left;
}

.testi-img-content p {
    text-align: left;
    margin: 0;
}

.testi-img-content h3 {
    margin-bottom: 18px !important;
}

.testimonial-parts .upper {
    display: flex;
    gap: 20px;
}

.testimonial-parts .lowwer {
    text-align: center;
}

.testimonial #left {
    left: -5%;
}

.testimonial #right {
    right: -5%;
}

.testimonial {
    max-width: 1520px;
    width: 100%;
    position: relative;
}

.testimonial i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 34.79px 0px rgba(0, 0, 0, 0.07);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.testimonial i:active {
    transform: translateY(-50%) scale(0.85);
}

.testimonial i:first-child {
    left: -22px;
}

.testimonial i:last-child {
    right: -22px;
}

.testimonial .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 0px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel .card {
    scroll-snap-align: start;
    list-style: none;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 10px 0px;
    padding: 30px;
}

.carousel .card .img {
    background: #8b53ff;
    height: 148px;
    width: 148px;
    border-radius: 50%;
}

.card .img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.carousel .card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
}

.carousel .card span {
    color: #6a6d78;
    font-size: 1.31rem;
}

.testimonial-parts .lowwer p {
    padding: 0px 0px;
}

.testimonial-parts .upper {
    display: flex;
}

.testimonial {
    display: none;
}

#mobile-menu {
    display: none !important;
}

.nav-bar {
    display: block;
}

.footer-mobile-logo {
    display: none;
}

.footer-mobile-icons {
    display: none;
}

/* testimonial */

.testimonial-title .section-title h2 {
    width: 60%;
    margin: 0 auto;
    margin-top: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-borders span {
    height: 5px;
    background: #6aaf08;
    width: 40px;
    display: inline-block;
    border-radius: 2px;
}

.section-borders span.black-border {
    background: #333;
    width: 30px;
    margin: 0 6px;
}

.client-testimonial-carousel .owl-dots button {
    height: 5px;
    background: #2f8deb !important;
    width: 20px;
    display: inline-block;
    margin: 5px;
    transition: 0.2s;
    border-radius: 2px;
}

.client-testimonial-carousel button.owl-dot.active {
    background: #000 !important;
    width: 30px;
}

.client-testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.single-testimonial-item {
    position: relative;
    margin: 5px 6px;
    padding-right: 20px;
    font-style: italic;
    border-radius: 20px;
}

.single-testimonial-item:before {
    display: none;
}

.single-testimonial-item:after {
    background: #ddd;
    content: "";
    height: 70%;
    left: 60px;
    position: absolute;
    top: 10%;
    width: 1px;
}

.single-testimonial-item h3 {
    font-size: 20px;
    font-style: normal;
    margin-bottom: 0;
}

.single-testimonial-item h3 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
}

.testi-star {
    display: flex;
    margin-top: 10px;
}

.single-testimonial-item:after {
    display: none;
}

.owl-carousel .owl-item img {
    display: flex;
    width: auto;
}

.testimonial-parts {
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.2), 0 2px 6px 0 rgba(0, 0, 0, 0.13);
    padding: 20px;
    border-radius: 20px;
}

.footer-mobile-icons-mobile {
    display: none;
}

.footer-mobile-icons-desktop {
    display: none;
}

/* create-resume */

.create-resume-button-container {
    margin-bottom: 20px;
    text-align: left;
}

.create-resume button {
    padding: 10px 15px;
    margin-right: 10px;
    cursor: pointer;
}

.create-resume-content-section {
    padding: 15px;
    margin-top: 10px;
    display: flex;
    justify-content: left;
    align-items: center;
    justify-content: space-between;
}

.resume-section-left p {
    text-align: left;
}

.create-perfect-resume .container {
    margin: 0 auto;
    text-align: center;
}

.resume-section-left h2 {
    text-align: left;
}

/* .resume-section-right img {
    height: 300px;
    width: 300px;
} */

.create-resume-container {
    border-top: 1px solid rgba(0, 0, 0, 0.22);
    padding-top: 40px;
}

.create-resume-title-section {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 40px;
}

.create-resume-title-section h2 {
    margin: 0px;
}

.create-resume-button-container button {
    margin-right: 10px;
    border: 0;
    font-size: 16px;
}

.resume-section-left {
    width: 60%;
}

.create-perfect-resume {
    background: rgba(234, 244, 253, 1);
    background-image: url("/index-images/create-resume-bg-left.png");
    background-repeat: no-repeat;
}

.faq h2 {
    margin-top: 0;
}

.create-perfect-resume {
    background: rgba(234, 244, 253, 1);
    background-image: url(/index-images/create-resume-bg-right.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

.home-main .part-1 .home-main-title .blue-button:hover {
    background: rgba(234, 244, 253, 1);
}

.so-much-more .container .left .blue-button:hover {
    background: rgba(234, 244, 253, 1);
}

.create-story .left .blue-button:hover {
    background: rgba(234, 244, 253, 1);
}

.form-container .update_btn {
    text-align: justify;
}














/* responsiive */

@media (max-width: 1699px) {
    .container {
        width: 1220px;
    }

    .feature-design .container h2 {
        width: 75%;
    }

    .carousel .card {
        width: 350px;
    }

    .testimonial #left {
        left: -1%;
    }

    .testimonial #right {
        right: 0%;
    }

    .home-main-resume img:nth-child(3) {
        margin-bottom: -58px;
    }

    .company-logo-img img {
        width: 230px;
        height: 115px;
    }

    .use-the-best .use-the-best-under {
        gap: 60px;
    }

    .use-the-best-under .left img {
        width: 95%;
    }

    .testimonial-title .section-title h2 {
        width: 100%;
    }
}

@media (max-width: 1599px) {
    .home-main-resume img:nth-child(1) {
        margin-left: 30px;
    }

    h2 {
        font-size: 35px;
        line-height: 45px;
    }
}

@media (max-width: 1499px) {
    .testimonial {
        display: none;
    }

    .company-logo-img img {
        width: 189px;
        height: 105px;
        margin: 0 10px;
        object-fit: contain;
    }

    .company-logo {
        padding: 50px 0 0 0;
    }
}

@media (max-width: 1399px) {
    .container {
        width: 1100px;
    }
    .form-container .form-group {
        flex: 0 1 48% !important;
     }

    .testimonial {
        display: none;
    }

    .company-logo-img img {
        width: 190px;
        height: 105px;
    }

    h2 {
        font-size: 32px;
        line-height: 50px;
    }

    .feature-design .container h2 {
        width: 65%;
    }

    h3 {
        font-size: 20px;
    }

    .feature-design-grid .grid img {
        width: 50px;
    }

    .feature-design-grid p {
        text-align: left;
    }

    .so-much-more .left {
        width: auto;
    }

    .so-much-more .right {
        width: auto;
    }

    .so-much-more .right img {
        width: 500px;
    }

    .so-much-more {
        padding: 65px 0;
    }

    .use-the-best {
        padding: 65px 0;
    }

    .resume-template-slider .right {
        width: 45%;
    }

    .resume-template-slider .left {
        width: 45%;
    }

    .create-story .left {
        width: 55%;
    }

    .create-story .right {
        width: 45%;
    }

    .create-story .right img {
        width: 500px;
    }

    .user-friendly {
        padding: 65px 0;
    }

    .footer .container {
        justify-content: space-around;
        width: auto;
    }

    .user-friendly .container {
        width: 65%;
    }

    .use-the-best-under .left img {
        width: 500px;
    }

    .use-the-best-under .right {
        width: 55%;
        margin-left: 50px;
    }

    .use-the-best-under .right .right-desc .description h3 {
        line-height: 23px;
    }

    .use-the-best-under .left {
        width: 45%;
    }

    .feature-design-grid {
        padding-bottom: 20px;
        padding-top: 40px;
    }

    .home-main-title {
        padding: 40px 60px 0 60px;
    }

    .home-main-title h1 {
        font-size: 42px;
    }

    .home-main-title h1 span {
        background-position: 0px 98%;
        margin: 0px;
        padding: 0px 10px 20px 10px;
        background-size: contain;
    }
}

@media (max-width: 1299px) {
    .container {
        width: 1000px;
    }

    section.home-main .container {
        width: 90%;
    }
}

@media (max-width: 1199px) {
    .company-logo-img img {
        width: 155px;
        height: 80px;
    }

    .search-bar {
        width: 75% !important;
    }
    .job-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .card-container {
        display: grid !important;
        gap: 20px !important;
        justify-content: space-between;
        grid-template-columns: 1fr 1fr;
    }

    .feature-design .container {
        width: 900px;
    }

    .user-friendly .container {
        width: 75%;
    }

    section.home-main .container {
        width: 95%;
    }
}

@media (max-width: 1099px) {
    .create-story .right img {
        width: 100%;
    }

    .search-bar-input {
        width: 85% !important;
    }

    .footer-menu-title h4 {
        font-size: 20px;
    }

    .footer-menu a {
        font-size: 14px;
    }

    .footer-icons img {
        height: 30px;
    }
}

@media (max-width: 1024px) {
    .container {
        width: 900px;
    }

    .create-story .left {
        width: 50%;
    }

    .create-story .right {
        width: 50%;
    }

    .use-the-best-under .left img {
        width: 450px;
    }

    .use-the-best-under .right-desc img {
        width: 50px;
    }

    .use-the-best-under .right-desc h3 {
        line-height: 25px;
    }

    .logo img {
        width: 75%;
    }

    .submenu-dropdown .dropbtn {
        padding: 15px 20px;
    }

    .home-main .container .nav-bar {
        padding: 15px 0;
    }

    .home-main .container .nav-bar .header-buttons .login-btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .home-main .container .nav-bar .header-buttons .sign-up-btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .submenu-dropdown .dropbtn {
        font-size: 16px;
    }

    .menu a {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .home-main-resume img:nth-child(3) {
        width: 30%;
        margin-bottom: -22px;
    }

    /* .profile-fix-header {
        width: calc(100% - 150px) !important;
    } */

    .content {
        margin-left: auto !important;
        width: 85% !important;
    }

    .job-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .home-main-resume img:nth-child(1) {
        width: 30%;
        margin-left: 15px;
    }

    .home-main-resume img:nth-child(2) {
        width: 40%;
        margin-top: -55px;
    }

    .company-logo .container {
        display: grid;
        justify-content: center;
        gap: 25px;
        width: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .create-resume-content-section {
        flex-direction: column;
    }

    .create-resume-button-container {
        margin-bottom: 20px;
        text-align: center;
    }

    .company-logo-img img {
        width: -webkit-fill-available;
        height: 100px;
    }
    .nav-bar {
        display: none !important;
    }

    #mobile-menu {
        display: block !important;
    }

    #mobile-menu {
        top: 22px;
        left: 10px;
    }

    #mobile-menu input:checked~ul {
        transform: none;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .mobile-menu-account-btn {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        justify-content: center;
        gap: 15px;
    }

    .feature-design-grid {
        grid-template-columns: 1fr;
    }

    .feature-design .container h2 {
        margin: auto;
    }

    .feature-design .container {
        width: auto;
        border-radius: 0;
    }

    .feature-design-grid .grid {
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        padding-bottom: 30px !important;
    }

    .feature-design-grid {
        border-bottom: none;
    }

    .feature-design-grid {
        gap: 35px;
    }

    .feature-design-grid {
        padding-top: 15px;
    }

    .so-much-more .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: auto;
        padding: 0 50px;
        gap: 35px;
    }

    .so-much-more .right img {
        width: -webkit-fill-available;
    }

    .so-much-more {
        padding: 20px 0;
    }

    .so-much-more .left {
        align-items: center;
    }

    .use-the-best .use-the-best-under {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .use-the-best .container {
        width: auto;
    }

    .use-the-best-under .left {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .use-the-best-under .right {
        width: 100%;
        margin-left: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: auto;
    }

    .create-story .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: auto;
    }

    .create-story .left {
        width: auto;
    }

    .create-story .right img {
        width: -webkit-fill-available;
    }

    .create-story {
        padding: 50px 50px;
    }

    .create-story .left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .create-story h2 {
        text-align: center;
    }

    .create-story .left p {
        text-align: center;
    }

    .create-story .left p {
        margin-top: 0;
    }

    h2 {
        font-size: 26px;
        line-height: 40px;
    }

    .user-friendly {
        padding: 50px 0;
    }

    .user-friendly-btn {
        padding-top: 10px;
    }

    .footer .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .footer-menu-title h4 {
        margin-bottom: 10px;
        text-align: center;
    }

    .home-main-title h1 {
        line-height: 70px;
    }

    .so-much-more .left p {
        text-align: center;
    }

    .use-the-best h2 {
        width: 100%;
    }

    .use-the-best p {
        width: 90%;
    }

    .user-friendly .container {
        width: 90%;
    }

    .faq {
        padding: 50px 20px;
    }

    .home-main-title p {
        font-size: 20px;
    }

    .footer-icons {
        display: none;
    }

    .footer-logo {
        display: none;
    }

    .footer .container {
        gap: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0 30px;
        justify-content: center;
        align-items: baseline;
    }

    .footer-menu-title h4 {
        height: 35px;
        letter-spacing: 0.8px;
    }

    .footer-mobile-icons {
        display: block;
    }

    .footer-mobile-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }

    .footer-mobile-icons-mobile {
        display: flex;
        justify-content: center;
        /* border-bottom: 1px solid white; */
    }

    .footer .container {
        border-bottom: none;
       }

       button.btn-back {
        margin-left: 82%;
    }

    .progress-bar {
        gap: 20px;
    }

    button.btn-back {
        margin-left: 82%;
    }

    .progress-bar {
        gap: 20px;
    }

    .footer-mobile-icons-mobile img {
        height: 30px;
        padding: 10px;
    }

    .footer-mobile-icons-desktop {
        display: none;
    }

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

    .footer-menu a {
        line-height: 32px;
    }

    .footer-menu-title:nth-child(4) {
        margin-bottom: 22px;
    }

    .faq .container {
        width: auto;
    }

    .resume-template-slider .container {
        flex-direction: column;
        align-items: center;
        width: auto;
    }

    .resume-template-slider .left {
        width: 85%;
    }

    .resume-template-slider .right {
        width: 90%;
    }

    .resume-template-slider .left {
        align-items: center;
    }

    .resume-template-slider .left {
        margin-bottom: 30px;
    }
}





@media (max-width: 899px){

    .form-container .form-group {
    flex: 0 1 100% !important;
}}

@media (max-width: 768px) {
    .home-main-title h1 {
        line-height: 62px;
        font-size: 35px;
    }

    .profile-fix-header {
        display: none;
    }


    .content {
        margin-left: auto !important;
        width: 80% !important;
    }

    .create-resume-content-section {
        flex-direction: column;
    }

    .create-perfect-resume .container {
        width: auto;
    }

    .company-logo-img img {
        height: 75px;
    }

    .feature-design .container h2 {
        width: 75%;
    }

    .faq-accordion-btn {
        font-size: 20px;
    }

    .faq {
        padding: 30px 30px;
        padding-left: 10px;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
    }


}

.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 500px;
    max-height: 500px;
    overflow-y: scroll;
    animation: fadeIn 0.3s ease;
}

.modal-content::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

p.plan_data {
    color: green;
    line-height: 10px;
    margin: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.s_f_name,
.s_l_name,
.s_email,
.s_phone,
.s_password {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="month"] {
    padding: 15px 10px;
    border-radius: 10px;
    background: none;
    border: 1px solid #ccc;
    width: 95%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input#purchase_at {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input#expiry_at {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button.sign_up {
    background-color: #007bff;
    /* Blue */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button.sign_up:hover {
    background-color: #0056b3;
    /* Darker blue */
}

.error-message {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

button.login {
    background-color: #007bff;
    /* Green */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

button.login:hover {
    background-color: #0056b3;
    /* Darker green */
}

.email,
.password {
    margin-bottom: 15px;
}




@media (max-width: 768px){  .job-grid {
    grid-template-columns: 1fr !important;
}}






@media (max-width:699px){

    .content {
        width: 80% !important;
    }

    .search-bar-input {
        width: 80% !important;
    }
    .card-container {
        display: grid;
        gap: 20px;
        justify-content: space-between;
        grid-template-columns: 1fr;
    }

    .content {
        margin-left: auto !important;
    }
    }

@media (max-width: 599px) {
    .testimonial-main button.owl-next {
        display: none;
    }
    .create-resume-button-container button {
        font-size: 14px;
    }
    .white-button {
        padding: 10px 30px;
        font-size: 14px;
    }
    .create-resume-button-container button {
        margin-right: 10px;
        border: 0;
        font-size: 14px;
    }

    .card-container {
        padding-bottom: 60px;
    }

    .content {
        width: 90% !important;
    }

    button.btn-back {
        margin-left: 76%;
        margin-bottom: 30px;
    }


    .testimonial-main {
        padding-left: 10px;
        padding-right: 30px;
    }

    .so-much-more .left h2 {
        text-align: center;
        line-height: 30px;
    }

    .feature-design .container h2 {
        width: 100%;
    }

    .create-resume-button-container {
        margin-bottom: 20px;
        text-align: center;
        display: flex;
        justify-content: space-between !important;
        align-items: center;
    }

    .blue-button {
        padding: 10px 25px;
    }

    .home-main-title h3 {
        text-align: center;
        line-height: 1.4;
    }

    .resume-section-left {
        width: 100%;
    }

    .home-main-title h1 {
        line-height: 45px;
        font-size: 30px;
    }
    .resume-section-right img {
        width: 300px;
    }

    .create-resume-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .testimonial-main button.owl-prev {
        display: none;
    }

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

    .footer-menu-title h4 {
        text-align: left;
    }

    .testimonial .carousel {
        grid-auto-columns: 100%;
    }

    .footer-menu a {
        line-height: 35px;
    }

    .container {
        width: 400px;
    }

    .company-logo .container {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .company-logo-img img {
        width: 500px;
        height: 130px;
    }

    .company-logo {
        padding: 45px 0 0 0;
    }

    .home-main-resume img:nth-child(2) {
        margin-top: -42px;
    }

    .home-main-resume img:nth-child(3) {
        margin-left: -34px;
    }

    .home-main-title {
        padding: 40px 0px 0 0px;
    }

    .home-main-title h1 {
        line-height: 60px;
        font-size: 35px;
    }

    .company-logo-img img {
        width: 220px;
        height: 85px;
    }

    .so-much-more .container {
        padding: 0 40px;
    }

    .so-much-more .left h2 {
        text-align: center;
    }

    .so-much-more .left {
        gap: 18px;
    }

    .use-the-best {
        padding: 40px 40px;
    }

    .use-the-best .use-the-best-under {
        gap: 35px;
    }

    .use-the-best-under {
        padding-top: 30px;
    }

    .create-story {
        padding: 40px 40px;
    }

    .user-friendly {
        padding: 40px 15px;
    }
}

@media (max-width: 499px) {
    .home-main-title h1 {
        line-height: 52px;
        font-size: 30px;
    }

    .card p {
        font-size: 20px !important;
    }

    .search-bar-input {
        width: 75% !important;
    }

    .testimonial-main .container {
        width: 340px;
    }

    .resume-template-slider .left h2 {
        text-align: center;
    }

    .faq-accordion-btn {
        line-height: 25px;
    }

    .footer-menu-title h4 {
        line-height: 25px;
        margin-bottom: 30px;
    }


    .resume-template-slider .left p {
        text-align: center;
    }

    section.home-main .container {
        width: auto;
        margin: 0 20px;
    }

    .home-main-title p {
        padding: 0;
    }

    .home-main {
        padding-bottom: 20px;
    }

    .part-2 p {
        margin: 10px 0 0 0;
    }

    .home-main-resume img:nth-child(3) {
        margin-left: -24px;
    }

    .home-main-resume img:nth-child(2) {
        margin-top: -30px;
    }

    .feature-design-grid {
        padding-top: 30px;
    }

    .use-the-best-btn {
        text-align: center;
        padding-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }

    .use-the-best {
        padding: 40px 20px;
    }

    .use-the-best p {
        width: 100%;
    }

    .use-the-best-under .left img {
        width: -webkit-fill-available;
    }

    .use-the-best-under .right {
        margin-left: 0;
    }

    .create-story {
        padding: 40px 20px;
    }

    .create-story .right {
        width: 100%;
    }

    .user-friendly .container {
        width: 100%;
    }

    .user-friendly-btn {
        padding-top: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-menu-title h4 {
        font-size: 22px;
    }

    .footer-menu a {
        font-size: 16px;
    }

    .footer-mobile-logo {
        margin-bottom: 15px;
    }
}





@media (max-width: 399px){.create-resume-button-container button.blue-button {
    padding: 10px 9px;
}    .search-bar {
    width: 100% !important;
}.search-bar-button {

    width: 45%;
}}


@media (max-width:350px){.search-bar-button {
    width: 50%;
}.search-bar-input {
    padding: 10px;}.search-bar-button {
        padding: 10px !important;
        font-size: 12px !important;
        width: 35% !important;
    }}

/* steps */

#checkout-progress {
    width: 90%;
    margin: 0px auto;
    font-size: 2.5em;
    font-weight: 900;
    position: relative;
}

@media (max-width: 767px) {
    #checkout-progress {
        font-size: 1.5em;
    }
}

#checkout-progress:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 20px;
    width: 100%;
    background-color: #ccc;
    -webkit-transform: translateY(-50%) perspective(1000px);
    transform: translateY(-50%) perspective(1000px);
}

#checkout-progress:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 20px;
    width: 100%;
    background-color: #2c3e50;
    -webkit-transform: scaleX(0) translateY(-50%) perspective(1000px);
    transform: scaleX(0) translateY(-50%) perspective(1000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

#checkout-progress.step-2:after {
    -webkit-transform: scaleX(0.333) translateY(-50%) perspective(1000px);
    transform: scaleX(0.333) translateY(-50%) perspective(1000px);
}

#checkout-progress.step-3:after {
    -webkit-transform: scaleX(0.666) translateY(-50%) perspective(1000px);
    transform: scaleX(0.666) translateY(-50%) perspective(1000px);
}

#checkout-progress.step-4:after {
    -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
    transform: scaleX(1) translateY(-50%) perspective(1000px);
}

#checkout-progress.step-5:after {
    -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
    transform: scaleX(1) translateY(-50%) perspective(1000px);
}

#checkout-progress.step-6:after {
    -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
    transform: scaleX(1) translateY(-50%) perspective(1000px);
}

#checkout-progress .progress-bar {
    width: 100%;
    display: flex;
    height: 100px;
    justify-content: space-between;
    align-items: center;
}

#checkout-progress .progress-bar .step {
    z-index: 2;
    position: relative;
}

#checkout-progress .progress-bar .step .step-label {
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    -webkit-transform: translateX(-50%) perspective(1000px);
    transform: translateX(-50%) perspective(1000px);
    white-space: nowrap;
    font-size: 0.4em;
    font-weight: 600;
    color: #ccc;
    transition: 0.3s ease;
}

@media (max-width: 767px) {
    #checkout-progress .progress-bar .step .step-label {
        top: calc(100% + 15px);
    }
}

#checkout-progress .progress-bar .step span {
    color: #ccc;
    transition: 0.3s ease;
    display: block;
    -webkit-transform: translate3d(0, 0, 0) scale(1) perspective(1000px);
    transform: translate3d(0, 0, 0) scale(1) perspective(1000px);
}

#checkout-progress .progress-bar .step .fa-check {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0) perspective(1000px);
    transform: translate3d(-50%, -50%, 0) scale(0) perspective(1000px);
}

#checkout-progress .progress-bar .step.active span,
#checkout-progress .progress-bar .step.active .step-label {
    color: #2c3e50;
}

#checkout-progress .progress-bar .step.valid .fa-check {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1) perspective(1000px);
    transform: translate3d(-50%, -50%, 0) scale(1) perspective(1000px);
}

#checkout-progress .progress-bar .step.valid span {
    color: #2c3e50;
    -webkit-transform: translate3d(0, 0, 0) scale(2) perspective(1000px);
    transform: translate3d(0, 0, 0) scale(2) perspective(1000px);
}

#checkout-progress .progress-bar .step.valid .step-label {
    color: #2c3e50 !important;
}

#checkout-progress .progress-bar .step:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) perspective(1000px);
    transform: translate(-50%, -50%) perspective(1000px);
    width: 75px;
    height: 75px;
    background-color: #fff;
    border-radius: 50%;
    border: 5px solid #ccc;
    transition: 0.3s ease;
}

@media (max-width: 767px) {
    #checkout-progress .progress-bar .step:after {
        width: 40px;
        height: 40px;
    }
}

#checkout-progress .progress-bar .step.active:after {
    border: 5px solid #2c3e50;
}

#checkout-progress .progress-bar .step.valid:after {
    background-color: #2c3e50;
    border: 5px solid #2c3e50;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin: 100px auto 0px;
}

.button-container .btn {
    display: inline-block;
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 900;
    border: 3px solid #2c3e50;
    transition: 0.3s ease;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 767px) {
    .button-container .btn {
        width: 100%;
        margin-bottom: 15px;
    }
}

.button-container .btn:hover {
    background-color: transparent;
    color: #2c3e50;
    -webkit-transform: scale(1.02) perspective(1000px);
    transform: scale(1.02) perspective(1000px);
}

/* step-slider */
.slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    flex-direction: row;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    width: 150px;
    height: 200px;
    background-color: #ccc;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.4;
    /* Default opacity for distant slides */
    transform: scale(0.6);
    /* Smallest size for distant slides */
}

/* Immediate slides next to the active slide */
.slide.nearby {
    transform: scale(0.8);
    opacity: 0.7;
}

/* The slide that is currently active (centered and zoomed in) */
.slide.active {
    transform: scale(1.2);
    opacity: 1;
    /* background-color: #ff5722; */
    /* Highlight color for the active slide */
}

/*
 */

.step-2-input-container {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.icon-step-2 {
    padding: 10px;
    background: dodgerblue;
    color: white;
    min-width: 50px;
    text-align: center;
}

.step-2-input-field {
    width: 100%;
    padding: 10px;
    outline: none;
    border: none;
    margin-left: 15px;
    font-size: 24px;
}

.field {
    width: 100%;
}

.input-field:focus {
    border: 2px solid dodgerblue;
}

/* Set a style for the submit button */
.step-2-registration {
    background-color: dodgerblue;
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.step-2-registration:hover {
    opacity: 1;
}

section#section2 .container {
    display: flex;
    justify-content: space-between;
}

.process-step-3 .container .left {
    width: 55%;
}

.process-step-3 .container .right {
    width: 45%;
}

.process-step-3 .container .right img {
    max-width: 100%;
}

.step-2-input-container {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.step-2-input-container .step-2-form-field {
    display: flex;
    align-items: center;
    border: 1px solid rgba(202, 202, 202, 1);
    padding: 6px 6px 6px 10px;
    border-radius: 10px;
}

.step-2-form-field-name h4 {
    margin: 10px 0px 10px;
    font-weight: 500;
}

.clearfix {
    display: block;
    clear: both;
    width: 100%;
}

.step-2-input-field {
    width: 100%;
    padding: 10px 230px 10px 10px;
    outline: none;
}

.icon-step-2 {
    padding: 14px;
}

section#section2 .container .left h2 {
    margin: 0;
    width: max-content;
}

section#section2 .container .left p {
    text-align: left;
    margin: 10px 0;
}

.step-3-form-field {
    display: flex;
    justify-content: center;
}

.process-step-3 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.step-3-form-field .field p {
    margin: 5px 0;
    text-align: left;
    margin-top: 25px;
    font-weight: 500;
    color: black;
}

.step-3-form-field .field textarea {
    width: 91%;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 120px;
    resize: none;
    background: none;
    padding: 15px;
}

input.step-3-input-field {
    padding: 15px 15px;
    border-radius: 10px;
    margin-right: 30px;
    border: 1px solid #ccc;
    background: none;
}

.step-3-form-field:nth-child(5) input.step-3-input-field {
    padding: 15px 17px;
}

.step-3-form-field .field {
    display: flex;
    justify-content: start;
    align-items: baseline;
    flex-direction: row;
    flex: 0 1 50%;
    flex-wrap: wrap;
}

.step-3-form-field .field.full-field {
    flex: 0 1 100%;
}

.small-field {
    display: flex;
}

.step-process {
    padding-bottom: 35px;
    background: #f3f9ff;
    padding-top: 20px;

}
.process-step-3 {
    height: 110vh;
}

.process-step-4 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.step-4-form-field {
    display: flex;
    width: 98%;
    gap: 20px;
}

input.step-4-input-field {
    padding: 10px;
    margin-right: 0px;
    border-radius: 10px;
    width: 94%;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background: none;
}

.step-4-form-field .field p {
    text-align: left;
    margin: 5px 0;
    margin-top: 35px;
}

/*---------------------- */

.logo-section {
    margin-bottom: 20px;
    margin-left: 30px;
    float: left;
}

.logo-section img {
    max-width: 80%;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    max-width: 60%;
    margin: 20px auto 50px;
}

.progress-bar {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-line {
    position: absolute;
    top: 15px;
    left: 70px;
    width: 85%;
    height: 4px;
    background-color: #3498db;
    z-index: 1;
    transition: width 0.3s ease;
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 2px solid #3498db;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-weight: bold;
    border-radius: 10px;
    font-size: 14px;
}

.center-slider .slick-slide {
    background-color: #b32532;
    color: #fff;
    height: 200px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
}

.center-slider .slick-slide,
.center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
    transform: scale(0.8, 0.8);
    transition: all 0.4s ease-in-out;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.center-slider .slick-center,
.center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] {
    transform: scale(1.1);
    background-color: #000000;
}

.center-slider .slick-current.slick-active {
    transform: scale(1.1);
    background-color: #000000;
}

/* .step:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: rgb(217, 222, 235);
    left: 100%;
    top: 32%;
}

.step.active:after {
    background: #3498db;
}

.step:last-child::after {
    display: none;
} */

.step-label {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.step.active .step-number {
    background-color: #3498db;
    color: white;
}

.form-container {
    margin-top: 20px;
}

.form-step {
    display: none;
    background-color: #f3f9ff;
}

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

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.form-navigation .container {
    justify-content: space-between;
    display: flex;
}

.form-navigation .prev-btn {
    border: 1px solid #2f8deb;
    color: #000;
    background: none;
}

.next-btn,
.prev-btn,
.skip-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.next-btn:hover,
.prev-btn:hover,
.skip-btn:hover {
    background-color: #2980b9;
    color: #fff;
}

.home_btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: table;
    margin: auto;
}

.home_btn:hover {
    background-color: #2980b9;
}

button.skip-btn {
    margin-left: 78%;
}

/* Hide Previous button initially */
#prevBtn {
    display: none;
}

/* process-steps */

.process-step-2 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-step-2 .container.left {
    width: 60%;
}

.process-step-2 .container.left {
    width: 60%;
}

.step-3-form-field {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* flex-direction: column; */
}

.step-3-form-field:nth-child(2) input.step-3-input-field {
    width: 100%;
}

.step-3-form-field:nth-child(3) input.step-3-input-field {
    width: 310px;
}

.step-3-form-field:nth-child(4) input.step-3-input-field {
    width: 310px;
}

.step-3-form-field:nth-child(6) input.step-3-input-field {
    width: 310px;
}

.step-3-form-field:nth-child(7) input.step-3-input-field {
    width: 310px;
}

.step-3-form-field:nth-child(8) input.step-3-input-field {
    height: 190px;
    width: 81%;
}

.form-step.process-step-5 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-step-5 .left {
    width: 55%;
}

.process-step-5 .right {
    width: 45%;
    text-align: center;
}

.step-2-form-field img {
    width: 34px;
    position: relative;
}

.step-2-form-field::before {
    content: "";
    position: absolute;
    background-color: rgba(202, 202, 202, 1);
    width: 1px;
    height: 80%;
    left: 56px;
    top: 5px;
}

.step-2-form-field {
    position: relative;
}

.form-step.process-step-2 .left form {
    max-width: 1000px !important;
}

.form-step.process-step-2 .left p {
    text-align: justify;
    margin-top: 0 !important;
    color: black;
    font-size: 18px;
    letter-spacing: 0.8px;
    margin-bottom: 28px;
    font-weight: 400;
}

.form-step.process-step-2 .left h2 {
    margin-bottom: 10px;
}

.upload-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.upload-photo input[type="image"] {
    width: 70px;
    height: 70px;
}

input.step-2-input-field {
    border: none;
    width: 100%;
    padding: 0px 230px 0px 0px;
    outline: none;
    background: none;
    font-size: 14px;
    height: 35px;
    top: 6px;
    position: relative;
}

.global-word-count span {
    font-weight: 500;
}

input.step-3-input-field {
    width: 77%;
}



.form-step.process-step-5 .container {
    display: flex;
    gap: 30px;
}

.form-step.process-step-5 .right img {
    width: 100%;
}



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

.plus-minus-work {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* i.fas.fa-plus-circle.edu {
    padding-left: 95%;
} */
.add-remove-icon {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-bottom: 10px;
}

.process-step-4 .left {
    width: 55%;
}

.thank-you .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-step-4 .right {
    width: 45%;
    text-align: center;
}

.process-step-4 .left h2 {
    margin-bottom: 0;
}

.thank-you-buttons .blue-button {
    background-color: #2f8deb !important;
    color: white;
    padding: 10px 30px;
    border-radius: 10px;
    width: max-content;
}

.thank-you-buttons .white-button {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 10px 30px;
    border-radius: 8px;
    width: max-content;
    border: 1px solid #2f8deb;
}

.thank-you-buttons {
    margin-right: 20px;
    display: flex;
    gap: 15px;
}

.thankyou-text {
    color: #2f8deb;
}

.process-step-4 .left p {
    margin-top: 10px;
    text-align: left;
    font-size: 18px;
    color: black;
    font-weight: 500;
}

.form-field-step-4 {
    padding: 30px;
    border-radius: 10px;
}

.process-step-5 {
    display: flex;
    align-items: center;
}

.process-step-5 .left h2 {
    margin-bottom: 10px;
}

.process-step-5 .left p {
    margin-top: 10px;
    margin-bottom: 0px;
    text-align: left;
    font-size: 18px;
    color: black;
    line-height: 30px;
    font-weight: 500;
}

input.step-5-input-field {
    padding: 15px;
    border-radius: 10px;
    width: 90%;
    background: none;
    border: 1px solid #ccc;
}

input.step-5-input-field-full {
    padding: 15px;
    border-radius: 10px;
    width: 95%;
    background: none;
    margin-bottom: 10px;
}

.step-5-form-field {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.step-process-5-field-step {

    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
}

.step-process-5-field-step .step-5-form-field {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
}

.process-step-5 .left .step-4-form-field .field p {
    font-size: 16px;
}

input.step-5-input-field.full-step-5 {
    width: 95% !important;
}

.end-year {
    height: 100px;
    width: 97% !important;
    background: none;
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    resize: none;
}

.form-address {
    height: 80px;
    background: none;
    width: 97%;
    border: 1px solid #ccc;
    resize: none;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
}

input.step-4-input-field.form-address {
    margin: 0;
    width: 97%;
}

/*  */

/* Container for the entire slider */
.slider-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

/* Slider holding all slides inline */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
    /* Space between slides */
}

/* Slide styling */
.slide {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0.5;
}

.slide img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Zoom levels for different slides */
.slider .slide:nth-child(2),
.slider .slide:nth-child(4) {
    transform: scale(1.1);
    /* Slight zoom */
    opacity: 0.75;
}

.slider .slide.active {
    transform: scale(1.3);
    /* Largest zoom */
    opacity: 1;
}

.slider .slide:nth-child(1),
.slider .slide:nth-child(5) {
    transform: scale(1);
    /* No zoom */
    opacity: 0.5;
}

/* Dots navigation */
.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-top: 40px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

.after_about {
    padding-top: 15px;
}

.static_line {
    padding-left: 12px;
}

.card-btn {
    text-align: center;
    padding: 40px 20px;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.plan-card:nth-child(1) .plan-price {
    background: #3498db;
    color: #ffff !important;
    margin: 0;
    padding: 30px 0 15px;
}

.plan-card:nth-child(1) .plan-price strong {
    color: #fff;
    font-size: 38px;
}

.plan-card:nth-child(1) .plan-price strong span {
    font-size: 14px;
}

.plan-card:nth-child(1) .plan-words {
    background: #3498db;
    padding: 5px 0;
    color: #fff;
    margin-top: 5px;
}

.plan-card:nth-child(1) button {
    background: #3498db;
}

.plan-card:nth-child(1) button:hover {
    background: #3498db;
}

.plan-card:nth-child(1) .plan-features li:before {
    background-color: #3498db;
}

.plan-card:nth-child(2) .plan-price {
    background: #f4ad22;
    color: #ffff !important;
    margin: 0;
    padding: 30px 0 15px;
}

.plan-card:nth-child(2) .plan-price strong {
    color: #fff;
    font-size: 38px;
}

.plan-card:nth-child(2) .plan-price strong span {
    font-size: 14px;
}

.plan-card:nth-child(2) .plan-words {
    background: #f4ad22;
    padding: 5px 0;
    color: #fff;
    margin-top: 5px;
}

.plan-card:nth-child(2) button {
    background: #f4ad22;
}

.plan-card:nth-child(2) button:hover {
    background: #f4ad22;
}

.plan-card:nth-child(2) .plan-features li:before {
    background-color: #f4ad22;
}

.plan-card:nth-child(3) .plan-price {
    background: #12b76a;
    color: #ffff !important;
    margin: 0;
    padding: 30px 0 15px;
}

.plan-card:nth-child(3) .plan-price strong {
    color: #fff;
    font-size: 38px;
}

.plan-card:nth-child(3) .plan-price strong span {
    font-size: 14px;
}

.plan-card:nth-child(3) .plan-words {
    background: #12b76a;
    padding: 5px 0;
    color: #fff;
    margin-top: 5px;
}

.plan-card:nth-child(3) button {
    background: #12b76a;
}

.plan-card:nth-child(3) button:hover {
    background: #12b76a;
}

.plan-card:nth-child(3) .plan-features li:before {
    background-color: #12b76a;
}

.plan-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    background-image: url(/index-images/home-main-bg-bottom.png);
    background-position: center -390%;
    background-repeat: no-repeat;
}

.plan-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333333;
}

.plan-card p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555555;
}

.plan-card strong {
    color: #000;
}

.plan-features {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 80%;
    margin: 15px auto;
    min-height: 150px;
    /* margin-bottom: 40px; */
}

.plan-features li {
    font-size: 14px;
    color: #555555;
    position: relative;
    padding-left: 8px;
    font-weight: 600;
    margin-bottom: 15px;
}

.plan-features li:before {
    content: "";
    background: #000;
    height: 8px;
    width: 8px;
    position: absolute;
    left: -10px;
    top: 2px;
}

.plan-card button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.plan-card button:hover {
    background-color: #0056b3;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Profile picture container */
.profile-picture-container {
    display: flex;
    align-items: end;
    justify-content: start;
    gap: 20px;
    /* Adjusts the space between the image and the file input */
    margin-bottom: 0px;
    /* Adds space below the profile section */
    flex: 0 1 50%;
}

#picture_input {
    display: none;
}

.profile-picture-container label {
    margin-bottom: 0;
}

.profile-picture-container label div {
    width: 70px;
    height: 70px;
}

/* Wrapper for the profile picture */
/* .profile-picture-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ddd; /* You can adjust the border as needed
}
*/

/* Profile picture styling */
.profile-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.image-container {
    position: relative;
}

.remove-image-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.image-input {
    display: none;
}

.update_btn {
    margin-top: 20px;
}

/* Profile picture input field styling */
.profile-picture-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.profile-picture-input p {
    font-weight: bold;
}

.step-3-input-field {
    padding: 5px;
    font-size: 14px;
}

.drag-handle {
    cursor: grab;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: -16px;
    top: 10px;
}

i.fas.fa-plus-circle.edu{
    cursor: pointer;
}

i.fas.fa-minus-circle {
    cursor: pointer;
}

.process-step-4 {
    padding-bottom: 31px;
}

.form-field-step-4 {
    border: 1px solid #cccccc;
    padding: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-bottom: 20px;
}

.step-process-5-field-step {
    position: relative;
    border: 1px solid gray;
}

.form-field-step-4 i,
.step-process-5-field-step i {
    position: absolute;
    right: 10px;
    top: 10px;
}

.form-field-step-4 i::before,
.step-process-5-field-step i::before {
    color: #2f8deb;
    font-size: 20px;
}

.drag-handle i {
    right: auto;
    top: auto;
}

.fas.fa-grip-vertical {
    color: #448eee;
    font-size: 20px;
}

.form-step .owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #3498db !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.cover-letter-step-1 .owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #3498db !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.form-step .owl-nav button span {
    font-size: 30px;
}

.cover-letter-step-1 .owl-nav button span {
    font-size: 30px;
}

.form-step .owl-nav button span {
    font-size: 30px;
}

.form-step .owl-item.center .item {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: 0.5s all;
}

.cover-letter-step-1 .owl-item.center .item {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: 0.5s all;
}

.form-step .owl-item .item {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transition: 0.5s all;
}

.cover-letter-step-1 .owl-item .item {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transition: 0.5s all;
}

.owl-item .rs-slide-btn {
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    display: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.space-30 {
    margin-bottom: 30px !important;
}

.owl-item.center .rs-slide-btn {
    display: block;
}

.form-step .owl-nav button.owl-prev {
    left: 15px;
}

.cover-letter-step-1 .owl-nav button.owl-prev {
    left: 15px;
}

.form-step .owl-nav button.owl-next {
    right: 15px;
}

.cover-letter-step-1 .owl-nav button.owl-next {
    right: 15px;
}

.process-step-4 .left .step-4-form-field .field p {
    font-size: 16px;
}

.edit-resume-container p {
    text-align: left !important;
}

.suggestion-box p {
    text-align: center !important;
}

.resume-main .container {
    width: -webkit-fill-available !important
}

@media (max-width: 1366px) {
    .step-process .progress-container {
        max-width: 65%;
    }
}

@media (max-width: 1024px) {
    .step-process .progress-container {
        display: none;
    }

    .logo-section {
        margin-bottom: 20px;
        margin-left: 30px;
        float: none;
        display: block;
        margin-top: 20px;
    }

    .logo-section img {
        max-width: -webkit-fill-available;
        display: block;
    }
}

@media (max-width: 767px) {
    .owl-item .rs-slide-btn {
        font-size: 12px;
        padding: 10px 15px;
    }

    .form-step .owl-nav button {
        width: 30px;
        height: 30px;
    }
}


.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: fixed;
    bottom: 0;
    right: 0%;
    background: white;
    padding: 10px 0px;
    width: -webkit-fill-available;
}


@media (max-width: 599px) {
    .modal-background {
        padding: 20px !important;
        align-items: anchor-center;
        flex-direction: column;
        width: -webkit-fill-available !important;
    }
    .modal-background .modal-content {
        width: -webkit-fill-available !important;
    }
}
