/* @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');
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: "raleway", sans-serif;
    font-weight: 500;

}

.d-none {
    display: none;
}

body {
    font-family: "raleway", sans-serif;
    color: var(--black);
    letter-spacing: .8px;
}

:root {
    --primary-color: #2770E3;
    --secondary-color: #1c5cc1;
    --white: #fff;
    --grey: #797977;
    --black: #434343;
    --green: #8BC34A;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    height: 100%;
}


h1 {
    font-size: 60px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 80px;
    /* letter-spacing: -1px; */
}

h2 {
    font-size: 48px;
    font-weight: 600;
}

h3 {
    font-size: 36px;
    font-weight: 600;
}

h4 {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
}

h5 {
    font-size: 22px;
}

.page-width {
    max-width: 1400px;
    margin: 0 auto;
}

.text-primary {
    color: var(--primary-color);
}

.w-50 {
    width: 50%;
}

.w-fit {
    width: fit-content
}

.page-spacing {
    padding: 100px 40px;
}

.px-20 {
    padding: 0 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

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

.pb-20 {
    padding-bottom: 20px;
}

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

.border-b {
    border-bottom: 1px solid #000;
}

p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

hr {
    border-color: #cecece2b;
    margin: 30px 0;
}

header {
    background: var(--white);
    position: fixed;
    width: 100%;
    z-index: 9;
    transition: .3s;
    padding: 15px 40px;
}

.sticky-logo {
    display: block;
}

.header-logo {
    display: none;
}


input,
textarea,
select {
    outline: none;
    font-size: 12px;
}

input::placeholder,
select,
input[type="date"] {
    color: var(--grey);
}


body.scrolled {

    header {

        box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
        padding: 10px 40px;
    }






    .header-right {
        transform: scale(.95);
    }


}

.header-align {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 70px;

}

.logo {
    align-items: flex-end;
    display: flex;
    z-index: 9999;
    flex-direction: column;

}

.logo h3 {
    font-size: 34px;
    line-height: 22px;

}

.open .logo h3,
.open .logo h3 span {
    color: var(--white) !important;

}

.logo img {
    max-width: 200px;
    height: 40px;
    object-fit: contain;
    transition: .3s;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    transition: .3s;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-items {
    color: var(--primary-color);
    align-items: center;
    display: flex;
    font-weight: 600;
    /* text-transform: uppercase; */
    font-size: 16px !important;
    position: relative;
    height: fit-content;
    cursor: pointer;
    line-height: initial;
}

.open .nav-items {
    color: var(--white);
}

.open .sticky-logo {
    display: none;
}

.open .header-logo {
    display: block;
}

.nav-items:hover:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    opacity: .6;
    animation: tab_border .4s;
    border-radius: 10px;
}

.nav-items.active:hover:before {
    animation: none;
}

@keyframes tab_border {
    0% {
        width: 0px;
        opacity: 0;
    }



    100% {
        width: 100%;
        opacity: .6;
    }


}

.nav-items.active {
    font-weight: 700;

}

.nav-items.active:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    opacity: 1;
    border-radius: 10px;
}

.open .nav-items.active:before,
.open .nav-items:hover:before {
    background: var(--white);
}

.nav-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

header .button-masardubai,
header .button-masardubai-2 {
    border: 1px solid var(--primary-color);
    transition: .3s;
    font-size: 16px;
}

.button-masardubai {
    background: var(--primary-color);
    padding: 6px 16px;
    border-radius: 4px;
    color: var(--white);
    min-height: 44px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-masardubai-2 {
    background: var(--white);
    border: 1px solid var(--primary-color);
    padding: 6px 16px;
    border-radius: 4px;
    color: var(--primary-color);
    min-height: 44px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-masardubai:hover,
.button-masardubai-2:hover {
    background: linear-gradient(90deg, var(--primary-color), #0078ff, var(--green), var(--secondary-color));
    background-size: 400% 400%;
    animation: gradient 3s ease;
    color: var(--white);
    border: 1px solid transparent;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.button-masardubai:hover:before {
    display: none;
}

.login-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.login-user-dp {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.login-user h6 {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

.scrolled .login-user h6 {
    font-size: 14px;
    color: var(--primary-color);
}

.w-100 {
    width: 100%;
    text-align: center;
}

.menu {
    width: 25px;
    height: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    display: none;
}

.menu span {
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    transition: .3s;

}

.open .menu span {
    background: var(--white);

}

.menu span:nth-child(2) {
    width: 80%;
}



.open .menu span:nth-child(1) {
    transform: translate(0%, 10px) rotate(45deg);
    transition: .3s;
}

.open .menu span:nth-child(2) {
    /* display: none; */
    opacity: 0;
    transform: translateX(100%);
}

.open .menu span:nth-child(3) {
    transform: translate(0%, -6px) rotate(-45deg);
    transition: .3s;
}

.hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.invert {
    flex-direction: row-reverse;
}

.hero-row img {
    object-fit: contain;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.content-right {
    height: 100%;
}

.cta {
    text-align: center;
    background-image: url(../images/img-4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 40px;
    color: var(--white);
    position: relative;
    background-position: center;
    background-attachment: fixed;
}

.cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--green);
    opacity: 80%;

}

.cta .page-width {
    position: relative;
}

.cta .nav-buttons {
    justify-content: center;
}

.bg {
    background: #e3f2fd;
}

.testimonial-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #e3f2fd; */
}

.testimonial {
    position: relative;
    max-width: 1000px;
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden;
}


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

.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
}

.slide p {
    text-align: center;
    padding: 0 160px;
    color: #333;
}

.slide .rating-div {
    display: flex;
    gap: 2px;
}

.slide .quote-icon {
    font-size: 20px;
    color: #ffcc00;
}

.slide .detail-div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slide .details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.details .name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.details .job {
    font-size: 12px;
    color: #333;
}

/* swiper button css */
.nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: var(--primary-color);
    transition: 0.2s;
}

.nav-btn:hover {
    background-color: var(--secondary-color);
}

.nav-btn::after,
.nav-btn::before {
    font-size: 20px;
    color: #fff;
}

.swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.plan-container {
    border: 1px solid #000;
    padding: 40px;
}

.plan-container .price-div {
    display: flex;
    justify-content: space-between;
}

.plan-container ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.plan-container ul li {
    width: 50%;
    padding-left: 30px;
    list-style-type: none;
    position: relative;
    padding-bottom: 10px;
}

.plan-container ul li::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    background-image: url(../images/check.png);
    background-position: center center;
}


.price-sec .left-icon {
    font-weight: 500;
}

.price-sec .left-icon,
.price-sec .content-left p {
    position: relative;
    padding-left: 50px;
}

.price-sec .left-icon::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url(../images/checked.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.flex-align3 {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer {
    /* background: linear-gradient(80deg, var(--primary-color), var(--secondary-color), #005189); */
    background: #f3f3f3;
    padding: 50px 40px 30px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px -2px 5px;
}

.last-footer {
    background: linear-gradient(80deg, var(--primary-color), var(--secondary-color), #005189);
    padding: 15px;
    color: var(--white);
    text-align: center;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    /* color: var(--white) !important; */
    cursor: pointer;
    font-size: 14px;
}

.logo-footer img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

footer .social img {
    width: 25px;
    cursor: pointer;
    filter: invert(.8);
}

footer .icon {
    filter: invert(.8);
}

footer .social img:hover {
    animation: rotaet_scale .3s ease;
    ;
}


@keyframes rotaet_scale {
    0% {
        transform: scaleX(-1);
    }


    100% {
        transform: scaleX(1);

    }
}

.footer-nav a {
    position: relative;
}

.footer-nav a:not(:last-child):before {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--black);
}

.footer-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    color: var(--black);
    font-weight: 300;
}

.footer-span {
    font-size: 20px;
}

.cr-col-4 {
    width: 33.3%;
    padding: 5px;
}

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

.footer-right {
    text-align: right;
    place-self: flex-end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}



.home-bg {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 40px 50px 40px;
}

.home-bg::before {
    position: absolute;
    content: '';
    background-image: url(../images/home-banner.jpg);
    background-position: top right;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100% - 70px);
    top: 70px;
    left: 0;
    background-size: cover;
    filter: brightness(.97);
}

.faq-page .home-bg::before {
    background-image: url(../images/faq-bg.jpeg);
}

.about-page .home-bg::before {
    background-image: url(../images/about-bg.png);
    transform: scaleX(-1);
}

.contact-page .home-bg::before {
    transform: scaleX(-1);
}

.home-bg.hero-sub-page {
    min-height: 500px;
    padding-top: 150px;
}


.shape-banner .page-width {
    position: relative;
    z-index: 1;
}

.hero-row img {
    max-height: 600px;
    object-fit: cover !important;
}

body.open {
    overflow: hidden;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    /* background: linear-gradient(0deg, var(--primary-color), var(--secondary-color), #005189); */
    background: rgb(183, 183, 183);
    /* border-left: 1px solid #fff;  */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


/* modal css */
.masardubai-form {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 120px;
    cursor: url(../images/close.png), auto;

}

.animate {
    animation: animatezoom 0.3s;
}

@keyframes animatezoom {
    from {
        transform: translateY(40px)
    }

    to {
        transform: translateY(0)
    }
}

.masardubai-form[style="display: none;"] .animate {
    animation: fadeOut 0.3s;
}


@keyframes fadeOut {
    from {
        transform: translateY(0px)
    }

    to {
        transform: translateY(40px)
    }
}

.masardubai-form.contact-form {
    display: block;
    position: unset;
    background-color: #fff;
    cursor: default !important;
    padding: 0 20px;

    .form-content {
        margin: 50px auto;
    }

    textarea {
        height: 100px;
    }

    p {
        text-align: center;
        font-size: 14px;
    }
}

.hover_color {
    color: var(--primary-color);
    cursor: pointer;
}

.hover_color:hover {
    text-decoration: underline;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('../images/arrow-down.png');
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
    background-position: 95% 17px;
    background-size: 10px;
}

input[type="date"] {

    padding-right: 6px;



}

.masardubai-form {


    input[type=text],
    input[type=password],
    textarea {
        width: 100%;
        padding: 12px 20px;
        margin: 5px 0;
        display: inline-block;
        border: 1px solid #e6eaed;
        box-sizing: border-box;
        border-radius: 4px;
    }

    .cancelbtn {
        width: auto;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .form-content {
        background-color: #fefefe;
        margin: 20px auto;
        max-width: 600px;
        padding: 30px;
        border-radius: 8px;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
        cursor: default;
    }

    .close {
        position: absolute;
        right: 25px;
        top: 0;
        color: #000;
        font-size: 35px;
        font-weight: bold;
    }

    .close:hover,
    .close:focus {
        color: red;
        cursor: pointer;
    }


    .button-masardubai {
        border: inherit;
        margin: 20px 0;
    }

    .form-title {
        text-align: center;
        color: var(--primary-color);
    }

    .toggle-text {
        font-size: 12px;
        line-height: 15px;
    }

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

    .psw {
        font-size: 12px;
        color: var(--grey);
    }

    .psw:hover,
    .toggle-text span:hover {
        text-decoration: underline;
    }

    label {
        margin-top: 10px;
        font-size: 14px;
    }

    .container input {
        margin-bottom: 20px;
    }

}

#loginForm.form-content,
#registerForm.form-content {
    max-width: 500px;
}


.tab-links-area {
    background: transparent !important;
}

.tab-links-area ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-links-area ul li {
    background: #fff;
    text-align: center;
}

.tab-links-area ul li a {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.formtab-personal::after,
.formtab-upload::after {
    display: none;
}

.tab-links-area img {
    width: 40px;
    height: 40px;
}

/* Custom styles */
.error {
    color: red;
    font-size: 12px !important;
}

.error-border {
    border: 2px solid red !important;
}

.account-dropdown {
    position: relative;
}

.account-dropdown-content {
    background-color: var(--white);
    border-radius: 6px;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: auto;
    display: none;
    overflow: hidden;
    min-width: 170px;
    box-shadow: rgb(0 0 0 / 18%) 0px 2px 5px;

}

.account-dropdown-content>* {
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.account-dropdown-content>*:hover {
    background-color: #f1f0ee;
}

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

.cover-letter {
    font-size: 10px;
}

#cover_letter {
    font-size: 13px;
    line-height: 20px;
}

.preview-image {
    border-radius: 8px;
}

/* CSS for loader */
.loader {
    display: none;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2770e3;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 6px;
    right: 10px;
    z-index: 9999;
}

.loader1 {
    display: none;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2770e3;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 12px;
    right: 8px;
    z-index: 9999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.button-disabled {
    background: grey;
    padding: 6px 12px;
    border-radius: 4px;
    color: var(--white);
    min-height: 44px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.file-input-label {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 15px;
}

.account-dropdown-content a {
    padding: 0 !important;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.account-dropdown-content h6 {
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.account-dropdown-content h6:hover {
    background-color: #f1f0ee;
}



@media(max-width: 990px) {
    .header-right {
        gap: 15px;
    }


    .logo h3 {
        font-size: 26px;

    }

    .hero-row.first-row .column.content-left {
        width: 100%;
    }

    .home-bg::before {
        opacity: 0.6;
    }

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

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

    .home-bg p {
        font-weight: 300;
    }

    header {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 768px) {
    .masardubai-form {

        padding-top: 70px;
    }

    .account-dropdown-content {
        background-color: initial;
        position: relative;
        top: 10px;
        box-shadow: none;
        text-align: center;
        color: var(--white);
    }

    .logo img {
        max-width: 220px;

    }

    .login-user {
        width: 100%;
    }

    .slide p {
        padding: 0 20px;
    }

    .nav-btn {
        display: none;
    }

    .w-50 {
        width: 100%;
    }

    .hero-row {
        flex-direction: column;
    }

    .menu {
        display: flex;
        z-index: 9999;
    }

    .header-right {
        flex-direction: column;
        height: 100vh;
        background: var(--secondary-color);
        width: 100vw;
        position: fixed;
        top: 0;
        right: -100vw;
        justify-content: flex-start;
        transition: .3s;
        padding-top: 120px;
    }

    .open .header-right {
        right: 0;
        z-index: 9;
    }

    .nav {

        flex-direction: column;
    }

    .footer-row {
        gap: 40px;
    }

    .cr-col-4 {
        width: 100%;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cr-col-4 * {
        justify-content: center;
        text-align: center;
    }

    .footer-center {
        order: 0;
    }

    .footer-left {
        order: 1;
    }

    .footer-right {
        order: 2;
    }

    .footer-left>div {
        align-items: center;
    }

    .page-spacing {
        padding: 50px 20px;
    }

    .cta {
        padding: 50px 20px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
    }

    h1 {
        font-size: 32px;
        line-height: 42px;
    }

    h2 {
        font-size: 32px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    .hero-row {
        gap: 10px;
        flex-direction: column-reverse;
    }

    .plan-container ul li {
        width: 100%;
    }

    .hero-row.price-sec {
        flex-direction: column;
        gap: 40px;
    }

    .plan-container {
        padding: 25px;
    }

    .masardubai-form {
        padding-left: 10px;
        padding-right: 10px;
    }

    .masardubai-form .flex-align {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    body.scrolled {

        header {
            padding: 5px 20px;
        }

        .header-right {
            transform: scale(1);
        }




        &.open .header-logo {
            display: block;
        }

        &.open .sticky-logo {
            display: none;
        }
    }


    .home-bg {
        padding: 120px 20px 50px 20px;
        min-height: 600px;
    }

    .home-bg.hero-sub-page {
        min-height: 400px;
    }

}

@media screen and (max-width:500px) {

    .plan-container .price-div {
        flex-direction: column;
        gap: 15px;
    }

}



@media screen and (min-width:1200px) {
    .hero-row .column.content-left {
        padding-right: 50px;
    }

    .hero-row.first-row .column.content-left {
        padding-right: 50px;
    }
}

@media screen and (min-width:780px) {
    .nav {
        column-gap: 20px;
    }
}

@media screen and (min-width:990px) {
    .logo img {
        max-width: 270px;
    }
}

@media screen and (min-width:768px) and (max-width:990px) {

    header .button-masardubai,
    header .button-masardubai-2 {
        min-width: 100px;
    }
}

.header-right .nav-buttons {
    flex-wrap: nowrap;
}

.mob-register {
    display: none;
}

.mob-register img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .mob-register {
        display: block;
    }
}

.pge-width {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.start-video {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: auto;
    /* Adjust height to fit content */
    text-align: center;
}

.start-video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    /* Maintain aspect ratio */
    border: 0;
    border-radius: 5px;
}

.start-video h3 {
    margin-bottom: 20px;
    /* Reduce margin for smaller screens */
}

@media (min-width: 768px) {
    .page-spacing {
        padding: 75px 30px;
    }

    .start-video iframe {
        width: 80%;
        /* Slightly increase width for tablets */
    }
}

@media (min-width: 1024px) {
    .page-spacing {
        padding: 100px 40px;
    }

    .start-video iframe {
        width: 65%;
        /* Original width for larger screens */
    }
}

@media screen and (max-width: 768px) {
    .start-video h3 {
        font-size: 25px;
    }
}



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

.otp-input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
}

.modal-close {
    cursor: pointer;
}